/var/www/site/diibii.com/html/social/protected/modules/home_public/widgets/views/guestHomeContentPreview.php(214)
202 </div> 203 </div> 204 205 <div class="panel panel-default panel-recommended"> 206 <div class="panel-heading text-center"> 207 <h4>Popular Spheres</h4> 208 </div> 209 <div class="panel-body"> 210 <?php $this->widget('application.modules.home_public.widgets.RecommendedSpacesWidget', array('forceInGuest' => true)); ?> 211 </div> 212 <div class="panel-footer guest-previewpanel-footer text-center"> 213 <?php 214 $radioUrl = Space::model()->findByPk(5316)->getUrl(); 215 echo CHtml::link( 216 "More Spheres", 217 $radioUrl, 218 array('class' => 'btn btn-info btn-sm btn-preview p-jax') 219 ); 220 ?> 221 <div class="clearfix"></div> 222 </div> 223 </div> 224 <?php 225 $this->endCache(); 226 } ?>
| #0 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CBaseController.php(130): require() 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } 132 133 /** 134 * Creates a widget and initializes it. 135 * This method first creates the specified widget instance. |
| #1 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CBaseController.php(95): CBaseController->renderInternal() 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); |
| #2 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/widgets/CWidget.php(244): CBaseController->renderFile() 239 * @see getViewFile 240 */ 241 public function render($view,$data=null,$return=false) 242 { 243 if(($viewFile=$this->getViewFile($view))!==false) 244 return $this->renderFile($viewFile,$data,$return); 245 else 246 throw new CException(Yii::t('yii','{widget} cannot find the view "{view}".', 247 array('{widget}'=>get_class($this), '{view}'=>$view))); 248 } 249 } |
| #3 |
+
–
/var/www/site/diibii.com/html/social/protected/modules/home_public/widgets/GuestHomeContentPreviewWidget.php(338): CWidget->render() 333 Yii::app()->cache->set($cacheId, $contents, HSetting::Get('expireTime', 'cache')); 334 } else { 335 336 $contents = $cacheValue; 337 } 338 $this->render("guestHomeContentPreview", array("contents" => $contents)); 339 } 340 } |
| #4 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CBaseController.php(173): GuestHomeContentPreviewWidget->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 /** |
| #5 |
+
–
/var/www/site/diibii.com/html/social/protected/modules/home_public/views/home_public/index.php(3): CBaseController->widget() 1 <?php 2 if ($version == 1) { 3 $this->widget('application.modules.home_public.widgets.GuestHomeContentPreviewWidget', array()); 4 5 $this->widget('application.modules.home_public.widgets.RecommendedSpacesWidget', array()); 6 $this->widget('application.modules.home_public.widgets.HomePublicStreamWidget', array( 7 'type' => Wall::TYPE_COMMUNITY, 8 'mtype' => 'home' |
| #6 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CBaseController.php(126): require("/var/www/site/diibii.com/html/social/protected/modules/home_publ...") 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 } |
| #7 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CBaseController.php(95): CBaseController->renderInternal() 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); |
| #8 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CController.php(869): CBaseController->renderFile() 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 |
| #9 |
+
–
/var/www/site/diibii.com/html/social/protected/components/Controller.php(241): CController->renderPartial() 236 * @param4 String view path 237 */ 238 Yii::app()->clientScript->registerScript("autoAjaxEventFire", "$('body').trigger('ajaxLoaded', ['" . $this->id . "', '" . $moduleID . "', '" . $this->action->id . "', '" . $view . "']);", CClientScript::POS_END); 239 } 240 241 return parent::renderPartial($view, $data, $return, $processOutput); 242 } 243 244 /** 245 * @return string the page title. Defaults to the controller name and the action name. 246 */ |
| #10 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CController.php(782): Controller->renderPartial() 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 |
+
–
/var/www/site/diibii.com/html/social/protected/components/Controller.php(307): CController->render() 302 } else { 303 $this->subLayout = $subLayout; 304 $this->renderPartialWithLayout($view, $data, false, true); 305 } 306 } else { 307 $this->render($view, $data); 308 } 309 echo '<script> 310 getNotifications(); 311 $("#topPageTitle").html("' . addslashes($this->_pageTitle) . '"); 312 original_title = "' . addslashes($this->_pageTitle) . '"; |
| #12 |
+
–
/var/www/site/diibii.com/html/social/protected/modules/home_public/controllers/Home_publicController.php(73): Controller->renderPJax() 68 */ 69 public function actionIndex() 70 { 71 $version = 1; 72 $this->pageTitle = 'Home'; 73 $this->renderPJax('index', array('version' => $version), $this->subLayout); 74 } 75 76 public function actionTrending() 77 { 78 $version = 1; |
| #13 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/actions/CInlineAction.php(49): Home_publicController->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 } |
| #14 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CController.php(308): CInlineAction->runWithParams() 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; |
| #15 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/filters/CFilterChain.php(133): CController->runAction() 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
| #16 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
| #17 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/filters/CFilterChain.php(130): CFilter->filter() 125 { 126 if($this->offsetExists($this->filterIndex)) 127 { 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
| #18 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
| #19 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CController.php(1145): CFilter->filter() 1140 */ 1141 public function filterAccessControl($filterChain) 1142 { 1143 $filter=new CAccessControlFilter; 1144 $filter->setRules($this->accessRules()); 1145 $filter->filter($filterChain); 1146 } 1147 1148 /** 1149 * Returns a persistent page state value. 1150 * A page state is a variable that is persistent across POST requests of the same page. |
| #20 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/filters/CInlineFilter.php(58): CController->filterAccessControl() 53 * @param CFilterChain $filterChain the filter chain that the filter is on. 54 */ 55 public function filter($filterChain) 56 { 57 $method='filter'.$this->name; 58 $filterChain->controller->$method($filterChain); 59 } 60 } |
| #21 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/filters/CFilterChain.php(130): CInlineFilter->filter() 125 { 126 if($this->offsetExists($this->filterIndex)) 127 { 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
| #22 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CController.php(291): CFilterChain->run() 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; 293 } 294 } 295 296 /** |
| #23 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/web/CController.php(265): CController->runActionWithFilters() 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); |
| #24 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/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))); |
| #25 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/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. |
| #26 |
+
–
/var/www/site/diibii.com/html/social/protected/vendors/yii/base/CApplication.php(176): CWebApplication->processRequest() 171 public function run() 172 { 173 if ($this->hasEventHandler('onBeginRequest')) 174 $this->onBeginRequest(new CEvent($this)); 175 register_shutdown_function(array($this, 'end'), 0, false); 176 $this->processRequest(); 177 if ($this->hasEventHandler('onEndRequest')) 178 $this->onEndRequest(new CEvent($this)); 179 } 180 181 /** |
| #27 |
+
–
/var/www/site/diibii.com/html/social/index.php(39): CApplication->run() 34 Yii::import('application.vendors.*'); 35 EZendAutoloader::$prefixes = array('Zend', 'Custom'); 36 Yii::import("ext.yiiext.components.zendAutoloader.EZendAutoloader", true); 37 Yii::registerAutoloader(array("EZendAutoloader", "loadClass"), true); 38 39 $app->run(); |