/media/shnoulle/data/webdev/master/application/models/Quota.php(147)
135 QuotaMember::model()->deleteAllByAttributes(array('quota_id' => $aRow['id'])); 136 } 137 } 138 139 Quota::model()->deleteAllByAttributes($condition); 140 } 141 142 /** 143 * @return QuotaLanguageSetting 144 */ 145 public function getMainLanguagesetting() 146 { 147 return $this->languagesettings[$this->survey->language]; 148 } 149 150 public function getCompleteCount() 151 { 152 if (!tableExists("survey_{$this->sid}")) { 153 return null; 154 } 155 /* Must control if column name exist (@todo : move this to QuotaMember::model(), even with deactivated survey*/ 156 $aExistingColumnName = SurveyDynamic::model($this->sid)->getTableSchema()->getColumnNames(); 157 if (count($this->quotaMembers) > 0) { 158 // Keep a list of fields for easy reference 159 $aQuotaColumns = array();
#0 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/base/CComponent.php(111): Quota->getMainLanguagesetting() 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])) |
#1 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/db/ar/CActiveRecord.php(145): CComponent->__get("mainLanguagesetting") 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. |
#2 |
+
–
/media/shnoulle/data/webdev/master/application/views/quotas/viewquotas_quota_members.php(36): CActiveRecord->__get("mainLanguagesetting") 31 <div class="card card-primary <?= ($oQuota->active==1 ? 'border-left-success' : 'inactive border-left-warning') ?>"> 32 <div class="card-header "> 33 <div class="float-end small"> 34 <span><span class="<?= $icon ?>"></span> <?= $tooltip ?></span> 35 <?php if($oQuota->autoload_url == 1):?> 36 <span><span class=" ri-external-link-fill"></span> <?php echo gT('Autoload URL:').' '.htmlentities((string) $oQuota->mainLanguagesetting->quotals_url);?></span> 37 <?php endif;?> 38 </div> 39 <?php echo CHtml::encode($oQuota->name) ;?> 40 </div> 41 <table class="table table-quota-items table-striped table-condensed" > |
#3 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(126): require("/media/shnoulle/data/webdev/master/application/views/quotas/view...") 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 } |
#4 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/
media/shnoulle/data/webdev/master/application/views/quotas/view...",
array("oSurvey" => Survey, "oQuota" => Quota, "aQuotaItems" =>
array(27 => array(array("oQuestion" => Question, "answer_title"
=> "0 - 17", "oQuotaMember" => QuotaMember, "valid" => true)),
26 => array(array("oQuestion" => Question, "answer_title" =>
"Nein", "oQuotaMember" => QuotaMember, "valid" => true)), 28 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 29 =>
array(array("oQuestion" => Question, "answer_title" => "Nein, und
ich habe auch keine Pläne, in der Fitnessbranche selb...",
"oQuotaMember" => QuotaMember, "valid" => 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); |
#5 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(872): CBaseController->renderFile("/
media/shnoulle/data/webdev/master/application/views/quotas/view...",
array("oSurvey" => Survey, "oQuota" => Quota, "aQuotaItems" =>
array(27 => array(array("oQuestion" => Question, "answer_title"
=> "0 - 17", "oQuotaMember" => QuotaMember, "valid" => true)),
26 => array(array("oQuestion" => Question, "answer_title" =>
"Nein", "oQuotaMember" => QuotaMember, "valid" => true)), 28 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 29 =>
array(array("oQuestion" => Question, "answer_title" => "Nein, und
ich habe auch keine Pläne, in der Fitnessbranche selb...",
"oQuotaMember" => QuotaMember, "valid" => 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 |
#6 |
+
–
/media/shnoulle/data/webdev/master/application/views/quotas/index.php(70): CController->renderPartial("/
quotas/viewquotas_quota_members", array("oSurvey" => Survey, "oQuota"
=> Quota, "aQuotaItems" => array(27 => array(array("oQuestion"
=> Question, "answer_title" => "0 - 17", "oQuotaMember" =>
QuotaMember, "valid" => true)), 26 => array(array("oQuestion"
=> Question, "answer_title" => "Nein", "oQuotaMember" =>
QuotaMember, "valid" => true)), 28 => array(array("oQuestion"
=> Question, "answer_title" => "Nein", "oQuotaMember" =>
QuotaMember, "valid" => true)), 29 => array(array("oQuestion"
=> Question, "answer_title" => "Nein, und ich habe auch keine
Pläne, in der Fitnessbranche selb...", "oQuotaMember" => QuotaMember,
"valid" => true)))), true) 65 'name' => gT('Quota members'), 66 'type' => 'raw', 67 'htmlOptions' => ['style' => 'vertical-align:top'], 68 'value' => function ($oQuota) use ($oSurvey, $aQuotaItems) { 69 /** @var Quota $oQuota */ 70 $out = '<p>' . $this->renderPartial( 71 '/quotas/viewquotas_quota_members', 72 [ 73 'oSurvey' => $oSurvey, 74 'oQuota' => $oQuota, 75 'aQuotaItems' => $aQuotaItems, |
#7 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/base/CComponent.php(622): CBaseController->{closure}(Quota, 0, TbDataColumn) 617 } 618 } 619 else 620 { 621 $_data_[]=$this; 622 return call_user_func_array($_expression_, array_values($_data_)); 623 } 624 } 625 } 626 627 |
#8 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CDataColumn.php(148): CComponent->evaluateExpression(Closure, array("data" => Quota, "row" => 0, 0 => TbDataColumn)) 143 */ 144 public function getDataCellContent($row) 145 { 146 $data=$this->grid->dataProvider->data[$row]; 147 if($this->value!==null) 148 $value=$this->evaluateExpression($this->value,array('data'=>$data,'row'=>$row)); 149 elseif($this->name!==null) 150 $value=CHtml::value($data,$this->name); 151 return $value===null ? $this->grid->nullDisplay : $this->grid->getFormatter()->format($value,$this->type); 152 } 153 } |
#9 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridColumn.php(237): CDataColumn->getDataCellContent(0) 232 * @param mixed $data the data associated with the row 233 * @deprecated since 1.1.16. Use {@link getDataCellContent()} instead. 234 */ 235 protected function renderDataCellContent($row,$data) 236 { 237 echo $this->getDataCellContent($row); 238 } 239 240 /** 241 * Returns the filter cell content. 242 * The default implementation simply returns an empty column. |
#10 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridColumn.php(160): CGridColumn->renderDataCellContent(0, Quota) 155 else 156 $options['class']=$class; 157 } 158 } 159 echo CHtml::openTag('td',$options); 160 $this->renderDataCellContent($row,$data); 161 echo '</td>'; 162 } 163 164 /** 165 * Renders the footer cell. |
#11 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(655): CGridColumn->renderDataCell(0) 650 * @param integer $row 651 * @since 1.1.16 652 */ 653 protected function renderDataCell($column, $row) 654 { 655 $column->renderDataCell($row); 656 } 657 658 /** 659 * @return boolean whether the table should render a footer. 660 * This is true if any of the {@link columns} has a true {@link CGridColumn::hasFooter} value. |
#12 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(639): CGridView->renderDataCell(TbDataColumn, 0) 634 $htmlOptions['class']=$class; 635 } 636 637 echo CHtml::openTag('tr', $htmlOptions)."\n"; 638 foreach($this->columns as $column) 639 $this->renderDataCell($column, $row); 640 echo "</tr>\n"; 641 } 642 643 /** 644 * A seam for people extending CGridView to be able to hook onto the data cell rendering process. |
#13 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(595): CGridView->renderTableRow(0) 590 echo "<tbody>\n"; 591 592 if($n>0) 593 { 594 for($row=0;$row<$n;++$row) 595 $this->renderTableRow($row); 596 } 597 else 598 { 599 echo '<tr><td colspan="'.count($this->columns).'" class="empty">'; 600 $this->renderEmptyText(); |
#14 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(505): CGridView->renderTableBody() 500 if($this->dataProvider->getItemCount()>0 || $this->showTableOnEmpty) 501 { 502 echo "<table class=\"{$this->itemsCssClass}\">\n"; 503 $this->renderTableHeader(); 504 ob_start(); 505 $this->renderTableBody(); 506 $body=ob_get_clean(); 507 $this->renderTableFooter(); 508 echo $body; // TFOOT must appear before TBODY according to the standard. 509 echo "</table>"; 510 } |
#15 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/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 |
#16 |
unknown(0): CBaseListView->renderSection(array("{items}", "items"))
|
#17 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/CBaseListView.php(164): preg_replace_callback("/{(\w+)}/", array(CLSGridView, "renderSection"), "
<div id="bottom-scroller" class="content-right scrolling-wrappe...") 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. |
#18 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/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 |
#19 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/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 /** |
#20 |
+
–
/media/shnoulle/data/webdev/master/application/views/quotas/index.php(37): CBaseController->widget("application.extensions.admin.grid.CLSGridView",
array("dataProvider" => CArrayDataProvider, "id" => "quota-grid",
"ajaxUpdate" => "quota-grid", "lsAfterAjaxUpdate" =>
array("onQuotaOpenAction();", "bindListItemclick();"), ...)) 32 33 <?php if ($oDataProvider->itemCount > 0) :?> 34 <!-- Grid --> 35 <div class="row"> 36 <div class="col-12 content-right"> 37 <?php $this->widget('application.extensions.admin.grid.CLSGridView', [ 38 'dataProvider' => $oDataProvider, 39 'id' => 'quota-grid', 40 'ajaxUpdate' => 'quota-grid', 41 'lsAfterAjaxUpdate' => ['onQuotaOpenAction();', 'bindListItemclick();'], 42 'emptyText' => gT('No quotas'), |
#21 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(126): require("/media/shnoulle/data/webdev/master/application/views/quotas/inde...") 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 } |
#22 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/
media/shnoulle/data/webdev/master/application/views/quotas/inde...",
array("quotasData" => array("aQuotaItems" => array(27 =>
array(array("oQuestion" => Question, "answer_title" => "0 - 17",
"oQuotaMember" => QuotaMember, "valid" => true)), 26 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 28 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 29 =>
array(array("oQuestion" => Question, "answer_title" => "Nein, und
ich habe auch keine Pläne, in der Fitnessbranche selb...",
"oQuotaMember" => QuotaMember, "valid" => true))), "oQuota" =>
Quota, "aQuotaLanguageSettings" => array(), "totalquotas" => 0,
...), "oDataProvider" => CArrayDataProvider, "oSurvey" => Survey,
"iGridPageSize" => 10), 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); |
#23 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(872): CBaseController->renderFile("/
media/shnoulle/data/webdev/master/application/views/quotas/inde...",
array("quotasData" => array("aQuotaItems" => array(27 =>
array(array("oQuestion" => Question, "answer_title" => "0 - 17",
"oQuotaMember" => QuotaMember, "valid" => true)), 26 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 28 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 29 =>
array(array("oQuestion" => Question, "answer_title" => "Nein, und
ich habe auch keine Pläne, in der Fitnessbranche selb...",
"oQuotaMember" => QuotaMember, "valid" => true))), "oQuota" =>
Quota, "aQuotaLanguageSettings" => array(), "totalquotas" => 0,
...), "oDataProvider" => CArrayDataProvider, "oSurvey" => Survey,
"iGridPageSize" => 10), 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 |
#24 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(785): CController->renderPartial("index",
array("quotasData" => array("aQuotaItems" => array(27 =>
array(array("oQuestion" => Question, "answer_title" => "0 - 17",
"oQuotaMember" => QuotaMember, "valid" => true)), 26 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 28 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 29 =>
array(array("oQuestion" => Question, "answer_title" => "Nein, und
ich habe auch keine Pläne, in der Fitnessbranche selb...",
"oQuotaMember" => QuotaMember, "valid" => true))), "oQuota" =>
Quota, "aQuotaLanguageSettings" => array(), "totalquotas" => 0,
...), "oDataProvider" => CArrayDataProvider, "oSurvey" => Survey,
"iGridPageSize" => 10), true) 780 */ 781 public function render($view,$data=null,$return=false) 782 { 783 if($this->beforeRender($view)) 784 { 785 $output=$this->renderPartial($view,$data,true); 786 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 787 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 788 789 $this->afterRender($view,$output); 790 |
#25 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/QuotasController.php(92): CController->render("index",
array("quotasData" => array("aQuotaItems" => array(27 =>
array(array("oQuestion" => Question, "answer_title" => "0 - 17",
"oQuotaMember" => QuotaMember, "valid" => true)), 26 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 28 =>
array(array("oQuestion" => Question, "answer_title" => "Nein",
"oQuotaMember" => QuotaMember, "valid" => true)), 29 =>
array(array("oQuestion" => Question, "answer_title" => "Nein, und
ich habe auch keine Pläne, in der Fitnessbranche selb...",
"oQuotaMember" => QuotaMember, "valid" => true))), "oQuota" =>
Quota, "aQuotaLanguageSettings" => array(), "totalquotas" => 0,
...), "oDataProvider" => CArrayDataProvider, "oSurvey" => Survey,
"iGridPageSize" => 10)) 87 $aData['title_bar']['title'] = $oSurvey->currentLanguageSettings->surveyls_title . 88 " (" . gT("ID") . ":" . $surveyid . ")"; 89 $aData['subaction'] = gT("Survey quotas"); 90 $aData['sidemenu']['state'] = false; 91 $this->aData = $aData; 92 $this->render('index', [ 93 'quotasData' => $oQuotasService->getQuotaStructure(), 94 'oDataProvider' => $oDataProvider, 95 'oSurvey' => $oSurvey, 96 'iGridPageSize' => Yii::app()->user->getState('pageSize', Yii::app()->params['defaultPageSize']) 97 ]); |
#26 |
unknown(0): QuotasController->actionIndex(679555)
|
#27 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/actions/CAction.php(114): ReflectionMethod->invokeArgs(QuotasController, array("679555")) 109 elseif($param->isDefaultValueAvailable()) 110 $ps[]=$param->getDefaultValue(); 111 else 112 return false; 113 } 114 $method->invokeArgs($object,$ps); 115 return true; 116 } 117 } |
#28 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(QuotasController, ReflectionMethod, array("r" => "quotas/index", "surveyid" => "679555")) 42 { 43 $methodName='action'.$this->getId(); 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#29 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("r" => "quotas/index", "surveyid" => "679555")) 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; |
#30 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction) 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#31 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/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 /** |
#32 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(1148): CFilter->filter(CFilterChain) 1143 */ 1144 public function filterAccessControl($filterChain) 1145 { 1146 $filter=new CAccessControlFilter; 1147 $filter->setRules($this->accessRules()); 1148 $filter->filter($filterChain); 1149 } 1150 1151 /** 1152 * Returns a persistent page state value. 1153 * A page state is a variable that is persistent across POST requests of the same page. |
#33 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/filters/CInlineFilter.php(58): CController->filterAccessControl(CFilterChain) 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 } |
#34 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(131): CInlineFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#35 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/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 /** |
#36 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("accessControl", "postOnly + deleteAnswer, deleteQuota, insertQuotaAnswer")) 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); |
#37 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/LSBaseController.php(145): CController->run("index") 140 $this->redirect(array('/admin/authentication/sa/login')); 141 } 142 } 143 } 144 145 parent::run($action); 146 } 147 148 /** 149 * Load and set session vars 150 * |
#38 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(282): LSBaseController->run("index") 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))); |
#39 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("quotas/index") 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. |
#40 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/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 /** |
#41 |
+
–
/media/shnoulle/data/webdev/master/index.php(161): CApplication->run() 156 require_once APPPATH . 'core/LSYii_Application' . EXT; 157 158 $config = require_once(APPPATH . 'config/internal' . EXT); 159 160 Yii::$enableIncludePath = false; 161 Yii::createApplication('LSYii_Application', $config)->run(); 162 163 /* End of file index.php */ 164 /* Location: ./index.php */ |