/mnt/data/shnoulle/nginx/www/develop/application/models/QuestionAttribute.php(471)
459 460 /** 461 * Returns the value for attribute 'question_template'. 462 * 463 * @return string|null question_template or null if it not exists 464 */ 465 public static function getQuestionTemplateValue($questionID){ 466 $question_template = QuestionAttribute::model()->findByAttributes([ 467 'qid' => $questionID, 468 'attribute' => 'question_template' 469 ]); 470 471 return $question_template->value; 472 } 473 474 /** 475 * Read question attributes from XML file and convert it to array 476 * 477 * @param string $sXmlFilePath Path to XML 478 * 479 * @return array The advanced attribute settings for this question type 480 */ 481 protected static function getAdvancedAttributesFromXml($sXmlFilePath){ 482 $aXmlAttributes = array(); 483 $aAttributes = array();
| #0 |
+
–
/mnt/data/shnoulle/nginx/www/develop/application/controllers/QuestionAdministrationController.php(155): QuestionAttribute::getQuestionTemplateValue("24") 150 App()->session['FileManagerContext'] = "edit:survey:{$question->sid}"; 151 initKcfinder(); 152 153 $questionTemplate = 'core'; 154 if ($question->qid !== 0) { 155 $questionTemplate = QuestionAttribute::getQuestionTemplateValue($question->qid); 156 } 157 158 $this->aData['surveyid'] = $question->sid; 159 $this->aData['sid'] = $question->sid; 160 $this->aData['display']['menu_bars']['gid_action'] = 'viewquestion'; |
| #1 |
+
–
/mnt/data/shnoulle/nginx/www/develop/application/controllers/QuestionAdministrationController.php(122): QuestionAdministrationController->renderFormAux(Question) 117 Yii::app()->user->setFlash('error', gT("Access denied")); 118 $this->redirect(Yii::app()->request->urlReferrer); 119 } 120 121 $this->aData['tabOverviewEditor'] = $tabOverviewEditor; 122 $this->renderFormAux($question); 123 } 124 125 /** 126 * Helper function to render form. 127 * Used by create and edit actions. |
| #2 |
+
–
/mnt/data/shnoulle/nginx/www/develop/application/controllers/QuestionAdministrationController.php(68): QuestionAdministrationController->actionEdit(24) 63 * 64 * @throws CException 65 */ 66 public function actionView($surveyid, $gid = null, $qid = null, $landOnSideMenuTab = 'structure') 67 { 68 $this->actionEdit($qid); 69 } 70 71 /** 72 * Show form to create new question. 73 * |
| #3 |
unknown(0): QuestionAdministrationController->actionView("783923", "13", "24", "structure")
|
| #4 |
+
–
/mnt/data/shnoulle/nginx/www/develop/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(QuestionAdministrationController, array("783923", "13", "24", "structure")) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
| #5 |
+
–
/mnt/data/shnoulle/nginx/www/develop/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(QuestionAdministrationController,
ReflectionMethod, array("r" => "questionAdministration/view",
"surveyid" => "783923", "gid" => "13", "qid" => "24")) 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 } |
| #6 |
+
–
/mnt/data/shnoulle/nginx/www/develop/framework/web/CController.php(308): CInlineAction->runWithParams(array("r" => "questionAdministration/view", "surveyid" => "783923", "gid" => "13", "qid" => "24")) 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; |
| #7 |
+
–
/mnt/data/shnoulle/nginx/www/develop/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(); |
| #8 |
+
–
/mnt/data/shnoulle/nginx/www/develop/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); |
| #9 |
+
–
/mnt/data/shnoulle/nginx/www/develop/application/controllers/LSBaseController.php(140): CController->run("view") 135 $this->redirect(array('/admin/authentication/sa/login')); 136 } 137 } 138 } 139 140 parent::run($action); 141 } 142 143 /** 144 * Load and set session vars 145 * |
| #10 |
+
–
/mnt/data/shnoulle/nginx/www/develop/framework/web/CWebApplication.php(282): LSBaseController->run("view") 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))); |
| #11 |
+
–
/mnt/data/shnoulle/nginx/www/develop/framework/web/CWebApplication.php(141): CWebApplication->runController("questionAdministration/view") 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. |
| #12 |
+
–
/mnt/data/shnoulle/nginx/www/develop/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 /** |
| #13 |
+
–
/mnt/data/shnoulle/nginx/www/develop/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 */ |