/mnt/data/shnoulle/nginx/www/master/application/controllers/QuestionAdministrationController.php(2489)
2477 */ 2478 private function applyL10n($oQuestion, $dataSet) 2479 { 2480 foreach ($dataSet as $sLanguage => $aI10NBlock) { 2481 $i10N = QuestionL10n::model()->findByAttributes(['qid' => $oQuestion->qid, 'language' => $sLanguage]); 2482 if (empty($i10N)) { 2483 throw new Exception('Found no L10n object'); 2484 } 2485 $i10N->setAttributes( 2486 [ 2487 'question' => $aI10NBlock['question'], 2488 'help' => $aI10NBlock['help'], 2489 'script' => $aI10NBlock['script'], 2490 ], 2491 false 2492 ); 2493 if (!$i10N->save()) { 2494 throw new CHttpException(500, gT("Could not store translation")); 2495 } 2496 } 2497 2498 return true; 2499 } 2500 2501 /**
#0 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/QuestionAdministrationController.php(398): QuestionAdministrationController->applyL10n(Question, array("en" => array("question" => "<p>Multiple choice question</p>", "help" => ""))) 393 } 394 395 // Apply the changes to general settings, advanced settings and translations 396 $setApplied = []; 397 398 $setApplied['questionI10N'] = $this->applyL10n($question, $questionData['questionI10N']); 399 400 $setApplied['advancedSettings'] = $this->unparseAndSetAdvancedOptions( 401 $question, 402 $questionData['advancedSettings'] 403 ); |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/master/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 |
+
–
/mnt/data/shnoulle/nginx/www/master/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; |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/master/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(); |
#4 |
+
–
/mnt/data/shnoulle/nginx/www/master/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); |
#5 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/LSBaseController.php(160): CController->run("saveQuestionData") 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 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): LSBaseController->run("saveQuestionData") 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 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): CWebApplication->runController("questionAdministration/saveQuestionData") 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 |
+
–
/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 /** |
#9 |
+
–
/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 */ |