PHP error

DateTime::__construct(): Passing null to parameter #1 ($datetime) of type string is deprecated

/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>';

Stack Trace

#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 
#3
 /media/shnoulle/data/webdev/master/vendor/yiisoft/yii/framework/base/CComponent.php(614) : eval()'d code(1): CActiveRecord->__get("running")
#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'),
2023-11-20 17:03:18 nginx/1.22.1 Yii Framework/1.1.28
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