/htdocs/public/enquete/framework/db/CDbCommand.php(543)
531 { 532 if($this->_connection->enableProfiling) 533 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 534 535 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 536 $message=$e->getMessage(); 537 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 538 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 539 540 if(YII_DEBUG) 541 $message.='. The SQL statement executed was: '.$this->getText().$par; 542 543 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 544 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 545 } 546 } 547 548 /** 549 * Builds a SQL SELECT statement from the given query specification. 550 * @param array $query the query specification in name-value pairs. The following 551 * query options are supported: {@link select}, {@link distinct}, {@link from}, 552 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 553 * {@link limit}, {@link offset} and {@link union}. 554 * @throws CDbException if "from" key is not present in given query parameter 555 * @return string the SQL statement
| #0 |
+
–
/htdocs/public/enquete/framework/db/CDbCommand.php(433): CDbCommand->queryInternal("fetchColumn", 0, array()) 428 * @return mixed the value of the first column in the first row of the query result. False is returned if there is no value. 429 * @throws CException execution failed 430 */ 431 public function queryScalar($params=array()) 432 { 433 $result=$this->queryInternal('fetchColumn',0,$params); 434 if(is_resource($result) && get_resource_type($result)==='stream') 435 return stream_get_contents($result); 436 else 437 return $result; 438 } |
| #1 |
+
–
/htdocs/public/enquete/framework/db/ar/CActiveRecord.php(1609): CDbCommand->queryScalar() 1604 $builder=$this->getCommandBuilder(); 1605 $criteria=$builder->createCriteria($condition,$params); 1606 $this->applyScopes($criteria); 1607 1608 if(empty($criteria->with)) 1609 return $builder->createCountCommand($this->getTableSchema(),$criteria)->queryScalar(); 1610 else 1611 { 1612 $finder=$this->getActiveFinder($criteria->with); 1613 return $finder->count($criteria); 1614 } |
| #2 |
+
–
/htdocs/public/enquete/plugins/getStatInSurvey/getStatInSurvey.php(287): CActiveRecord->count(CDbCriteria) 282 $oCriteria->addCondition("{$sQuotedColumn} IS NOT NULL"); 283 if(!is_null($sValue)) 284 { 285 $oCriteria->compare($sQuotedColumn,$sValue); 286 } 287 $aCount[$sColumn][$sValue]=intval(SurveyDynamic::model($this->iSurveyId)->count($oCriteria)); 288 return $aCount[$sColumn][$sValue]; 289 } 290 /** 291 * Replace specific string by value 292 * @param : $string : the string to replace |
| #3 |
+
–
/htdocs/public/enquete/plugins/getStatInSurvey/getStatInSurvey.php(159): getStatInSurvey->getCount("316395X33X803", "CADJUG") 154 case "N": 155 case "G": 156 case "Y": 157 case "*": 158 case "S": 159 return $this->getCount($this->iSurveyId."X".$oQuestion->gid."X".$oQuestion->qid, $sValue); 160 default: 161 tracevar("getStatInSurvey : Invalid question type : $sType in ".$this->sDebugWhere); 162 return; 163 return; 164 case 'nbnum': |
| #4 |
+
–
/htdocs/public/enquete/plugins/getStatInSurvey/getStatInSurvey.php(304): getStatInSurvey->getValue("B.nb.CADJUG") 299 if($iCount) 300 { 301 $aReplace=$aQuoteReplace=array(); 302 foreach($aMatches as $sMatch) 303 { 304 $sValue=$this->getValue($sMatch); 305 if(null!==$sValue) 306 { 307 $aReplace["[".$sMatch."]"]=$sValue; 308 if(is_numeric($sValue)) 309 $aQuoteReplace["\"[".$sMatch."]\""]=$sValue; |
| #5 |
+
–
/htdocs/public/enquete/plugins/getStatInSurvey/getStatInSurvey.php(83): getStatInSurvey->doReplacement("<p>Dans quelle catégorie ?</p>
<p>{if('[B.nb.CADJUG]'>=LB_CA...") 78 $oEvent=$this->getEvent(); 79 $this->iSurveyId=$oEvent->get('surveyId'); 80 $oSurvey=Survey::model()->findByPk($this->iSurveyId); 81 if($oSurvey && $oSurvey->active=="Y") 82 { 83 $oEvent->set('text',$this->doReplacement($oEvent->get('text'))); 84 $oEvent->set('questionhelp',$this->doReplacement($oEvent->get('questionhelp'))); 85 $oEvent->set('answers',$this->doReplacement($oEvent->get('answers'))); 86 } 87 } 88 |
| #6 |
unknown(0): getStatInSurvey->beforeQuestionRender()
|
| #7 |
+
–
/htdocs/public/enquete/application/libraries/PluginManager/PluginManager.php(192): call_user_func(array(getStatInSurvey, "beforeQuestionRender")) 187 { 188 if (!$event->isStopped() 189 && (empty($target) || in_array(get_class($subscription[0]), $target))) 190 { 191 $subscription[0]->setEvent($event); 192 call_user_func($subscription); 193 } 194 } 195 } 196 197 return $event; |
| #8 |
+
–
/htdocs/public/enquete/application/helpers/SurveyRuntimeHelper.php(1638): ls\pluginmanager\PluginManager->dispatchEvent(PluginEvent) 1633 $event->set('valid_message', $aReplacement['QUESTION_VALID_MESSAGE']); 1634 $event->set('file_valid_message', $aReplacement['QUESTION_FILE_VALID_MESSAGE']); 1635 // htmlOptions for container 1636 $event->set('aHtmlOptions', $aHtmlOptions); 1637 1638 App()->getPluginManager()->dispatchEvent($event); 1639 // User text 1640 $aReplacement['QUESTION_TEXT'] = $event->get('text'); 1641 $aReplacement['QUESTIONHELP'] = $event->get('questionhelp'); 1642 $aReplacement['QUESTIONHELPPLAINTEXT']=strip_tags(addslashes($aReplacement['QUESTIONHELP'])); 1643 // The classes |
| #9 |
+
–
/htdocs/public/enquete/application/helpers/SurveyRuntimeHelper.php(1360): SurveyRuntimeHelper::getQuestionReplacement(array(0 => array("all" => "<p>Dans quelle catégorie ?</p>
<p>{if('[B.nb.CADJUG]'>=LB_CA...", "text" => "<p>Dans quelle catégorie ?</p>
<p>{if('[B.nb.CADJUG]'>=LB_CA...", "code" => "B", "number" => 64, ...), 1 => "<!-- Multiple Choice -->
<!-- answer -->
<div class="row multip...", 2 => "help", 3 => "N", ...)) 1355 $question_template ="<div {QUESTION_ESSENTIALS} class='{QUESTION_CLASS} {QUESTION_MAN_CLASS} {QUESTION_INPUT_ERROR_CLASS}'" 1356 . $question_template 1357 . "</div>"; 1358 } 1359 $redata = compact(array_keys(get_defined_vars())); 1360 $aQuestionReplacement=$this->getQuestionReplacement($qa); 1361 echo templatereplace($question_template, $aQuestionReplacement, $redata, false, false, $qa[4]); 1362 1363 } 1364 if (!empty($qanda)) 1365 { |
| #10 |
+
–
/htdocs/public/enquete/application/controllers/survey/index.php(611): SurveyRuntimeHelper->run("316395",
array("surveyid" => "316395", "thissurvey" => array("template"
=> "default", "language" => "fr", "sid" => "316395", "owner_id"
=> "2", ...), "thisstep" => "53", "clienttoken" =>
"cCr4b7o6BEzdZRT", ...)) 606 //Send local variables to the appropriate survey type 607 unset($redata); 608 $redata = compact(array_keys(get_defined_vars())); 609 Yii::import('application.helpers.SurveyRuntimeHelper'); 610 $tmp = new SurveyRuntimeHelper(); 611 $tmp->run($surveyid,$redata); 612 613 if (App()->request->getPost('saveall') || isset($flashmessage)) 614 { 615 App()->clientScript->registerScript("saveflashmessage","alert('".gT("Your responses were successfully saved.","js")."');",CClientScript::POS_READY); 616 } |
| #11 |
+
–
/htdocs/public/enquete/application/controllers/survey/index.php(70): index->action() 65 App()->getClientScript()->reset(); 66 return $buffer; 67 }); 68 69 ob_implicit_flush(false); 70 $this->action(); 71 ob_flush(); 72 } 73 74 function action() 75 { |
| #12 |
+
–
/htdocs/public/enquete/framework/web/actions/CAction.php(76): index->run() 71 { 72 $method=new ReflectionMethod($this, 'run'); 73 if($method->getNumberOfParameters()>0) 74 return $this->runWithParamsInternal($this, $method, $params); 75 76 $this->run(); 77 return true; 78 } 79 80 /** 81 * Executes a method of an object with the supplied named parameters. |
| #13 |
+
–
/htdocs/public/enquete/framework/web/CController.php(308): CAction->runWithParams(array("sid" => "316395")) 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; |
| #14 |
+
–
/htdocs/public/enquete/framework/web/CController.php(286): CController->runAction(index) 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(); |
| #15 |
+
–
/htdocs/public/enquete/framework/web/CController.php(265): CController->runActionWithFilters(index, 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); |
| #16 |
+
–
/htdocs/public/enquete/framework/web/CWebApplication.php(282): CController->run("index") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
| #17 |
+
–
/htdocs/public/enquete/framework/web/CWebApplication.php(141): CWebApplication->runController("survey/index/sid/316395") 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. |
| #18 |
+
–
/htdocs/public/enquete/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 /** |
| #19 |
+
–
/htdocs/public/enquete/index.php(214): CApplication->run() 209 die (sprintf('%s should be writable by the webserver (766 or 776).', $sDefaultRuntimePath)); 210 } 211 } 212 213 Yii::$enableIncludePath = false; 214 Yii::createApplication('LSYii_Application', $config)->run(); 215 216 /* End of file index.php */ 217 /* Location: ./index.php */ |
| Sommaire du rapport de profilage (Durée: 1.45572s, Memoire: 22,607KB) | |||||
|---|---|---|---|---|---|
| Fonction | Nb | Total (s) | Moy. (s) | Min. (s) | Max. (s) |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `survey_316395`) | 1 | 0.00749 | 0.00749 | 0.00749 | 0.00749 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `survey_316395`) | 1 | 0.00369 | 0.00369 | 0.00369 | 0.00369 |
| system.db.CDbCommand.query(SELECT * FROM questions WHERE parent_qid='803' AND scale_id=0 AND language='fr' ORDER BY question_order) | 1 | 0.00255 | 0.00255 | 0.00255 | 0.00255 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `tokens_316395`) | 1 | 0.00241 | 0.00241 | 0.00241 | 0.00241 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `surveys`) | 1 | 0.00186 | 0.00186 | 0.00186 | 0.00186 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `surveys_languagesettings`) | 1 | 0.00163 | 0.00163 | 0.00163 | 0.00163 |
| system.db.CDbCommand.query(SELECT * FROM assessments WHERE sid=316395 and language='fr' ORDER BY scope, id) | 4 | 0.00118 | 0.00029 | 0.00018 | 0.00043 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `questions`) | 1 | 0.00118 | 0.00118 | 0.00118 | 0.00118 |
| system.db.CDbCommand.query(SELECT `t`.`surveyls_survey_id` AS `t0_c0`, `t`.`surveyls_language` AS `t0_c1`, `t`.`surveyls_title` AS `t0_c2`, `t`.`surveyls_description` AS `t0_c3`, `t`.`surveyls_welcometext` AS `t0_c4`, `t`.`surveyls_endtext` AS `t0_c5`, `t`.`surveyls_url` AS `t0_c6`, `t`.`surveyls_urldescription` AS `t0_c7`, `t`.`surveyls_email_invite_subj` AS `t0_c8`, `t`.`surveyls_email_invite` AS `t0_c9`, `t`.`surveyls_email_remind_subj` AS `t0_c10`, `t`.`surveyls_email_remind` AS `t0_c11`, `t`.`surveyls_email_register_subj` AS `t0_c12`, `t`.`surveyls_email_register` AS `t0_c13`, `t`.`surveyls_email_confirm_subj` AS `t0_c14`, `t`.`surveyls_email_confirm` AS `t0_c15`, `t`.`surveyls_dateformat` AS `t0_c16`, `t`.`surveyls_numberformat` AS `t0_c17`, `t`.`email_admin_notification_subj` AS `t0_c18`, `t`.`email_admin_notification` AS `t0_c19`, `t`.`email_admin_responses_subj` AS `t0_c20`, `t`.`email_admin_responses` AS `t0_c21`, `t`.`surveyls_attributecaptions` AS `t0_c22`, `t`.`attachments` AS `t0_c23`, `survey`.`sid` AS `t1_c0`, `survey`.`owner_id` AS `t1_c1`, `survey`.`admin` AS `t1_c2`, `survey`.`active` AS `t1_c3`, `survey`.`expires` AS `t1_c4`, `survey`.`startdate` AS `t1_c5`, `survey`.`adminemail` AS `t1_c6`, `survey`.`anonymized` AS `t1_c7`, `survey`.`faxto` 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`.`publicstatistics` AS `t1_c25`, `survey`.`publicgraphs` AS `t1_c26`, `survey`.`listpublic` AS `t1_c27`, `survey`.`htmlemail` AS `t1_c28`, `survey`.`tokenanswerspersistence` AS `t1_c29`, `survey`.`assessments` AS `t1_c30`, `survey`.`usecaptcha` AS `t1_c31`, `survey`.`usetokens` AS `t1_c32`, `survey`.`bounce_email` AS `t1_c33`, `survey`.`attributedescriptions` AS `t1_c34`, `survey`.`emailresponseto` AS `t1_c35`, `survey`.`emailnotificationto` AS `t1_c36`, `survey`.`tokenlength` AS `t1_c37`, `survey`.`showxquestions` AS `t1_c38`, `survey`.`showgroupinfo` AS `t1_c39`, `survey`.`shownoanswer` AS `t1_c40`, `survey`.`showqnumcode` AS `t1_c41`, `survey`.`bouncetime` AS `t1_c42`, `survey`.`bounceprocessing` AS `t1_c43`, `survey`.`bounceaccounttype` AS `t1_c44`, `survey`.`bounceaccounthost` AS `t1_c45`, `survey`.`bounceaccountpass` AS `t1_c46`, `survey`.`bounceaccountencryption` AS `t1_c47`, `survey`.`bounceaccountuser` AS `t1_c48`, `survey`.`showwelcome` AS `t1_c49`, `survey`.`showprogress` AS `t1_c50`, `survey`.`navigationdelay` AS `t1_c51`, `survey`.`nokeyboard` AS `t1_c52`, `survey`.`alloweditaftercompletion` AS `t1_c53`, `survey`.`googleanalyticsstyle` AS `t1_c54`, `survey`.`googleanalyticsapikey` AS `t1_c55`, `survey`.`sendconfirmation` AS `t1_c56`, `survey`.`questionindex` AS `t1_c57` FROM `surveys_languagesettings` `t` LEFT OUTER JOIN `surveys` `survey` ON (t.surveyls_survey_id = survey.sid) WHERE (`t`.`surveyls_survey_id`=316395 AND `t`.`surveyls_language`='fr')) | 1 | 0.00117 | 0.00117 | 0.00117 | 0.00117 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `groups`) | 1 | 0.00106 | 0.00106 | 0.00106 | 0.00106 |
| system.db.CDbCommand.query(SELECT * FROM `questions` `t` WHERE qid=:qid LIMIT 1. Bound with :qid=803) | 4 | 0.00106 | 0.00026 | 0.00022 | 0.00034 |
| system.db.CDbCommand.query(SHOW TABLES) | 1 | 0.00104 | 0.00104 | 0.00104 | 0.00104 |
| system.db.CDbCommand.query(SELECT * FROM `question_attributes` `t` WHERE qid=:qid. Bound with :qid=803) | 4 | 0.00104 | 0.00026 | 0.00020 | 0.00037 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `surveys_languagesettings`) | 1 | 0.00100 | 0.00100 | 0.00100 | 0.00100 |
| system.db.CDbCommand.query(select count(DISTINCT groups.gid) from groups left join questions on groups.gid=questions.gid where groups.sid=316395 and qid is not null) | 4 | 0.00098 | 0.00024 | 0.00019 | 0.00030 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `permissions`) | 1 | 0.00096 | 0.00096 | 0.00096 | 0.00096 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `question_attributes`) | 1 | 0.00093 | 0.00093 | 0.00093 | 0.00093 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `plugins`) | 1 | 0.00072 | 0.00072 | 0.00072 | 0.00072 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `surveys`) | 1 | 0.00071 | 0.00071 | 0.00071 | 0.00071 |
| system.db.CDbCommand.query(SELECT * FROM `tokens_316395` `t` WHERE (COALESCE(validuntil, '2017-08-21 23:09:21') >= '2017-08-21 23:09:21' AND COALESCE(validfrom, '2017-08-21 23:09:21') <= '2017-08-21 23:09:21') AND (`t`.`token`=:yp0) LIMIT 1. Bound with :yp0='cCr4b7o6BEzdZRT') | 1 | 0.00069 | 0.00069 | 0.00069 | 0.00069 |
| system.db.CDbCommand.query(SELECT * FROM `survey_316395` `t` WHERE `t`.`token`=:yp0 ORDER BY id DESC. Bound with :yp0='cCr4b7o6BEzdZRT') | 1 | 0.00069 | 0.00069 | 0.00069 | 0.00069 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `settings_global`) | 1 | 0.00069 | 0.00069 | 0.00069 | 0.00069 |
| system.db.CDbCommand.query(SELECT * FROM `settings_global` `t`) | 1 | 0.00058 | 0.00058 | 0.00058 | 0.00058 |
| system.db.CDbCommand.query(SELECT * FROM `questions` `t` WHERE sid=:sid AND title=:title LIMIT 1. Bound with :sid='316395', :title='B') | 1 | 0.00058 | 0.00058 | 0.00058 | 0.00058 |
| system.db.CDbCommand.query(SELECT COUNT(*) FROM `survey_316395` `t` WHERE ((submitdate IS NOT NULL) AND (`316395X33X803` IS NOT NULL)) AND (`316395X33X803`=:ycp0). Bound with :ycp0='CADJUG') | 1 | 0.00057 | 0.00057 | 0.00057 | 0.00057 |
| system.db.CDbCommand.query(SELECT * FROM `questions` `t` WHERE `t`.`qid`=803 AND `t`.`language`='fr' LIMIT 1) | 1 | 0.00056 | 0.00056 | 0.00056 | 0.00056 |
| system.db.CDbCommand.query(SHOW FULL COLUMNS FROM `templates`) | 1 | 0.00049 | 0.00049 | 0.00049 | 0.00049 |
| system.db.CDbCommand.query(SELECT * FROM `surveys` `t` WHERE `t`.`sid`=316395 LIMIT 1) | 1 | 0.00048 | 0.00048 | 0.00048 | 0.00048 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `permissions`) | 1 | 0.00039 | 0.00039 | 0.00039 | 0.00039 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `tokens_316395`) | 1 | 0.00035 | 0.00035 | 0.00035 | 0.00035 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `questions`) | 1 | 0.00032 | 0.00032 | 0.00032 | 0.00032 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `templates`) | 1 | 0.00032 | 0.00032 | 0.00032 | 0.00032 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `question_attributes`) | 1 | 0.00030 | 0.00030 | 0.00030 | 0.00030 |
| system.db.CDbCommand.query(SELECT * FROM `settings_global` `t` WHERE stg_name=:name LIMIT 1. Bound with :name='DBVersion') | 1 | 0.00028 | 0.00028 | 0.00028 | 0.00028 |
| system.db.CDbCommand.query(SELECT * FROM `tokens_316395` `t` WHERE `t`.`token`=:yp0 LIMIT 1. Bound with :yp0='cCr4b7o6BEzdZRT') | 1 | 0.00027 | 0.00027 | 0.00027 | 0.00027 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `groups`) | 1 | 0.00025 | 0.00025 | 0.00025 | 0.00025 |
| system.db.CDbCommand.query(SELECT * FROM `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=2, :yp3='superadmin') | 1 | 0.00021 | 0.00021 | 0.00021 | 0.00021 |
| system.db.CDbCommand.query(SELECT * FROM `plugins` `t` WHERE `t`.`active`=:yp0. Bound with :yp0=1) | 1 | 0.00021 | 0.00021 | 0.00021 | 0.00021 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `settings_global`) | 1 | 0.00020 | 0.00020 | 0.00020 | 0.00020 |
| system.db.CDbCommand.query(SHOW CREATE TABLE `plugins`) | 1 | 0.00017 | 0.00017 | 0.00017 | 0.00017 |