/media/shnoulle/data/webdev/master/application/views/admin/survey/Question/_subQuestionsAndAnwsersJsVariables.php(29)
17 'labelSetEmpty' => gT('There are no labels in this set', 'js'), 18 'labelSetNotFound' => gT('Label set not found', 'js'), 19 'lanameurl' => Yii::app()->createUrl('/admin/labels/sa/getAllSets'), 20 'lanrestrictedurl' => Yii::app()->createUrl('/admin/labels/sa/getRestrictedSets'), 21 'lasaveurl' => Yii::app()->createUrl('/admin/labels/sa/ajaxSave'), 22 'laupdateurl' => Yii::app()->createUrl('/admin/labels/sa/ajaxUpdate'), 23 'lsdetailurl' => Yii::app()->createUrl('/questionAdministration/getLabelsetDetails'), 24 'lspickurl' => Yii::app()->createUrl('/questionAdministration/getLabelsetPicker'), 25 'sCheckLabelURL' => Yii::app()->createUrl('/questionAdministration/checkLabel'), 26 'lsextraoptionsurl' => Yii::app()->createUrl( 27 'questionAdministration/ajaxLoadExtraOptions', 28 [ 29 'questionId' => $qid 30 ] 31 ), 32 'subquestions' => [ 33 'newansweroption_text' => gT('New subquestion','js'), 34 'quickaddtitle' => gT('Quick-add subquestion','js'), 35 'strCantDeleteLastAnswer' => gT('You cannot delete the last subquestion.','js'), 36 'duplicatesubquestioncode' => gT('Error: You are trying to use duplicate subquestion codes.','js'), 37 'clickToExpand' => gT('Click to expand'), 38 ], 39 'answeroptions' => [ 40 'newansweroption_text' => gT('New answer option','js'), 41 'quickaddtitle' => gT('Quick-add answers','js'),
#0 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(126): require("/media/shnoulle/data/webdev/master/application/views/admin/surve...") 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 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/media/shnoulle/data/webdev/master/application/views/admin/surve...",
array("anslangs" => array("fr", "en"), "assessmentvisible" =>
false, "scalecount" => 0), 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 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(872): CBaseController->renderFile("/media/shnoulle/data/webdev/master/application/views/admin/surve...",
array("anslangs" => array("fr", "en"), "assessmentvisible" =>
false, "scalecount" => 0), 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 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/QuestionAdministrationController.php(1837): CController->renderPartial("/admin/survey/Question/_subQuestionsAndAnwsersJsVariables",
array("anslangs" => array("fr", "en"), "assessmentvisible" =>
false, "scalecount" => 0), true) 1832 'anslangs' => $oQuestion->survey->allLanguages, 1833 // TODO 1834 'assessmentvisible' => false, 1835 'scalecount' => $oQuestion->questionType->answerscales 1836 ], 1837 true 1838 ); 1839 $this->aData = $aData; 1840 $this->render('copyQuestionForm', $aData); 1841 } 1842 |
#4 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(49): QuestionAdministrationController->actionCopyQuestion() 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 } |
#5 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("r"
=>
"questionAdministration/copyQuestion/surveyId/738848/questionGrou...",
"surveyId" => "738848", "questionGroupId" => "127", "questionId"
=> "1305")) 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; |
#6 |
+
–
/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(); |
#7 |
+
–
/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); |
#8 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/LSBaseController.php(145): CController->run("copyQuestion") 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 * |
#9 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(282): LSBaseController->run("copyQuestion") 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))); |
#10 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("questionAdministration/copyQuestion/surveyId/738848/questionGrou...") 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. |
#11 |
+
–
/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 /** |
#12 |
+
–
/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 */ |
Profiling Summary Report (Time: 0.11476s, Memory: 3,902KB) | |||||
---|---|---|---|---|---|
Procedure | Count | Total (s) | Avg. (s) | Min. (s) | Max. (s) |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys`) | 1 | 0.00037 | 0.00037 | 0.00037 | 0.00037 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_users`) | 1 | 0.00025 | 0.00025 | 0.00025 | 0.00025 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_plugins`) | 1 | 0.00024 | 0.00024 | 0.00024 | 0.00024 |
system.db.CDbCommand.query(SELECT * FROM `lime_plugins` `t` WHERE `t`.`active`=:yp0 ORDER BY priority DESC. Bound with :yp0=1) | 1 | 0.00020 | 0.00020 | 0.00020 | 0.00020 |
system.db.CDbCommand.query(SELECT * FROM `lime_users` `t` WHERE (expires > :now OR expires IS NULL) AND (`t`.`uid`=1) LIMIT 1. Bound with :now='2023-11-23 18:14:05') | 1 | 0.00012 | 0.00012 | 0.00012 | 0.00012 |
system.db.CDbCommand.query(SELECT `t1`.`message` AS `message`, `t2`.`translation` AS `translation` FROM `lime_source_message` `t1`, `lime_message` `t2` WHERE t1.id=t2.id AND t1.category=:category AND t2.language=:language. Bound with :category='', :language='en') | 1 | 0.00012 | 0.00012 | 0.00012 | 0.00012 |
system.db.CDbCommand.query(SELECT * FROM `lime_settings_global` `t`) | 1 | 0.00011 | 0.00011 | 0.00011 | 0.00011 |
system.db.CDbCommand.query(SELECT * FROM `lime_settings_global` `t` WHERE stg_name=:name LIMIT 1. Bound with :name='DBVersion') | 1 | 0.00007 | 0.00007 | 0.00007 | 0.00007 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_users`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_plugins`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_permissions`) | 1 | 0.00033 | 0.00033 | 0.00033 | 0.00033 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_permissions`) | 1 | 0.00006 | 0.00006 | 0.00006 | 0.00006 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys_groupsettings`) | 1 | 0.00032 | 0.00032 | 0.00032 | 0.00032 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_settings_global`) | 1 | 0.00032 | 0.00032 | 0.00032 | 0.00032 |
system.db.CDbCommand.query(SELECT * FROM `lime_users` `t` WHERE `t`.`uid`=1 LIMIT 1) | 4 | 0.00027 | 0.00007 | 0.00006 | 0.00007 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_templates`) | 1 | 0.00026 | 0.00026 | 0.00026 | 0.00026 |
system.db.CDbCommand.query(SELECT * FROM `lime_surveys` `t` WHERE `t`.`sid`=738848 LIMIT 1) | 1 | 0.00015 | 0.00015 | 0.00015 | 0.00015 |
system.db.CDbCommand.query(SELECT * FROM `lime_templates` `t` WHERE `t`.`name`='skelvanilla' LIMIT 1) | 1 | 0.00012 | 0.00012 | 0.00012 | 0.00012 |
system.db.CDbCommand.query(SELECT * FROM `lime_permissions` `t` WHERE `t`.`entity_id`=:yp0 AND `t`.`entity`=:yp1 AND `t`.`uid`=:yp2 AND `t`.`permission`=:yp3 LIMIT 1. Bound with :yp0=0, :yp1='global', :yp2=1, :yp3='superadmin') | 1 | 0.00010 | 0.00010 | 0.00010 | 0.00010 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys`) | 1 | 0.00008 | 0.00008 | 0.00008 | 0.00008 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_templates`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys_groupsettings`) | 1 | 0.00007 | 0.00007 | 0.00007 | 0.00007 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys_groups`) | 1 | 0.00022 | 0.00022 | 0.00022 | 0.00022 |
system.db.CDbCommand.query(SELECT `t`.`id`, `t`.`template_name`, `t`.`sid`, `t`.`gsid`, `t`.`uid`, `t`.`files_css`, `t`.`files_js`, `t`.`files_print_css`, `t`.`options`, `t`.`cssframework_name`, `t`.`cssframework_css`, `t`.`cssframework_js`, `t`.`packages_to_load`, `t`.`packages_ltr`, `t`.`packages_rtl` FROM `lime_template_configuration` `t` INNER JOIN lime_templates AS template ON `t`.`template_name` = template.name WHERE ((t.sid IS NULL) AND (t.gsid IS NULL)) AND (template.name IS NOT NULL) ORDER BY `t`.`template_name`) | 4 | 0.00102 | 0.00025 | 0.00024 | 0.00029 |
system.db.CDbCommand.query(SELECT `template`.`id` AS `t1_c0`, `template`.`name` AS `t1_c1`, `template`.`folder` AS `t1_c2`, `template`.`title` AS `t1_c3`, `template`.`creation_date` AS `t1_c4`, `template`.`author` AS `t1_c5`, `template`.`author_email` AS `t1_c6`, `template`.`author_url` AS `t1_c7`, `template`.`copyright` AS `t1_c8`, `template`.`license` AS `t1_c9`, `template`.`version` AS `t1_c10`, `template`.`api_version` AS `t1_c11`, `template`.`view_folder` AS `t1_c12`, `template`.`files_folder` AS `t1_c13`, `template`.`description` AS `t1_c14`, `template`.`last_update` AS `t1_c15`, `template`.`owner_id` AS `t1_c16`, `template`.`extends` AS `t1_c17` FROM `lime_templates` `template` WHERE (`template`.`name`=:ypl0). Bound with :ypl0='bootswatch') | 4 | 0.00040 | 0.00010 | 0.00009 | 0.00011 |
system.db.CDbCommand.query(SELECT `t`.`gsid` AS `t0_c0`, `t`.`owner_id` AS `t0_c1`, `t`.`admin` AS `t0_c2`, `t`.`adminemail` AS `t0_c3`, `t`.`anonymized` AS `t0_c4`, `t`.`format` AS `t0_c5`, `t`.`savetimings` AS `t0_c6`, `t`.`template` AS `t0_c7`, `t`.`datestamp` AS `t0_c8`, `t`.`usecookie` AS `t0_c9`, `t`.`allowregister` AS `t0_c10`, `t`.`allowsave` AS `t0_c11`, `t`.`autonumber_start` AS `t0_c12`, `t`.`autoredirect` AS `t0_c13`, `t`.`allowprev` AS `t0_c14`, `t`.`printanswers` AS `t0_c15`, `t`.`ipaddr` AS `t0_c16`, `t`.`refurl` AS `t0_c17`, `t`.`showsurveypolicynotice` AS `t0_c18`, `t`.`publicstatistics` AS `t0_c19`, `t`.`publicgraphs` AS `t0_c20`, `t`.`listpublic` AS `t0_c21`, `t`.`htmlemail` AS `t0_c22`, `t`.`sendconfirmation` AS `t0_c23`, `t`.`tokenanswerspersistence` AS `t0_c24`, `t`.`assessments` AS `t0_c25`, `t`.`usecaptcha` AS `t0_c26`, `t`.`bounce_email` AS `t0_c27`, `t`.`attributedescriptions` AS `t0_c28`, `t`.`emailresponseto` AS `t0_c29`, `t`.`emailnotificationto` AS `t0_c30`, `t`.`tokenlength` AS `t0_c31`, `t`.`showxquestions` AS `t0_c32`, `t`.`showgroupinfo` AS `t0_c33`, `t`.`shownoanswer` AS `t0_c34`, `t`.`showqnumcode` AS `t0_c35`, `t`.`showwelcome` AS `t0_c36`, `t`.`showprogress` AS `t0_c37`, `t`.`questionindex` AS `t0_c38`, `t`.`navigationdelay` AS `t0_c39`, `t`.`nokeyboard` AS `t0_c40`, `t`.`alloweditaftercompletion` AS `t0_c41`, `t`.`ipanonymize` AS `t0_c42`, `SurveysGroups`.`gsid` AS `t1_c0`, `SurveysGroups`.`name` AS `t1_c1`, `SurveysGroups`.`title` AS `t1_c2`, `SurveysGroups`.`template` AS `t1_c3`, `SurveysGroups`.`description` AS `t1_c4`, `SurveysGroups`.`sortorder` AS `t1_c5`, `SurveysGroups`.`owner_id` AS `t1_c6`, `SurveysGroups`.`parent_id` AS `t1_c7`, `SurveysGroups`.`created` AS `t1_c8`, `SurveysGroups`.`modified` AS `t1_c9`, `SurveysGroups`.`created_by` AS `t1_c10`, `SurveysGroups`.`alwaysavailable` AS `t1_c11` FROM `lime_surveys_groupsettings` `t` LEFT OUTER JOIN `lime_surveys_groups` `SurveysGroups` ON (`SurveysGroups`.`gsid`=`t`.`gsid`) WHERE (`t`.`gsid`=1)) | 2 | 0.00035 | 0.00017 | 0.00016 | 0.00019 |
system.db.CDbCommand.query(SELECT `template`.`id` AS `t1_c0`, `template`.`name` AS `t1_c1`, `template`.`folder` AS `t1_c2`, `template`.`title` AS `t1_c3`, `template`.`creation_date` AS `t1_c4`, `template`.`author` AS `t1_c5`, `template`.`author_email` AS `t1_c6`, `template`.`author_url` AS `t1_c7`, `template`.`copyright` AS `t1_c8`, `template`.`license` AS `t1_c9`, `template`.`version` AS `t1_c10`, `template`.`api_version` AS `t1_c11`, `template`.`view_folder` AS `t1_c12`, `template`.`files_folder` AS `t1_c13`, `template`.`description` AS `t1_c14`, `template`.`last_update` AS `t1_c15`, `template`.`owner_id` AS `t1_c16`, `template`.`extends` AS `t1_c17` FROM `lime_templates` `template` WHERE (`template`.`name`=:ypl0). Bound with :ypl0='extends_fruity_twentythree') | 4 | 0.00031 | 0.00008 | 0.00007 | 0.00008 |
system.db.CDbCommand.query(SELECT `template`.`id` AS `t1_c0`, `template`.`name` AS `t1_c1`, `template`.`folder` AS `t1_c2`, `template`.`title` AS `t1_c3`, `template`.`creation_date` AS `t1_c4`, `template`.`author` AS `t1_c5`, `template`.`author_email` AS `t1_c6`, `template`.`author_url` AS `t1_c7`, `template`.`copyright` AS `t1_c8`, `template`.`license` AS `t1_c9`, `template`.`version` AS `t1_c10`, `template`.`api_version` AS `t1_c11`, `template`.`view_folder` AS `t1_c12`, `template`.`files_folder` AS `t1_c13`, `template`.`description` AS `t1_c14`, `template`.`last_update` AS `t1_c15`, `template`.`owner_id` AS `t1_c16`, `template`.`extends` AS `t1_c17` FROM `lime_templates` `template` WHERE (`template`.`name`=:ypl0). Bound with :ypl0='fruity') | 4 | 0.00029 | 0.00007 | 0.00007 | 0.00008 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_template_configuration`) | 1 | 0.00023 | 0.00023 | 0.00023 | 0.00023 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_template_configuration`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SELECT `template`.`id` AS `t1_c0`, `template`.`name` AS `t1_c1`, `template`.`folder` AS `t1_c2`, `template`.`title` AS `t1_c3`, `template`.`creation_date` AS `t1_c4`, `template`.`author` AS `t1_c5`, `template`.`author_email` AS `t1_c6`, `template`.`author_url` AS `t1_c7`, `template`.`copyright` AS `t1_c8`, `template`.`license` AS `t1_c9`, `template`.`version` AS `t1_c10`, `template`.`api_version` AS `t1_c11`, `template`.`view_folder` AS `t1_c12`, `template`.`files_folder` AS `t1_c13`, `template`.`description` AS `t1_c14`, `template`.`last_update` AS `t1_c15`, `template`.`owner_id` AS `t1_c16`, `template`.`extends` AS `t1_c17` FROM `lime_templates` `template` WHERE (`template`.`name`=:ypl0). Bound with :ypl0='fruity_twentythree') | 4 | 0.00029 | 0.00007 | 0.00007 | 0.00008 |
system.db.CDbCommand.query(SELECT `template`.`id` AS `t1_c0`, `template`.`name` AS `t1_c1`, `template`.`folder` AS `t1_c2`, `template`.`title` AS `t1_c3`, `template`.`creation_date` AS `t1_c4`, `template`.`author` AS `t1_c5`, `template`.`author_email` AS `t1_c6`, `template`.`author_url` AS `t1_c7`, `template`.`copyright` AS `t1_c8`, `template`.`license` AS `t1_c9`, `template`.`version` AS `t1_c10`, `template`.`api_version` AS `t1_c11`, `template`.`view_folder` AS `t1_c12`, `template`.`files_folder` AS `t1_c13`, `template`.`description` AS `t1_c14`, `template`.`last_update` AS `t1_c15`, `template`.`owner_id` AS `t1_c16`, `template`.`extends` AS `t1_c17` FROM `lime_templates` `template` WHERE (`template`.`name`=:ypl0). Bound with :ypl0='skelvanilla') | 4 | 0.00028 | 0.00007 | 0.00007 | 0.00007 |
system.db.CDbCommand.query(SELECT `template`.`id` AS `t1_c0`, `template`.`name` AS `t1_c1`, `template`.`folder` AS `t1_c2`, `template`.`title` AS `t1_c3`, `template`.`creation_date` AS `t1_c4`, `template`.`author` AS `t1_c5`, `template`.`author_email` AS `t1_c6`, `template`.`author_url` AS `t1_c7`, `template`.`copyright` AS `t1_c8`, `template`.`license` AS `t1_c9`, `template`.`version` AS `t1_c10`, `template`.`api_version` AS `t1_c11`, `template`.`view_folder` AS `t1_c12`, `template`.`files_folder` AS `t1_c13`, `template`.`description` AS `t1_c14`, `template`.`last_update` AS `t1_c15`, `template`.`owner_id` AS `t1_c16`, `template`.`extends` AS `t1_c17` FROM `lime_templates` `template` WHERE (`template`.`name`=:ypl0). Bound with :ypl0='vanilla') | 4 | 0.00028 | 0.00007 | 0.00007 | 0.00007 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys_languagesettings`) | 1 | 0.00027 | 0.00027 | 0.00027 | 0.00027 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_questions`) | 1 | 0.00024 | 0.00024 | 0.00024 | 0.00024 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_groups`) | 1 | 0.00022 | 0.00022 | 0.00022 | 0.00022 |
system.db.CDbCommand.query(SELECT * FROM `lime_surveys_groupsettings` `t` WHERE `t`.`gsid`=0 LIMIT 1) | 2 | 0.00017 | 0.00008 | 0.00008 | 0.00009 |
system.db.CDbCommand.query(SELECT * FROM `lime_questions` `t` WHERE `t`.`sid`=:yp0 AND `t`.`gid`=:yp1 AND `t`.`qid`=:yp2 LIMIT 1. Bound with :yp0=738848, :yp1=127, :yp2=1305) | 1 | 0.00009 | 0.00009 | 0.00009 | 0.00009 |
system.db.CDbCommand.query(SELECT * FROM `lime_groups` `t` WHERE gid=:gid LIMIT 1. Bound with :gid=127) | 1 | 0.00007 | 0.00007 | 0.00007 | 0.00007 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys_languagesettings`) | 1 | 0.00006 | 0.00006 | 0.00006 | 0.00006 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_groups`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_settings_global`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_questions`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SELECT `languagesettings`.`surveyls_survey_id` AS `t1_c0`, `languagesettings`.`surveyls_language` AS `t1_c1`, `languagesettings`.`surveyls_title` AS `t1_c2`, `languagesettings`.`surveyls_description` AS `t1_c3`, `languagesettings`.`surveyls_welcometext` AS `t1_c4`, `languagesettings`.`surveyls_endtext` AS `t1_c5`, `languagesettings`.`surveyls_policy_notice` AS `t1_c6`, `languagesettings`.`surveyls_policy_error` AS `t1_c7`, `languagesettings`.`surveyls_policy_notice_label` AS `t1_c8`, `languagesettings`.`surveyls_url` AS `t1_c9`, `languagesettings`.`surveyls_urldescription` AS `t1_c10`, `languagesettings`.`surveyls_email_invite_subj` AS `t1_c11`, `languagesettings`.`surveyls_email_invite` AS `t1_c12`, `languagesettings`.`surveyls_email_remind_subj` AS `t1_c13`, `languagesettings`.`surveyls_email_remind` AS `t1_c14`, `languagesettings`.`surveyls_email_register_subj` AS `t1_c15`, `languagesettings`.`surveyls_email_register` AS `t1_c16`, `languagesettings`.`surveyls_email_confirm_subj` AS `t1_c17`, `languagesettings`.`surveyls_email_confirm` AS `t1_c18`, `languagesettings`.`surveyls_dateformat` AS `t1_c19`, `languagesettings`.`surveyls_attributecaptions` AS `t1_c20`, `languagesettings`.`email_admin_notification_subj` AS `t1_c21`, `languagesettings`.`email_admin_notification` AS `t1_c22`, `languagesettings`.`email_admin_responses_subj` AS `t1_c23`, `languagesettings`.`email_admin_responses` AS `t1_c24`, `languagesettings`.`surveyls_numberformat` AS `t1_c25`, `languagesettings`.`attachments` AS `t1_c26`, `languagesettings`.`surveyls_alias` AS `t1_c27` FROM `lime_surveys_languagesettings` `languagesettings` WHERE (`languagesettings`.`surveyls_survey_id`=:ypl0). Bound with :ypl0=738848) | 1 | 0.00015 | 0.00015 | 0.00015 | 0.00015 |
system.db.CDbCommand.query(SELECT `survey`.`sid` AS `t1_c0`, `survey`.`owner_id` AS `t1_c1`, `survey`.`gsid` AS `t1_c2`, `survey`.`admin` AS `t1_c3`, `survey`.`active` AS `t1_c4`, `survey`.`expires` AS `t1_c5`, `survey`.`startdate` AS `t1_c6`, `survey`.`adminemail` AS `t1_c7`, `survey`.`anonymized` AS `t1_c8`, `survey`.`format` AS `t1_c9`, `survey`.`savetimings` AS `t1_c10`, `survey`.`template` AS `t1_c11`, `survey`.`language` AS `t1_c12`, `survey`.`additional_languages` AS `t1_c13`, `survey`.`datestamp` AS `t1_c14`, `survey`.`usecookie` AS `t1_c15`, `survey`.`allowregister` AS `t1_c16`, `survey`.`allowsave` AS `t1_c17`, `survey`.`autonumber_start` AS `t1_c18`, `survey`.`autoredirect` AS `t1_c19`, `survey`.`allowprev` AS `t1_c20`, `survey`.`printanswers` AS `t1_c21`, `survey`.`ipaddr` AS `t1_c22`, `survey`.`refurl` AS `t1_c23`, `survey`.`datecreated` AS `t1_c24`, `survey`.`showsurveypolicynotice` AS `t1_c25`, `survey`.`publicstatistics` AS `t1_c26`, `survey`.`publicgraphs` AS `t1_c27`, `survey`.`listpublic` AS `t1_c28`, `survey`.`htmlemail` AS `t1_c29`, `survey`.`sendconfirmation` AS `t1_c30`, `survey`.`tokenanswerspersistence` AS `t1_c31`, `survey`.`assessments` AS `t1_c32`, `survey`.`usecaptcha` AS `t1_c33`, `survey`.`usetokens` AS `t1_c34`, `survey`.`bounce_email` AS `t1_c35`, `survey`.`attributedescriptions` AS `t1_c36`, `survey`.`emailresponseto` AS `t1_c37`, `survey`.`emailnotificationto` AS `t1_c38`, `survey`.`tokenlength` AS `t1_c39`, `survey`.`showxquestions` AS `t1_c40`, `survey`.`showgroupinfo` AS `t1_c41`, `survey`.`shownoanswer` AS `t1_c42`, `survey`.`showqnumcode` AS `t1_c43`, `survey`.`bouncetime` AS `t1_c44`, `survey`.`bounceprocessing` AS `t1_c45`, `survey`.`bounceaccounttype` AS `t1_c46`, `survey`.`bounceaccounthost` AS `t1_c47`, `survey`.`bounceaccountpass` AS `t1_c48`, `survey`.`bounceaccountencryption` AS `t1_c49`, `survey`.`bounceaccountuser` AS `t1_c50`, `survey`.`showwelcome` AS `t1_c51`, `survey`.`showprogress` AS `t1_c52`, `survey`.`questionindex` AS `t1_c53`, `survey`.`navigationdelay` AS `t1_c54`, `survey`.`nokeyboard` AS `t1_c55`, `survey`.`alloweditaftercompletion` AS `t1_c56`, `survey`.`googleanalyticsstyle` AS `t1_c57`, `survey`.`googleanalyticsapikey` AS `t1_c58`, `survey`.`tokenencryptionoptions` AS `t1_c59`, `survey`.`ipanonymize` AS `t1_c60` FROM `lime_surveys` `survey` WHERE (`survey`.`sid`=:ypl0). Bound with :ypl0=738848) | 1 | 0.00017 | 0.00017 | 0.00017 | 0.00017 |
system.db.CDbCommand.query(SELECT `t1`.`message` AS `message`, `t2`.`translation` AS `translation` FROM `lime_source_message` `t1`, `lime_message` `t2` WHERE t1.id=t2.id AND t1.category=:category AND t2.language=:language. Bound with :category='', :language='') | 1 | 0.00008 | 0.00008 | 0.00008 | 0.00008 |
system.db.CDbCommand.query(SELECT `t1`.`message` AS `message`, `t2`.`translation` AS `translation` FROM `lime_source_message` `t1`, `lime_message` `t2` WHERE t1.id=t2.id AND t1.category=:category AND t2.language=:language. Bound with :category='', :language='fr') | 1 | 0.00013 | 0.00013 | 0.00013 | 0.00013 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys_groups`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |