/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/views/admin/survey/importSurvey_view.php(9)
01 <?php 02 /** 03 * Render the result of the import survey action 04 */ 05 ?> 06 07 08 <!-- Import Failed --> 09 <?php if ($bFailed):?> 10 11 <div class="jumbotron message-box message-box-error"> 12 <h2 class="danger"><?php echo $sHeader;?></h2> 13 <p class="lead danger"> 14 <?php eT("Error"); ?> 15 </p> 16 <!-- error message --> 17 <p> 18 <?php echo $sErrorMessage; ?> 19 </p> 20 <!-- buttons --> 21 <p>
#0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CBaseController.php(126): require("/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/appli...") 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 } |
#1 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/appli...", array(), 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); |
#2 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CController.php(872): CBaseController->renderFile("/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/appli...", array(), 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 |
#3 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/core/Survey_Common_Action.php(267): CController->renderPartial("/admin/survey/importSurvey_view", array(), true) 262 // Load views 263 $content = ""; 264 foreach ($aViewUrls as $sViewKey => $viewUrl) { 265 if (empty($sViewKey) || !in_array($sViewKey, array('message', 'output'))) { 266 if (is_numeric($sViewKey)) { 267 $content .= Yii::app()->getController()->renderPartial($sViewPath.$viewUrl, $aData, true); 268 } elseif (is_array($viewUrl)) { 269 foreach ($viewUrl as $aSubData) { 270 $aSubData = array_merge($aData, $aSubData); 271 $content .= Yii::app()->getController()->renderPartial($sViewPath.$sViewKey, $aSubData, true); 272 } |
#4 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/core/Survey_Common_Action.php(338): Survey_Common_Action->renderCentralContents("survey", "importSurvey_view", array()) 333 } 334 } else { 335 $renderFile = $basePath.'/'.$sRenderFile; 336 } 337 338 $content = $this->renderCentralContents($sAction, $aViewUrls, $aData); 339 $out = $this->renderInternal($renderFile, ['content' => $content, 'aData' => $aData], true); 340 341 App()->getClientScript()->render($out); 342 echo $out; 343 } |
#5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/controllers/admin/surveyadmin.php(2149): Survey_Common_Action->_renderWrappedTemplate("survey", "importSurvey_view", array(), false) 2144 * @param string|array $aViewUrls View url(s) 2145 * @param array $aData Data to be passed on. Optional. 2146 */ 2147 protected function _renderWrappedTemplate($sAction = 'survey', $aViewUrls = array(), $aData = array(), $sRenderFile = false) 2148 { 2149 parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData, $sRenderFile); 2150 } 2151 } |
#6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/controllers/admin/surveyadmin.php(1330): SurveyAdmin->_renderWrappedTemplate("survey", "importSurvey_view", array()) 1325 @LimeExpressionManager::FinishProcessingGroup(); 1326 } 1327 @LimeExpressionManager::FinishProcessingPage(); 1328 } 1329 1330 $this->_renderWrappedTemplate('survey', 'importSurvey_view', $aData); 1331 } 1332 1333 /** 1334 * questiongroup::organize() 1335 * Load ordering of question group screen. |
#7 |
unknown(0): SurveyAdmin->copy()
|
#8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(SurveyAdmin, array()) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#9 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/core/Survey_Common_Action.php(83): CAction->runWithParamsInternal(SurveyAdmin, ReflectionMethod, array("sa" => "copy")) 78 $oMethod = new ReflectionMethod($this, $sDefault); 79 } 80 81 // We're all good to go, let's execute it 82 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 83 return parent::runWithParamsInternal($this, $oMethod, $params); 84 } 85 86 /** 87 * Some functions have different parameters, which are just an alias of the 88 * usual parameters we're getting in the url. This function just populates |
#10 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("sa" => "copy")) 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; |
#11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CController.php(286): CController->runAction(SurveyAdmin) 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(); |
#12 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CController.php(265): CController->runActionWithFilters(SurveyAdmin, 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); |
#13 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/application/controllers/AdminController.php(158): CController->run("survey") 153 $this->redirect(array('/admin/authentication/sa/login')); 154 } 155 } 156 } 157 158 return parent::run($action); 159 } 160 161 /** 162 * Routes all the actions to their respective places 163 * |
#14 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CWebApplication.php(282): AdminController->run("survey") 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))); |
#15 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/survey/sa/copy") 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. |
#16 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_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 /** |
#17 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey_master/index.php(194): CApplication->run() 189 require_once APPPATH . 'core/LSYii_Application' . EXT; 190 191 $config = require_once(APPPATH . 'config/internal' . EXT); 192 193 Yii::$enableIncludePath = false; 194 Yii::createApplication('LSYii_Application', $config)->run(); 195 196 /* End of file index.php */ 197 /* Location: ./index.php */ |
Profiling Summary Report (Time: 0.21949s, Memory: 9,126KB) | |||||
---|---|---|---|---|---|
Procedure | Count | Total (s) | Avg. (s) | Min. (s) | Max. (s) |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `limeliste_surveys`) | 1 | 0.00395 | 0.00395 | 0.00395 | 0.00395 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `limeliste_settings_global`) | 1 | 0.00298 | 0.00298 | 0.00298 | 0.00298 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `limeliste_plugins`) | 1 | 0.00274 | 0.00274 | 0.00274 | 0.00274 |
system.db.CDbCommand.query(SELECT * FROM `limeliste_settings_global` `t`) | 1 | 0.00072 | 0.00072 | 0.00072 | 0.00072 |
system.db.CDbCommand.query(SELECT * FROM `limeliste_settings_global` `t` WHERE stg_name=:name LIMIT 1. Bound with :name='DBVersion') | 1 | 0.00044 | 0.00044 | 0.00044 | 0.00044 |
system.db.CDbCommand.query(SELECT * FROM `limeliste_plugins` `t` WHERE `t`.`active`=:yp0. Bound with :yp0=1) | 1 | 0.00039 | 0.00039 | 0.00039 | 0.00039 |
system.db.CDbCommand.query(SHOW CREATE TABLE `limeliste_surveys`) | 1 | 0.00038 | 0.00038 | 0.00038 | 0.00038 |
system.db.CDbCommand.query(SHOW CREATE TABLE `limeliste_settings_global`) | 1 | 0.00025 | 0.00025 | 0.00025 | 0.00025 |
system.db.CDbCommand.query(SHOW CREATE TABLE `limeliste_plugins`) | 1 | 0.00020 | 0.00020 | 0.00020 | 0.00020 |