/home/brdepylaction/public_html/site/protected/components/widgets/OutdoorHome.php(30)
18 select 19 * 20 from 21 outdoors 22 where 23 out_prioridade > 0 24 and out_periodo_de <= NOW() 25 AND NOW() <= out_periodo_ate 26 27 28 order by out_prioridade desc 29 "; 30 $query = Yii::app()->db->createCommand($sql); 31 $res = $query->queryAll(); 32 33 $this->render('outdoorHome',array( 34 'outdoors'=>$res 35 )); 36 } 37 38 } 39 40 ?>
#0 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/db/CDbConnection.php(330): CDbConnection->open() 325 public function setActive($value) 326 { 327 if($value!=$this->_active) 328 { 329 if($value) 330 $this->open(); 331 else 332 $this->close(); 333 } 334 } 335 |
#1 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/db/CDbConnection.php(308): CDbConnection->setActive(true) 303 */ 304 public function init() 305 { 306 parent::init(); 307 if($this->autoConnect) 308 $this->setActive(true); 309 } 310 311 /** 312 * Returns whether the DB connection is established. 313 * @return boolean whether the DB connection is established |
#2 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/base/CModule.php(387): CDbConnection->init() 382 if(!isset($config['enabled']) || $config['enabled']) 383 { 384 Yii::trace("Loading \"$id\" application component",'system.CModule'); 385 unset($config['enabled']); 386 $component=Yii::createComponent($config); 387 $component->init(); 388 return $this->_components[$id]=$component; 389 } 390 } 391 } 392 |
#3 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/base/CModule.php(103): CModule->getComponent("db") 098 * @return mixed the named property value 099 */ 100 public function __get($name) 101 { 102 if($this->hasComponent($name)) 103 return $this->getComponent($name); 104 else 105 return parent::__get($name); 106 } 107 108 /** |
#4 |
+
–
/home/brdepylaction/public_html/site/protected/components/widgets/OutdoorHome.php(30): CModule->__get("db") 25 AND NOW() <= out_periodo_ate 26 27 28 order by out_prioridade desc 29 "; 30 $query = Yii::app()->db->createCommand($sql); 31 $res = $query->queryAll(); 32 33 $this->render('outdoorHome',array( 34 'outdoors'=>$res 35 )); |
#5 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CBaseController.php(173): OutdoorHome->run() 168 return ob_get_clean(); 169 } 170 else 171 { 172 $widget=$this->createWidget($className,$properties); 173 $widget->run(); 174 return $widget; 175 } 176 } 177 178 /** |
#6 |
+
–
/home/brdepylaction/public_html/site/protected/views/site/index.php(10): CBaseController->widget("application.components.widgets.OutdoorHome", array()) 05 ?> 06 07 <?php 08 $this->widget('application.components.widgets.OutdoorHome',array( 09 //atributos configuráveis do outdoors aqui 10 )); 11 ?> 12 13 <div class="blocos"> 14 <div class="destaqueSite quatroBlocos"> 15 <div class="destaque"> |
#7 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CBaseController.php(126): require("/home/brdepylaction/public_html/site/protected/views/site/index....") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#8 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/brdepylaction/public_html/site/protected/views/site/index....", null, true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#9 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CController.php(869): CBaseController->renderFile("/home/brdepylaction/public_html/site/protected/views/site/index....", null, true) 864 */ 865 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 866 { 867 if(($viewFile=$this->getViewFile($view))!==false) 868 { 869 $output=$this->renderFile($viewFile,$data,true); 870 if($processOutput) 871 $output=$this->processOutput($output); 872 if($return) 873 return $output; 874 else |
#10 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CController.php(782): CController->renderPartial("index", null, true) 777 */ 778 public function render($view,$data=null,$return=false) 779 { 780 if($this->beforeRender($view)) 781 { 782 $output=$this->renderPartial($view,$data,true); 783 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 784 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 785 786 $this->afterRender($view,$output); 787 |
#11 |
+
–
/home/brdepylaction/public_html/site/protected/controllers/SiteController.php(22): CController->render("index") 17 /** 18 * Acao principal 19 */ 20 public function actionIndex() 21 { 22 $this->render('index'); 23 } 24 25 public function actionFacaParte() { 26 27 $model = new CurriculoForm(); |
#12 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/actions/CInlineAction.php(49): SiteController->actionIndex() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#13 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CController.php(308): CInlineAction->runWithParams(array()) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#14 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#15 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#16 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CWebApplication.php(282): CController->run("") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#17 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/web/CWebApplication.php(141): CWebApplication->runController("") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#18 |
+
–
/home/brdepylaction/yii-1.1.13.e9e4a0/framework/base/CApplication.php(169): CWebApplication->processRequest() 164 public function run() 165 { 166 if($this->hasEventHandler('onBeginRequest')) 167 $this->onBeginRequest(new CEvent($this)); 168 register_shutdown_function(array($this,'end'),0,false); 169 $this->processRequest(); 170 if($this->hasEventHandler('onEndRequest')) 171 $this->onEndRequest(new CEvent($this)); 172 } 173 174 /** |
#19 |
+
–
/home/brdepylaction/public_html/site/index.php(37): CApplication->run() 32 33 require_once($yii); 34 35 $config=dirname(__FILE__).'/protected/config/' . SERVER_ENV . '.php'; 36 37 Yii::createWebApplication($config)->run(); 38 39 ?> |