/data/webdev/master/application/controllers/QuestionAdministrationController.php(2570)
2558 * @todo document me 2559 * 2560 * @param Question $oQuestion 2561 * @param array $dataSet 2562 * @return boolean 2563 * @throws CHttpException 2564 */ 2565 private function applyL10n($oQuestion, $dataSet) 2566 { 2567 foreach ($dataSet as $sLanguage => $aI10NBlock) { 2568 $i10N = QuestionL10n::model()->findByAttributes(['qid' => $oQuestion->qid, 'language' => $sLanguage]); 2569 if (empty($i10N)) { 2570 throw new Exception('Found no L10n object'); 2571 } 2572 $i10N->setAttributes( 2573 [ 2574 'question' => $aI10NBlock['question'], 2575 'help' => $aI10NBlock['help'], 2576 'script' => isset($aI10NBlock['script']) ? $aI10NBlock['script'] : '' 2577 ], 2578 false 2579 ); 2580 if (!$i10N->save()) { 2581 throw new CHttpException(500, gT("Could not store translation")); 2582 }
#0 |
+
–
/data/webdev/master/application/controllers/QuestionAdministrationController.php(425): QuestionAdministrationController->applyL10n() 420 } 421 422 // Apply the changes to general settings, advanced settings and translations 423 $setApplied = []; 424 425 $setApplied['questionI10N'] = $this->applyL10n($question, $questionData['questionI10N']); 426 427 $setApplied['advancedSettings'] = $this->unparseAndSetAdvancedOptions( 428 $question, 429 $questionData['advancedSettings'] 430 ); |
#1 |
+
–
/data/webdev/master/third_party/yiisoft/yii/framework/web/actions/CInlineAction.php(49): QuestionAdministrationController->actionSaveQuestionData() 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 } |
#2 |
+
–
/data/webdev/master/third_party/yiisoft/yii/framework/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; |
#3 |
+
–
/data/webdev/master/third_party/yiisoft/yii/framework/web/CController.php(286): CController->runAction() 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(); |
#4 |
+
–
/data/webdev/master/third_party/yiisoft/yii/framework/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); |
#5 |
+
–
/data/webdev/master/application/controllers/LSBaseController.php(160): CController->run() 155 $this->redirect(array('/admin/authentication/sa/login')); 156 } 157 } 158 } 159 160 parent::run($action); 161 } 162 163 /** 164 * Load and set session vars 165 * |
#6 |
+
–
/data/webdev/master/third_party/yiisoft/yii/framework/web/CWebApplication.php(282): LSBaseController->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))); |
#7 |
+
–
/data/webdev/master/third_party/yiisoft/yii/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. |
#8 |
+
–
/data/webdev/master/third_party/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 /** |
#9 |
+
–
/data/webdev/master/index.php(192): CApplication->run() 187 require_once APPPATH . 'core/LSYii_Application' . EXT; 188 189 $config = require_once(APPPATH . 'config/internal' . EXT); 190 191 Yii::$enableIncludePath = false; 192 Yii::createApplication('LSYii_Application', $config)->run(); 193 194 /* End of file index.php */ 195 /* Location: ./index.php */ |