/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1527)
1515 [':template_name'=>$this->template_name] 1516 ); 1517 } 1518 1519 /** 1520 * Get showpopups value from config or template configuration 1521 */ 1522 public function getshowpopups() 1523 { 1524 $config = (int) App()->getConfig('showpopups'); 1525 if ($config == 2) { 1526 if (isset($this->oOptions->showpopups)) { 1527 $this->showpopups = (int)$this->oOptions->showpopups; 1528 } else { 1529 $this->showpopups = 1; 1530 } 1531 } else { 1532 $this->showpopups = $config; 1533 } 1534 } 1535 1536 /** 1537 * Set each option key value to 'inherit' instead of having only one 'inherit' value for options. 1538 * Keys are fetched from parent xml configuration. 1539 */
#0 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfig.php(162): TemplateConfiguration->getshowpopups() 157 $this->setBasics($sTemplateName, $iSurveyId, $bUseMagicInherit); 158 $this->setMotherTemplates(); // Recursive mother templates configuration 159 $this->setThisTemplate(); // Set the main config values of this template 160 $this->createTemplatePackage($this); // Create an asset package ready to be loaded 161 $this->removeFiles(); 162 $this->getshowpopups(); 163 164 if (!empty($sTemplateName) && !empty($iSurveyId)) { 165 self::$aPreparedToRender[$sTemplateName][$iSurveyId][$bUseMagicInherit] = $this; 166 } 167 return $this; |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(824): TemplateConfig->prepareTemplateRendering("copie_vanilla") 819 * @throws Exception 820 */ 821 public function getHasOptionPage() 822 { 823 $filteredName = Template::templateNameFilter($this->template->name); 824 $oRTemplate = $this->prepareTemplateRendering($filteredName); 825 826 $sOptionFile = 'options'.DIRECTORY_SEPARATOR.'options.twig'; 827 while (!file_exists($oRTemplate->path.$sOptionFile)) { 828 $oMotherTemplate = $oRTemplate->oMotherTemplate; 829 if (!($oMotherTemplate instanceof TemplateConfiguration)) { |
#2 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CComponent.php(111): TemplateConfiguration->getHasOptionPage() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(145): CComponent->__get("hasOptionPage") 140 elseif(isset($this->_related[$name])) 141 return $this->_related[$name]; 142 elseif(isset($this->getMetaData()->relations[$name])) 143 return $this->getRelated($name); 144 else 145 return parent::__get($name); 146 } 147 148 /** 149 * PHP setter magic method. 150 * This method is overridden so that AR attributes can be accessed like properties. |
#4 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1479): CActiveRecord->__get("hasOptionPage") 1474 // NOTE: this is object recursive (if parent configuration field is set to inherit, 1475 // then it will lead to this method again.) 1476 $sAttribute = $this->getParentConfiguration()->$name; 1477 } 1478 } else { 1479 $sAttribute = parent::__get($name); 1480 } 1481 1482 return $sAttribute; 1483 } 1484 |
#5 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(735): TemplateConfiguration->__get("hasOptionPage") 730 <span class='icon-templates'></span> 731 " . gT('Theme editor') . " 732 </a>"; 733 734 $OptionLink = ''; 735 if ($this->hasOptionPage) { 736 $OptionLink .= "<a 737 id='template_options_link_" . $this->template_name . "' 738 href='" . $sOptionUrl . "' 739 class='btn btn-default btn-block'> 740 <span class='fa fa-tachometer'></span> |
#6 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CComponent.php(111): TemplateConfiguration->getButtons() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#7 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(145): CComponent->__get("buttons") 140 elseif(isset($this->_related[$name])) 141 return $this->_related[$name]; 142 elseif(isset($this->getMetaData()->relations[$name])) 143 return $this->getRelated($name); 144 else 145 return parent::__get($name); 146 } 147 148 /** 149 * PHP setter magic method. 150 * This method is overridden so that AR attributes can be accessed like properties. |
#8 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/models/TemplateConfiguration.php(1479): CActiveRecord->__get("buttons") 1474 // NOTE: this is object recursive (if parent configuration field is set to inherit, 1475 // then it will lead to this method again.) 1476 $sAttribute = $this->getParentConfiguration()->$name; 1477 } 1478 } else { 1479 $sAttribute = parent::__get($name); 1480 } 1481 1482 return $sAttribute; 1483 } 1484 |
#9 |
/mnt/data/shnoulle/nginx/www/master/framework/base/CComponent.php(614) : eval()'d code(1): TemplateConfiguration->__get("buttons")
|
#10 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CComponent.php(614): eval() 609 if(is_string($_expression_)) 610 { 611 extract($_data_); 612 try 613 { 614 return eval('return ' . $_expression_ . ';'); 615 } 616 catch (ParseError $e) 617 { 618 return false; 619 } |
#11 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CDataColumn.php(142): CComponent->evaluateExpression("$data->buttons", array("data" => TemplateConfiguration, "row" => 1)) 137 */ 138 public function getDataCellContent($row) 139 { 140 $data=$this->grid->dataProvider->data[$row]; 141 if($this->value!==null) 142 $value=$this->evaluateExpression($this->value,array('data'=>$data,'row'=>$row)); 143 elseif($this->name!==null) 144 $value=CHtml::value($data,$this->name); 145 return $value===null ? $this->grid->nullDisplay : $this->grid->getFormatter()->format($value,$this->type); 146 } 147 } |
#12 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CGridColumn.php(231): CDataColumn->getDataCellContent(1) 226 * @param mixed $data the data associated with the row 227 * @deprecated since 1.1.16. Use {@link getDataCellContent()} instead. 228 */ 229 protected function renderDataCellContent($row,$data) 230 { 231 echo $this->getDataCellContent($row); 232 } 233 234 /** 235 * Returns the filter cell content. 236 * The default implementation simply returns an empty column. |
#13 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CGridColumn.php(154): CGridColumn->renderDataCellContent(1, TemplateConfiguration) 149 else 150 $options['class']=$class; 151 } 152 } 153 echo CHtml::openTag('td',$options); 154 $this->renderDataCellContent($row,$data); 155 echo '</td>'; 156 } 157 158 /** 159 * Renders the footer cell. |
#14 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CGridView.php(639): CGridColumn->renderDataCell(1) 634 * @param integer $row 635 * @since 1.1.16 636 */ 637 protected function renderDataCell($column, $row) 638 { 639 $column->renderDataCell($row); 640 } 641 642 /** 643 * @return boolean whether the table should render a footer. 644 * This is true if any of the {@link columns} has a true {@link CGridColumn::hasFooter} value. |
#15 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CGridView.php(623): CGridView->renderDataCell(TbDataColumn, 1) 618 $htmlOptions['class']=$class; 619 } 620 621 echo CHtml::openTag('tr', $htmlOptions)."\n"; 622 foreach($this->columns as $column) 623 $this->renderDataCell($column, $row); 624 echo "</tr>\n"; 625 } 626 627 /** 628 * A seam for people extending CGridView to be able to hook onto the data cell rendering process. |
#16 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CGridView.php(579): CGridView->renderTableRow(1) 574 echo "<tbody>\n"; 575 576 if($n>0) 577 { 578 for($row=0;$row<$n;++$row) 579 $this->renderTableRow($row); 580 } 581 else 582 { 583 echo '<tr><td colspan="'.count($this->columns).'" class="empty">'; 584 $this->renderEmptyText(); |
#17 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/grid/CGridView.php(489): CGridView->renderTableBody() 484 if($this->dataProvider->getItemCount()>0 || $this->showTableOnEmpty) 485 { 486 echo "<table class=\"{$this->itemsCssClass}\">\n"; 487 $this->renderTableHeader(); 488 ob_start(); 489 $this->renderTableBody(); 490 $body=ob_get_clean(); 491 $this->renderTableFooter(); 492 echo $body; // TFOOT must appear before TBODY according to the standard. 493 echo "</table>"; 494 } |
#18 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/CBaseListView.php(181): CGridView->renderItems() 176 protected function renderSection($matches) 177 { 178 $method='render'.$matches[1]; 179 if(method_exists($this,$method)) 180 { 181 $this->$method(); 182 $html=ob_get_contents(); 183 ob_clean(); 184 return $html; 185 } 186 else |
#19 |
unknown(0): CBaseListView->renderSection(array("{items}", "items"))
|
#20 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/CBaseListView.php(164): preg_replace_callback("/{(\w+)}/", array(TbGridView, "renderSection"), "{items}
<div class="row-fluid"><div class="span6">{pager}</div><...") 159 * The rendering results will replace the corresponding placeholders in {@link template}. 160 */ 161 public function renderContent() 162 { 163 ob_start(); 164 echo preg_replace_callback("/{(\w+)}/",array($this,'renderSection'),$this->template); 165 ob_end_flush(); 166 } 167 168 /** 169 * Renders a section. |
#21 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/zii/widgets/CBaseListView.php(149): CBaseListView->renderContent() 144 { 145 $this->registerClientScript(); 146 147 echo CHtml::openTag($this->tagName,$this->htmlOptions)."\n"; 148 149 $this->renderContent(); 150 $this->renderKeys(); 151 152 echo CHtml::closeTag($this->tagName); 153 } 154 |
#22 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(182): CBaseListView->run() 177 return ob_get_clean(); 178 } 179 else 180 { 181 $widget=$this->createWidget($className,$properties); 182 $widget->run(); 183 return $widget; 184 } 185 } 186 187 /** |
#23 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/views/admin/themeoptions/surveythemelist.php(88): CBaseController->widget("bootstrap.widgets.TbGridView",
array("dataProvider" => CActiveDataProvider, "filter" =>
TemplateConfiguration, "id" => "themeoptions-grid", "summaryText"
=> "Affichage de {start}-{end} sur {count} résultat(s). <div
class=...", ...)) 83 ), 84 85 ), 86 'ajaxUpdate' => true, 87 'ajaxType' => 'POST', 88 'afterAjaxUpdate' => 'function(id, data){window.LS.doToolTip();bindListItemclick();}', 89 )); 90 ?> 91 92 <!-- To update rows per page via ajax setSession--> 93 <?php |
#24 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(126): require("/mnt/data/shnoulle/nginx/www/master/application/views/admin/them...") 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 } |
#25 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(95): CBaseController->renderInternal("/mnt/data/shnoulle/nginx/www/master/application/views/admin/them...",
array("oSurveyTheme" => TemplateConfiguration, "pageSize" => 20),
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); |
#26 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(872): CBaseController->renderFile("/mnt/data/shnoulle/nginx/www/master/application/views/admin/them...",
array("oSurveyTheme" => TemplateConfiguration, "pageSize" => 20),
true) 867 */ 868 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 869 { 870 if(($viewFile=$this->getViewFile($view))!==false) 871 { 872 $output=$this->renderFile($viewFile,$data,true); 873 if($processOutput) 874 $output=$this->processOutput($output); 875 if($return) 876 return $output; 877 else |
#27 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(240): CController->renderPartial("themeoptions/surveythemelist", array("oSurveyTheme" => TemplateConfiguration, "pageSize" => 20), false, false) 235 } 236 237 } 238 } 239 240 return parent::renderPartial($view,$data,$return,$processOutput); 241 } 242 243 /** 244 * Routes all the actions to their respective places 245 * |
#28 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/views/admin/themeoptions/index.php(39): AdminController->renderPartial("themeoptions/surveythemelist", array("oSurveyTheme" => TemplateConfiguration, "pageSize" => 20)) 34 <div class="col-lg-12 list-surveys"> 35 36 <?php echo '<h3>'.gT('Installed survey themes:').'</h3>'; ?> 37 38 <?php $this->renderPartial('themeoptions/surveythememenu',['canImport'=>$canImport,'importErrorMessage'=>$importErrorMessage, 'importModal' => 'importSurveyModal', 'importTemplate' => 'importSurveyTemplate', 'themeType' => 'survey']); ?> 39 <?php $this->renderPartial('themeoptions/surveythemelist', array( 'oSurveyTheme'=> $oSurveyTheme, 'pageSize'=>$pageSize )); ?> 40 41 <!-- Available Themes --> 42 <?php if (count($oSurveyTheme->templatesWithNoDb) > 0 ):?> 43 <h3><?php eT('Available survey themes:'); ?></h3> 44 <div class="row"> |
#29 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(126): require("/mnt/data/shnoulle/nginx/www/master/application/views/admin/them...") 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 } |
#30 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(95): CBaseController->renderInternal("/mnt/data/shnoulle/nginx/www/master/application/views/admin/them...",
array("oAdminTheme" => AdminTheme, "oQuestionTheme" =>
QuestionTheme, "oSurveyTheme" => TemplateConfiguration, "canImport"
=> true, ...), 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); |
#31 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(872): CBaseController->renderFile("/mnt/data/shnoulle/nginx/www/master/application/views/admin/them...",
array("oAdminTheme" => AdminTheme, "oQuestionTheme" =>
QuestionTheme, "oSurveyTheme" => TemplateConfiguration, "canImport"
=> true, ...), true) 867 */ 868 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 869 { 870 if(($viewFile=$this->getViewFile($view))!==false) 871 { 872 $output=$this->renderFile($viewFile,$data,true); 873 if($processOutput) 874 $output=$this->processOutput($output); 875 if($return) 876 return $output; 877 else |
#32 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(240): CController->renderPartial("/admin/themeoptions/index",
array("oAdminTheme" => AdminTheme, "oQuestionTheme" =>
QuestionTheme, "oSurveyTheme" => TemplateConfiguration, "canImport"
=> true, ...), true, false) 235 } 236 237 } 238 } 239 240 return parent::renderPartial($view,$data,$return,$processOutput); 241 } 242 243 /** 244 * Routes all the actions to their respective places 245 * |
#33 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(274): AdminController->renderPartial("/admin/themeoptions/index",
array("oAdminTheme" => AdminTheme, "oQuestionTheme" =>
QuestionTheme, "oSurveyTheme" => TemplateConfiguration, "canImport"
=> true, ...), true) 269 $content = ""; 270 271 foreach ($aViewUrls as $sViewKey => $viewUrl) { 272 if (empty($sViewKey) || !in_array($sViewKey, array('message', 'output'))) { 273 if (is_numeric($sViewKey)) { 274 $content .= Yii::app()->getController()->renderPartial($sViewPath.$viewUrl, $aData, true); 275 } elseif (is_array($viewUrl)) { 276 foreach ($viewUrl as $aSubData) { 277 $aSubData = array_merge($aData, $aSubData); 278 $content .= Yii::app()->getController()->renderPartial($sViewPath.$sViewKey, $aSubData, true); 279 } |
#34 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(357): Survey_Common_Action->renderCentralContents("themeoptions",
array("index"), array("oAdminTheme" => AdminTheme, "oQuestionTheme"
=> QuestionTheme, "oSurveyTheme" => TemplateConfiguration,
"canImport" => true, ...)) 352 353 354 } else { 355 $renderFile = $basePath.'/'.$sRenderFile; 356 } 357 $content = $this->renderCentralContents($sAction, $aViewUrls, $aData); 358 $out = $this->renderInternal($renderFile, ['content' => $content, 'aData' => $aData], true); 359 360 App()->getClientScript()->render($out); 361 echo $out; 362 } |
#35 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/admin/themeoptions.php(425): Survey_Common_Action->_renderWrappedTemplate("themeoptions",
"index", array("oAdminTheme" => AdminTheme, "oQuestionTheme" =>
QuestionTheme, "oSurveyTheme" => TemplateConfiguration, "canImport"
=> true, ...)) 420 $aData['oSurveyTheme'] = $oSurveyTheme; 421 $aData['canImport'] = $canImport; 422 $aData['importErrorMessage'] = $importErrorMessage; 423 $aData['pageSize'] = App()->user->getState('pageSizeTemplateView', App()->params['defaultPageSize']); // Page size 424 425 $this->_renderWrappedTemplate('themeoptions', 'index', $aData); 426 } else { 427 App()->setFlashMessage(gT("We are sorry but you don't have permissions to do this."), 'error'); 428 $this->getController()->redirect(App()->createUrl("/admin")); 429 } 430 } |
#36 |
unknown(0): themeoptions->index()
|
#37 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(themeoptions, array()) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#38 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(86): CAction->runWithParamsInternal(themeoptions, ReflectionMethod, array()) 81 $oMethod = new ReflectionMethod($this, $sDefault); 82 } 83 84 // We're all good to go, let's execute it 85 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 86 return parent::runWithParamsInternal($this, $oMethod, $params); 87 } 88 89 /** 90 * Some functions have different parameters, which are just an alias of the 91 * usual parameters we're getting in the url. This function just populates |
#39 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): Survey_Common_Action->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; |
#40 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(286): CController->runAction(themeoptions) 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(); |
#41 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(265): CController->runActionWithFilters(themeoptions, 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); |
#42 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(180): CController->run("themeoptions") 175 } 176 177 $this->runModuleController($action); 178 179 180 return parent::run($action); 181 } 182 183 /** 184 * Starting with LS4, 3rd party developper can extends any of the LimeSurve controllers. 185 * |
#43 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): AdminController->run("themeoptions") 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))); |
#44 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/themeoptions") 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. |
#45 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#46 |
+
–
/mnt/data/shnoulle/nginx/www/master/index.php(182): CApplication->run() 177 require_once APPPATH . 'core/LSYii_Application' . EXT; 178 179 $config = require_once(APPPATH . 'config/internal' . EXT); 180 181 Yii::$enableIncludePath = false; 182 Yii::createApplication('LSYii_Application', $config)->run(); 183 184 /* End of file index.php */ 185 /* Location: ./index.php */ |