/media/shnoulle/data/webdev/master/application/helpers/expressions/em_manager_helper.php(4539)
4527 $LEM->surveyOptions['assessments'] = true; 4528 } 4529 // $LEM->runtimeTimings[] = array(__METHOD__,(microtime(true) - $now)); 4530 4531 $LEM->initialized = true; 4532 4533 if ($initializeVars) { 4534 $LEM->em->StartProcessingGroup( 4535 isset($_SESSION['LEMsid']) ? $_SESSION['LEMsid'] : null, 4536 '', 4537 true 4538 ); 4539 $LEM->setVariableAndTokenMappingsForExpressionManager($_SESSION['LEMsid']); 4540 } 4541 } 4542 4543 /** 4544 * Initialize a survey so can use EM to manage navigation 4545 * @param int $surveyid 4546 * @param string $surveyMode 4547 * @param array $aSurveyOptions 4548 * @param bool $forceRefresh 4549 * @param int $debugLevel 4550 * @return array 4551 */
#0 |
+
–
/media/shnoulle/data/webdev/master/application/views/layouts/layout_questioneditor.php(20): LimeExpressionManager::StartProcessingPage(false, true) 15 $layoutHelper->showadminmenu($aData); 16 17 echo "<!-- BEGIN LAYOUT_INSURVEY -->"; 18 // Needed to evaluate EM expressions in question summary 19 // See bug #11845 20 LimeExpressionManager::StartProcessingPage(false, true); 21 $aData['debug'] = $aData; 22 23 echo $layoutHelper->renderTopbarTemplate($aData); 24 25 //The load indicator for pjax |
#1 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(126): require("/media/shnoulle/data/webdev/master/application/views/layouts/lay...") 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 } |
#2 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/media/shnoulle/data/webdev/master/application/views/layouts/lay...", array("content" => " <div class="side-body ">
<x-test id="action::surveyAssessm..."), 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); |
#3 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(787): CBaseController->renderFile("/media/shnoulle/data/webdev/master/application/views/layouts/lay...", array("content" => " <div class="side-body ">
<x-test id="action::surveyAssessm..."), true) 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 791 $output=$this->processOutput($output); 792 |
#4 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/AssessmentController.php(94): CController->render("assessments_view",
array("survey" => Survey, "surveyid" => 893992, "headings" =>
array("Portée", "Groupe de questions", "Minimum", "Maximum"), "groups"
=> array(64 => " Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Donec ..."), ...)) 89 ); 90 App()->getClientScript()->registerScriptFile(App()->getConfig('adminscripts') . 'assessments.js', LSYii_ClientScript::POS_BEGIN); 91 92 PrepareEditorScript(true, $this); 93 $this->aData = $aData; 94 $this->render('assessments_view', $this->aData); 95 } 96 97 /** 98 * Activates assessment mode for the survey. 99 * |
#5 |
unknown(0): AssessmentController->actionIndex("893992")
|
#6 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/actions/CAction.php(114): ReflectionMethod->invokeArgs(AssessmentController, array("893992")) 109 elseif($param->isDefaultValueAvailable()) 110 $ps[]=$param->getDefaultValue(); 111 else 112 return false; 113 } 114 $method->invokeArgs($object,$ps); 115 return true; 116 } 117 } |
#7 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(AssessmentController, ReflectionMethod, array("r" => "assessment/index", "surveyid" => "893992")) 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 } |
#8 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("r" => "assessment/index", "surveyid" => "893992")) 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; |
#9 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/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(); |
#10 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/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); |
#11 |
+
–
/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 * |
#12 |
+
–
/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))); |
#13 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("assessment/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. |
#14 |
+
–
/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 /** |
#15 |
+
–
/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 */ |