/media/shnoulle/data/webdev/master/application/models/Survey.php(1166)
1154 // If the survey is not active, no date test is needed 1155 if ($this->active === 'N') { 1156 $running = '<a href="' . App()->createUrl('/surveyAdministration/view/surveyid/' . $this->sid) . '" class="survey-state" data-bs-toggle="tooltip" title="' . gT('Inactive') . '"><i class="ri-stop-fill text-secondary me-1"></i>' . gT('Inactive') . '</a>'; 1157 } elseif ($this->expires != '' || $this->startdate != '') { 1158 // If it's active, then we check if not expired 1159 // Time adjust 1160 $sNow = date("Y-m-d H:i:s", strtotime((string) Yii::app()->getConfig('timeadjust'), strtotime(date("Y-m-d H:i:s")))); 1161 $sStop = ($this->expires != '') ? date("Y-m-d H:i:s", strtotime((string) Yii::app()->getConfig('timeadjust'), strtotime($this->expires))) : null; 1162 $sStart = ($this->startdate != '') ? date("Y-m-d H:i:s", strtotime((string) Yii::app()->getConfig('timeadjust'), strtotime($this->startdate))) : null; 1163 1164 // Time comparaison 1165 $oNow = new DateTime($sNow); 1166 $oStop = new DateTime($sStop); 1167 $oStart = new DateTime($sStart); 1168 1169 $bExpired = (!is_null($sStop) && $oStop < $oNow); 1170 $bWillRun = (!is_null($sStart) && $oStart > $oNow); 1171 1172 $sStop = $sStop != null ? convertToGlobalSettingFormat($sStop) : null; 1173 $sStart = convertToGlobalSettingFormat($sStart); 1174 1175 // Icon generaton (for CGridView) 1176 $sIconRunNoEx = '<a href="' . App()->createUrl('/surveyAdministration/view/surveyid/' . $this->sid) . '" class="survey-state" data-bs-toggle="tooltip" title="' . gT('End: Never') . '"><i class="ri-play-fill text-primary me-1"></i>' . gT('End: Never') . '</a>'; 1177 $sIconRunning = '<a href="' . App()->createUrl('/surveyAdministration/view/surveyid/' . $this->sid) . '" class="survey-state" data-bs-toggle="tooltip" title="' . sprintf(gT('End: %s'), $sStop) . '"><i class="ri-play-fill text-primary me-1"></i>' . sprintf(gT('End: %s'), $sStop) . '</a>'; 1178 $sIconExpired = '<a href="' . App()->createUrl('/surveyAdministration/view/surveyid/' . $this->sid) . '" class="survey-state" data-bs-toggle="tooltip" title="' . sprintf(gT('Expired: %s'), $sStop) . '"><i class="ri-skip-forward-fill text-secondary me-1"></i>' . sprintf(gT('Expired: %s'), $sStop) . '</a>';
#0 |
+
–
/media/shnoulle/data/webdev/master/application/models/Survey.php(1166): DateTime->__construct(null) 1161 $sStop = ($this->expires != '') ? date("Y-m-d H:i:s", strtotime((string) Yii::app()->getConfig('timeadjust'), strtotime($this->expires))) : null; 1162 $sStart = ($this->startdate != '') ? date("Y-m-d H:i:s", strtotime((string) Yii::app()->getConfig('timeadjust'), strtotime($this->startdate))) : null; 1163 1164 // Time comparaison 1165 $oNow = new DateTime($sNow); 1166 $oStop = new DateTime($sStop); 1167 $oStart = new DateTime($sStart); 1168 1169 $bExpired = (!is_null($sStop) && $oStop < $oNow); 1170 $bWillRun = (!is_null($sStart) && $oStart > $oNow); 1171 |
#1 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/base/CComponent.php(111): Survey->getRunning() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#2 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/db/ar/CActiveRecord.php(145): CComponent->__get("running") 140 elseif(isset($this->_related[$name])) 141 return $this->_related[$name]; 142 elseif(isset($this->getMetaData()->relations[$name])) 143 return $this->getRelated($name); 144 else 145 return parent::__get($name); 146 } 147 148 /** 149 * PHP setter magic method. 150 * This method is overridden so that AR attributes can be accessed like properties. |
#3 |
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/base/CComponent.php(614) : eval()'d code(1): CActiveRecord->__get("running")
|
#4 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/base/CComponent.php(614): eval() 609 if(is_string($_expression_)) 610 { 611 extract($_data_); 612 try 613 { 614 return eval('return ' . $_expression_ . ';'); 615 } 616 catch (ParseError $e) 617 { 618 return false; 619 } |
#5 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CDataColumn.php(148): CComponent->evaluateExpression("$data->running", array("data" => Survey, "row" => 1)) 143 */ 144 public function getDataCellContent($row) 145 { 146 $data=$this->grid->dataProvider->data[$row]; 147 if($this->value!==null) 148 $value=$this->evaluateExpression($this->value,array('data'=>$data,'row'=>$row)); 149 elseif($this->name!==null) 150 $value=CHtml::value($data,$this->name); 151 return $value===null ? $this->grid->nullDisplay : $this->grid->getFormatter()->format($value,$this->type); 152 } 153 } |
#6 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridColumn.php(237): CDataColumn->getDataCellContent(1) 232 * @param mixed $data the data associated with the row 233 * @deprecated since 1.1.16. Use {@link getDataCellContent()} instead. 234 */ 235 protected function renderDataCellContent($row,$data) 236 { 237 echo $this->getDataCellContent($row); 238 } 239 240 /** 241 * Returns the filter cell content. 242 * The default implementation simply returns an empty column. |
#7 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridColumn.php(160): CGridColumn->renderDataCellContent(1, Survey) 155 else 156 $options['class']=$class; 157 } 158 } 159 echo CHtml::openTag('td',$options); 160 $this->renderDataCellContent($row,$data); 161 echo '</td>'; 162 } 163 164 /** 165 * Renders the footer cell. |
#8 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(655): CGridColumn->renderDataCell(1) 650 * @param integer $row 651 * @since 1.1.16 652 */ 653 protected function renderDataCell($column, $row) 654 { 655 $column->renderDataCell($row); 656 } 657 658 /** 659 * @return boolean whether the table should render a footer. 660 * This is true if any of the {@link columns} has a true {@link CGridColumn::hasFooter} value. |
#9 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(639): CGridView->renderDataCell(TbDataColumn, 1) 634 $htmlOptions['class']=$class; 635 } 636 637 echo CHtml::openTag('tr', $htmlOptions)."\n"; 638 foreach($this->columns as $column) 639 $this->renderDataCell($column, $row); 640 echo "</tr>\n"; 641 } 642 643 /** 644 * A seam for people extending CGridView to be able to hook onto the data cell rendering process. |
#10 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(595): CGridView->renderTableRow(1) 590 echo "<tbody>\n"; 591 592 if($n>0) 593 { 594 for($row=0;$row<$n;++$row) 595 $this->renderTableRow($row); 596 } 597 else 598 { 599 echo '<tr><td colspan="'.count($this->columns).'" class="empty">'; 600 $this->renderEmptyText(); |
#11 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/grid/CGridView.php(505): CGridView->renderTableBody() 500 if($this->dataProvider->getItemCount()>0 || $this->showTableOnEmpty) 501 { 502 echo "<table class=\"{$this->itemsCssClass}\">\n"; 503 $this->renderTableHeader(); 504 ob_start(); 505 $this->renderTableBody(); 506 $body=ob_get_clean(); 507 $this->renderTableFooter(); 508 echo $body; // TFOOT must appear before TBODY according to the standard. 509 echo "</table>"; 510 } |
#12 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/CBaseListView.php(181): CGridView->renderItems() 176 protected function renderSection($matches) 177 { 178 $method='render'.$matches[1]; 179 if(method_exists($this,$method)) 180 { 181 $this->$method(); 182 $html=ob_get_contents(); 183 ob_clean(); 184 return $html; 185 } 186 else |
#13 |
unknown(0): CBaseListView->renderSection(array("{items}", "items"))
|
#14 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/CBaseListView.php(164): preg_replace_callback("/{(\w+)}/", array(CLSGridView, "renderSection"), "
<div id="bottom-scroller" class="content-right scrolling-wrappe...") 159 * The rendering results will replace the corresponding placeholders in {@link template}. 160 */ 161 public function renderContent() 162 { 163 ob_start(); 164 echo preg_replace_callback("/{(\w+)}/",array($this,'renderSection'),$this->template); 165 ob_end_flush(); 166 } 167 168 /** 169 * Renders a section. |
#15 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/CBaseListView.php(149): CBaseListView->renderContent() 144 { 145 $this->registerClientScript(); 146 147 echo CHtml::openTag($this->tagName,$this->htmlOptions)."\n"; 148 149 $this->renderContent(); 150 $this->renderKeys(); 151 152 echo CHtml::closeTag($this->tagName); 153 } 154 |
#16 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(182): CBaseListView->run() 177 return ob_get_clean(); 178 } 179 else 180 { 181 $widget=$this->createWidget($className,$properties); 182 $widget->run(); 183 return $widget; 184 } 185 } 186 187 /** |
#17 |
+
–
/media/shnoulle/data/webdev/master/application/extensions/admin/survey/ListSurveysWidget/views/listSurveys.php(22):
CBaseController->widget("application.extensions.admin.grid.CLSGridView",
array("dataProvider" => CActiveDataProvider, "id" =>
"survey-grid", "emptyText" => "Aucun questionnaire trouvé.",
"summaryText" => "Affichage de {start}-{end} sur {count} résultat(s).
<select cla...", ...)) 17 <!-- Grid --> 18 <div class="row"> 19 <div class="col-12"> 20 <?php 21 $surveyGrid = $this->widget('application.extensions.admin.grid.CLSGridView', [ 22 'dataProvider' => $this->model->search(), 23 // Number of row per page selection 24 'id' => 'survey-grid', 25 'emptyText' => gT('No surveys found.'), 26 'summaryText' => gT('Displaying {start}-{end} of {count} result(s).') . ' ' . sprintf( 27 gT('%s rows per page'), |
#18 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(130): require("/media/shnoulle/data/webdev/master/application/extensions/admin/...") 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } 132 133 /** 134 * Creates a widget and initializes it. 135 * This method first creates the specified widget instance. |
#19 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/media/shnoulle/data/webdev/master/application/extensions/admin/...", null, false) 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); |
#20 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/widgets/CWidget.php(244): CBaseController->renderFile("/media/shnoulle/data/webdev/master/application/extensions/admin/...", null, false) 239 * @see getViewFile 240 */ 241 public function render($view,$data=null,$return=false) 242 { 243 if(($viewFile=$this->getViewFile($view))!==false) 244 return $this->renderFile($viewFile,$data,$return); 245 else 246 throw new CException(Yii::t('yii','{widget} cannot find the view "{view}".', 247 array('{widget}'=>get_class($this), '{view}'=>$view))); 248 } 249 } |
#21 |
+
–
/media/shnoulle/data/webdev/master/application/extensions/admin/survey/ListSurveysWidget/ListSurveysWidget.php(73):
CWidget->render("listSurveys") 68 69 if ($this->bRenderSearchBox) { 70 $this->render('searchBox'); 71 } 72 73 $this->render('listSurveys'); 74 } 75 } |
#22 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(182): ListSurveysWidget->run() 177 return ob_get_clean(); 178 } 179 else 180 { 181 $widget=$this->createWidget($className,$properties); 182 $widget->run(); 183 return $widget; 184 } 185 } 186 187 /** |
#23 |
+
–
/media/shnoulle/data/webdev/master/application/views/surveyAdministration/listSurveys_view.php(23): CBaseController->widget("ext.admin.survey.ListSurveysWidget.ListSurveysWidget", array("pageSize" => 10, "model" => Survey)) 18 <div class="tab-content"> 19 <div id="surveys" class="tab-pane show active"> 20 <!-- Survey List widget --> 21 <?php $this->widget('ext.admin.survey.ListSurveysWidget.ListSurveysWidget', array( 22 'pageSize' => Yii::app()->user->getState('pageSize', Yii::app()->params['defaultPageSize']), 23 'model' => $model, 24 )); 25 ?> 26 </div> 27 28 <div id="surveygroups" class="tab-pane"> |
#24 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(126): require("/media/shnoulle/data/webdev/master/application/views/surveyAdmin...") 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 } |
#25 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/media/shnoulle/data/webdev/master/application/views/surveyAdmin...",
array("issuperadmin" => true, "model" => Survey, "groupModel"
=> SurveysGroups, "topbar" => array("title" => "Liste des
questionnaires", "backLink" => "/master/index.php?r=admin/index",
"middleButtons" => " <a class="btn btn-primary
tab-dependent-button d-none" data-...")), 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); |
#26 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(872): CBaseController->renderFile("/media/shnoulle/data/webdev/master/application/views/surveyAdmin...",
array("issuperadmin" => true, "model" => Survey, "groupModel"
=> SurveysGroups, "topbar" => array("title" => "Liste des
questionnaires", "backLink" => "/master/index.php?r=admin/index",
"middleButtons" => " <a class="btn btn-primary
tab-dependent-button d-none" data-...")), 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 |
#27 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(785): CController->renderPartial("listSurveys_view",
array("issuperadmin" => true, "model" => Survey, "groupModel"
=> SurveysGroups, "topbar" => array("title" => "Liste des
questionnaires", "backLink" => "/master/index.php?r=admin/index",
"middleButtons" => " <a class="btn btn-primary
tab-dependent-button d-none" data-...")), true) 780 */ 781 public function render($view,$data=null,$return=false) 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 |
#28 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/SurveyAdministrationController.php(247): CController->render("listSurveys_view",
array("issuperadmin" => true, "model" => Survey, "groupModel"
=> SurveysGroups, "topbar" => array("title" => "Liste des
questionnaires", "backLink" => "/master/index.php?r=admin/index",
"middleButtons" => " <a class="btn btn-primary
tab-dependent-button d-none" data-..."))) 242 $aData['topbar']['backLink'] = App()->createUrl('admin/index'); 243 244 $aData['topbar']['middleButtons'] = $this->renderPartial('partial/topbarBtns/leftSideButtons', [], true); 245 246 $this->aData = $aData; 247 $this->render('listSurveys_view', $aData); 248 } 249 250 /** 251 * Delete multiple survey 252 * |
#29 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(49): SurveyAdministrationController->actionListsurveys() 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 } |
#30 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("r" => "surveyAdministration/listsurveys")) 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; |
#31 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction) 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#32 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(291): CFilterChain->run() 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; 293 } 294 } 295 296 /** |
#33 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("postOnly + copy")) 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); |
#34 |
+
–
/media/shnoulle/data/webdev/master/application/controllers/LSBaseController.php(145): CController->run("listsurveys") 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 * |
#35 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(282): LSBaseController->run("listsurveys") 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))); |
#36 |
+
–
/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("surveyAdministration/listsurveys") 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. |
#37 |
+
–
/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 /** |
#38 |
+
–
/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 */ |
Sommaire du rapport de profilage (Durée: 0.06180s, Memoire: 7,132KB) | |||||
---|---|---|---|---|---|
Fonction | Nb | Total (s) | Moy. (s) | Min. (s) | Max. (s) |
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') | 38 | 0.00383 | 0.00010 | 0.00010 | 0.00012 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_settings_global`) | 1 | 0.00037 | 0.00037 | 0.00037 | 0.00037 |
system.db.CDbCommand.query(SELECT * FROM `lime_templates` `t` WHERE `t`.`name`='bootswatch' LIMIT 1) | 4 | 0.00023 | 0.00006 | 0.00005 | 0.00006 |
system.db.CDbCommand.query(SELECT * FROM `lime_settings_global` `t`) | 1 | 0.00012 | 0.00012 | 0.00012 | 0.00012 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_settings_global`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_users`) | 1 | 0.00028 | 0.00028 | 0.00028 | 0.00028 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys`) | 1 | 0.00036 | 0.00036 | 0.00036 | 0.00036 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_permissions`) | 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.00019 | 0.00019 | 0.00019 | 0.00019 |
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.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.00008 | 0.00008 | 0.00008 | 0.00008 |
system.db.CDbCommand.query(SELECT * FROM `lime_settings_global` `t` WHERE stg_name=:name LIMIT 1. Bound with :name='DBVersion') | 1 | 0.00006 | 0.00006 | 0.00006 | 0.00006 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_permissions`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_plugins`) | 1 | 0.00003 | 0.00003 | 0.00003 | 0.00003 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys_groups`) | 1 | 0.00023 | 0.00023 | 0.00023 | 0.00023 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys`) | 1 | 0.00007 | 0.00007 | 0.00007 | 0.00007 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_templates`) | 1 | 0.00024 | 0.00024 | 0.00024 | 0.00024 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_template_configuration`) | 1 | 0.00024 | 0.00024 | 0.00024 | 0.00024 |
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`) | 38 | 0.01180 | 0.00031 | 0.00028 | 0.00037 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_asset_version`) | 1 | 0.00020 | 0.00020 | 0.00020 | 0.00020 |
system.db.CDbCommand.query(SELECT * FROM `lime_asset_version` `t` WHERE path = :path LIMIT 1. Bound with :path='/media/shnoulle/data/webdev/master/application/extensions/admin/survey/ListSurveysWidget/assets/reload.js') | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_asset_version`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_template_configuration`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_templates`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys_groups`) | 1 | 0.00003 | 0.00003 | 0.00003 | 0.00003 |
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') | 38 | 0.00269 | 0.00007 | 0.00006 | 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_twentythree') | 38 | 0.00262 | 0.00007 | 0.00006 | 0.00009 |
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') | 38 | 0.00247 | 0.00006 | 0.00006 | 0.00009 |
system.db.CDbCommand.query(SELECT * FROM `lime_templates` `t` WHERE `t`.`name`='fruity_twentythree' LIMIT 1) | 4 | 0.00021 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SELECT * FROM `lime_templates` `t` WHERE `t`.`name`='fruity' LIMIT 1) | 4 | 0.00020 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SELECT * FROM `lime_templates` `t` WHERE `t`.`name`='vanilla' LIMIT 1) | 4 | 0.00020 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SELECT * FROM `lime_surveys_groups` `t`) | 2 | 0.00007 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SELECT * FROM `lime_surveys_groups` `t` ORDER BY title ASC) | 2 | 0.00007 | 0.00004 | 0.00004 | 0.00004 |
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 CREATE TABLE `lime_surveys_languagesettings`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SELECT COUNT(DISTINCT `t`.`sid`) FROM `lime_surveys` `t` LEFT OUTER JOIN `lime_surveys_languagesettings` `correct_relation_defaultlanguage` ON (`correct_relation_defaultlanguage`.`surveyls_language`=`t`.`language`) AND (`correct_relation_defaultlanguage`.`surveyls_survey_id`=`t`.`sid`) LEFT OUTER JOIN `lime_users` `owner` ON (`t`.`owner_id`=`owner`.`uid`) LEFT OUTER JOIN `lime_surveys_groups` `surveygroup` ON (`t`.`gsid`=`surveygroup`.`gsid`)) | 1 | 0.00015 | 0.00015 | 0.00015 | 0.00015 |
system.db.CDbCommand.query(SELECT * FROM `lime_users` `t` WHERE `t`.`uid`=1 LIMIT 1) | 22 | 0.00097 | 0.00004 | 0.00003 | 0.00006 |
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)) | 11 | 0.00177 | 0.00016 | 0.00014 | 0.00027 |
system.db.CDbCommand.query(SELECT * FROM `lime_surveys_groupsettings` `t` WHERE `t`.`gsid`=0 LIMIT 1) | 11 | 0.00076 | 0.00007 | 0.00006 | 0.00007 |
system.db.CDbCommand.query(SELECT `t`.`sid` AS `t0_c0`, `t`.`owner_id` AS `t0_c1`, `t`.`gsid` AS `t0_c2`, `t`.`admin` AS `t0_c3`, `t`.`active` AS `t0_c4`, `t`.`expires` AS `t0_c5`, `t`.`startdate` AS `t0_c6`, `t`.`adminemail` AS `t0_c7`, `t`.`anonymized` AS `t0_c8`, `t`.`format` AS `t0_c9`, `t`.`savetimings` AS `t0_c10`, `t`.`template` AS `t0_c11`, `t`.`language` AS `t0_c12`, `t`.`additional_languages` AS `t0_c13`, `t`.`datestamp` AS `t0_c14`, `t`.`usecookie` AS `t0_c15`, `t`.`allowregister` AS `t0_c16`, `t`.`allowsave` AS `t0_c17`, `t`.`autonumber_start` AS `t0_c18`, `t`.`autoredirect` AS `t0_c19`, `t`.`allowprev` AS `t0_c20`, `t`.`printanswers` AS `t0_c21`, `t`.`ipaddr` AS `t0_c22`, `t`.`refurl` AS `t0_c23`, `t`.`datecreated` AS `t0_c24`, `t`.`showsurveypolicynotice` AS `t0_c25`, `t`.`publicstatistics` AS `t0_c26`, `t`.`publicgraphs` AS `t0_c27`, `t`.`listpublic` AS `t0_c28`, `t`.`htmlemail` AS `t0_c29`, `t`.`sendconfirmation` AS `t0_c30`, `t`.`tokenanswerspersistence` AS `t0_c31`, `t`.`assessments` AS `t0_c32`, `t`.`usecaptcha` AS `t0_c33`, `t`.`usetokens` AS `t0_c34`, `t`.`bounce_email` AS `t0_c35`, `t`.`attributedescriptions` AS `t0_c36`, `t`.`emailresponseto` AS `t0_c37`, `t`.`emailnotificationto` AS `t0_c38`, `t`.`tokenlength` AS `t0_c39`, `t`.`showxquestions` AS `t0_c40`, `t`.`showgroupinfo` AS `t0_c41`, `t`.`shownoanswer` AS `t0_c42`, `t`.`showqnumcode` AS `t0_c43`, `t`.`bouncetime` AS `t0_c44`, `t`.`bounceprocessing` AS `t0_c45`, `t`.`bounceaccounttype` AS `t0_c46`, `t`.`bounceaccounthost` AS `t0_c47`, `t`.`bounceaccountpass` AS `t0_c48`, `t`.`bounceaccountencryption` AS `t0_c49`, `t`.`bounceaccountuser` AS `t0_c50`, `t`.`showwelcome` AS `t0_c51`, `t`.`showprogress` AS `t0_c52`, `t`.`questionindex` AS `t0_c53`, `t`.`navigationdelay` AS `t0_c54`, `t`.`nokeyboard` AS `t0_c55`, `t`.`alloweditaftercompletion` AS `t0_c56`, `t`.`googleanalyticsstyle` AS `t0_c57`, `t`.`googleanalyticsapikey` AS `t0_c58`, `t`.`tokenencryptionoptions` AS `t0_c59`, `t`.`ipanonymize` AS `t0_c60`, `correct_relation_defaultlanguage`.`surveyls_survey_id` AS `t1_c0`, `correct_relation_defaultlanguage`.`surveyls_language` AS `t1_c1`, `correct_relation_defaultlanguage`.`surveyls_title` AS `t1_c2`, `correct_relation_defaultlanguage`.`surveyls_description` AS `t1_c3`, `correct_relation_defaultlanguage`.`surveyls_welcometext` AS `t1_c4`, `correct_relation_defaultlanguage`.`surveyls_endtext` AS `t1_c5`, `correct_relation_defaultlanguage`.`surveyls_policy_notice` AS `t1_c6`, `correct_relation_defaultlanguage`.`surveyls_policy_error` AS `t1_c7`, `correct_relation_defaultlanguage`.`surveyls_policy_notice_label` AS `t1_c8`, `correct_relation_defaultlanguage`.`surveyls_url` AS `t1_c9`, `correct_relation_defaultlanguage`.`surveyls_urldescription` AS `t1_c10`, `correct_relation_defaultlanguage`.`surveyls_email_invite_subj` AS `t1_c11`, `correct_relation_defaultlanguage`.`surveyls_email_invite` AS `t1_c12`, `correct_relation_defaultlanguage`.`surveyls_email_remind_subj` AS `t1_c13`, `correct_relation_defaultlanguage`.`surveyls_email_remind` AS `t1_c14`, `correct_relation_defaultlanguage`.`surveyls_email_register_subj` AS `t1_c15`, `correct_relation_defaultlanguage`.`surveyls_email_register` AS `t1_c16`, `correct_relation_defaultlanguage`.`surveyls_email_confirm_subj` AS `t1_c17`, `correct_relation_defaultlanguage`.`surveyls_email_confirm` AS `t1_c18`, `correct_relation_defaultlanguage`.`surveyls_dateformat` AS `t1_c19`, `correct_relation_defaultlanguage`.`surveyls_attributecaptions` AS `t1_c20`, `correct_relation_defaultlanguage`.`email_admin_notification_subj` AS `t1_c21`, `correct_relation_defaultlanguage`.`email_admin_notification` AS `t1_c22`, `correct_relation_defaultlanguage`.`email_admin_responses_subj` AS `t1_c23`, `correct_relation_defaultlanguage`.`email_admin_responses` AS `t1_c24`, `correct_relation_defaultlanguage`.`surveyls_numberformat` AS `t1_c25`, `correct_relation_defaultlanguage`.`attachments` AS `t1_c26`, `correct_relation_defaultlanguage`.`surveyls_alias` AS `t1_c27`, `owner`.`uid` AS `t2_c0`, `owner`.`users_name` AS `t2_c1`, `owner`.`password` AS `t2_c2`, `owner`.`full_name` AS `t2_c3`, `owner`.`parent_id` AS `t2_c4`, `owner`.`lang` AS `t2_c5`, `owner`.`email` AS `t2_c6`, `owner`.`htmleditormode` AS `t2_c7`, `owner`.`templateeditormode` AS `t2_c8`, `owner`.`questionselectormode` AS `t2_c9`, `owner`.`one_time_pw` AS `t2_c10`, `owner`.`dateformat` AS `t2_c11`, `owner`.`created` AS `t2_c12`, `owner`.`modified` AS `t2_c13`, `owner`.`last_login` AS `t2_c14`, `owner`.`validation_key` AS `t2_c15`, `owner`.`validation_key_expiration` AS `t2_c16`, `owner`.`last_forgot_email_password` AS `t2_c17`, `owner`.`expires` AS `t2_c18`, `surveygroup`.`gsid` AS `t3_c0`, `surveygroup`.`name` AS `t3_c1`, `surveygroup`.`title` AS `t3_c2`, `surveygroup`.`template` AS `t3_c3`, `surveygroup`.`description` AS `t3_c4`, `surveygroup`.`sortorder` AS `t3_c5`, `surveygroup`.`owner_id` AS `t3_c6`, `surveygroup`.`parent_id` AS `t3_c7`, `surveygroup`.`created` AS `t3_c8`, `surveygroup`.`modified` AS `t3_c9`, `surveygroup`.`created_by` AS `t3_c10`, `surveygroup`.`alwaysavailable` AS `t3_c11` FROM `lime_surveys` `t` LEFT OUTER JOIN `lime_surveys_languagesettings` `correct_relation_defaultlanguage` ON (`correct_relation_defaultlanguage`.`surveyls_language`=`t`.`language`) AND (`correct_relation_defaultlanguage`.`surveyls_survey_id`=`t`.`sid`) LEFT OUTER JOIN `lime_users` `owner` ON (`t`.`owner_id`=`owner`.`uid`) LEFT OUTER JOIN `lime_surveys_groups` `surveygroup` ON (`t`.`gsid`=`surveygroup`.`gsid`) ORDER BY t.datecreated desc LIMIT 10) | 1 | 0.00046 | 0.00046 | 0.00046 | 0.00046 |
system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `lime_surveys_groupsettings`) | 1 | 0.00032 | 0.00032 | 0.00032 | 0.00032 |
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-20 17:03:18') | 1 | 0.00012 | 0.00012 | 0.00012 | 0.00012 |
system.db.CDbCommand.query(SELECT `defaultlanguage`.`surveyls_survey_id` AS `t1_c0`, `defaultlanguage`.`surveyls_language` AS `t1_c1`, `defaultlanguage`.`surveyls_title` AS `t1_c2`, `defaultlanguage`.`surveyls_description` AS `t1_c3`, `defaultlanguage`.`surveyls_welcometext` AS `t1_c4`, `defaultlanguage`.`surveyls_endtext` AS `t1_c5`, `defaultlanguage`.`surveyls_policy_notice` AS `t1_c6`, `defaultlanguage`.`surveyls_policy_error` AS `t1_c7`, `defaultlanguage`.`surveyls_policy_notice_label` AS `t1_c8`, `defaultlanguage`.`surveyls_url` AS `t1_c9`, `defaultlanguage`.`surveyls_urldescription` AS `t1_c10`, `defaultlanguage`.`surveyls_email_invite_subj` AS `t1_c11`, `defaultlanguage`.`surveyls_email_invite` AS `t1_c12`, `defaultlanguage`.`surveyls_email_remind_subj` AS `t1_c13`, `defaultlanguage`.`surveyls_email_remind` AS `t1_c14`, `defaultlanguage`.`surveyls_email_register_subj` AS `t1_c15`, `defaultlanguage`.`surveyls_email_register` AS `t1_c16`, `defaultlanguage`.`surveyls_email_confirm_subj` AS `t1_c17`, `defaultlanguage`.`surveyls_email_confirm` AS `t1_c18`, `defaultlanguage`.`surveyls_dateformat` AS `t1_c19`, `defaultlanguage`.`surveyls_attributecaptions` AS `t1_c20`, `defaultlanguage`.`email_admin_notification_subj` AS `t1_c21`, `defaultlanguage`.`email_admin_notification` AS `t1_c22`, `defaultlanguage`.`email_admin_responses_subj` AS `t1_c23`, `defaultlanguage`.`email_admin_responses` AS `t1_c24`, `defaultlanguage`.`surveyls_numberformat` AS `t1_c25`, `defaultlanguage`.`attachments` AS `t1_c26`, `defaultlanguage`.`surveyls_alias` AS `t1_c27` FROM `lime_surveys_languagesettings` `defaultlanguage` WHERE (`defaultlanguage`.`surveyls_language`=:ypl0) AND (`defaultlanguage`.`surveyls_survey_id`=:ypl1). Bound with :ypl0='fr', :ypl1=33944) | 1 | 0.00010 | 0.00010 | 0.00010 | 0.00010 |
system.db.CDbCommand.query(SELECT count(*) FROM `lime_survey_33944` WHERE submitdate IS NULL) | 1 | 0.00006 | 0.00006 | 0.00006 | 0.00006 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_surveys_groupsettings`) | 1 | 0.00005 | 0.00005 | 0.00005 | 0.00005 |
system.db.CDbCommand.query(SELECT * FROM `lime_asset_version` `t` WHERE path = :path LIMIT 1. Bound with :path='/media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/zii/widgets/assets') | 1 | 0.00003 | 0.00003 | 0.00003 | 0.00003 |
system.db.CDbCommand.query(SELECT count(*) FROM `lime_survey_33944` WHERE submitdate IS NOT NULL) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |
system.db.CDbCommand.query(SELECT count(*) FROM `lime_survey_33944`) | 1 | 0.00003 | 0.00003 | 0.00003 | 0.00003 |
system.db.CDbCommand.query(SHOW TABLES) | 1 | 0.00030 | 0.00030 | 0.00030 | 0.00030 |
system.db.CDbCommand.query(SELECT * FROM `lime_surveys` `t` WHERE `t`.`sid`=33944 LIMIT 1) | 1 | 0.00009 | 0.00009 | 0.00009 | 0.00009 |
system.db.CDbCommand.query(SHOW CREATE TABLE `lime_users`) | 1 | 0.00004 | 0.00004 | 0.00004 | 0.00004 |