C:\limesurvey\framework\db\CDbCommand.php(528)
516 return $result; 517 } 518 catch(Exception $e) 519 { 520 if($this->_connection->enableProfiling) 521 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 522 $errorInfo = $e instanceof PDOException ? $e->errorInfo : null; 523 $message = $e->getMessage(); 524 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 525 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 526 if(YII_DEBUG) 527 $message .= '. The SQL statement executed was: '.$this->getText().$par; 528 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 529 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 530 } 531 } 532 533 /** 534 * Builds a SQL SELECT statement from the given query specification. 535 * @param array $query the query specification in name-value pairs. The following 536 * query options are supported: {@link select}, {@link distinct}, {@link from}, 537 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 538 * {@link limit}, {@link offset} and {@link union}. 539 * @return string the SQL statement 540 * @since 1.1.6
#0 |
+
–
C:\limesurvey\framework\db\CDbCommand.php(425): CDbCommand->queryInternal("fetchColumn", 0, array()) 420 * @return mixed the value of the first column in the first row of the query result. False is returned if there is no value. 421 * @throws CException execution failed 422 */ 423 public function queryScalar($params=array()) 424 { 425 $result=$this->queryInternal('fetchColumn',0,$params); 426 if(is_resource($result) && get_resource_type($result)==='stream') 427 return stream_get_contents($result); 428 else 429 return $result; 430 } |
#1 |
+
–
C:\limesurvey\framework\db\ar\CActiveRecord.php(1536): CDbCommand->queryScalar() 1531 $builder=$this->getCommandBuilder(); 1532 $criteria=$builder->createCriteria($condition,$params); 1533 $this->applyScopes($criteria); 1534 1535 if(empty($criteria->with)) 1536 return $builder->createCountCommand($this->getTableSchema(),$criteria)->queryScalar(); 1537 else 1538 { 1539 $finder=new CActiveFinder($this,$criteria->with); 1540 return $finder->count($criteria); 1541 } |
#2 |
+
–
C:\limesurvey\application\helpers\admin\statistics_helper.php(2150): CActiveRecord->count(CDbCriteria) 2145 { 2146 $criteria->addCondition($al[2] . " IS NULL");//$criteria->addCondition("\"" . $al[2] . "\" IS NULL"); 2147 } 2148 if (incompleteAnsFilterState() == "incomplete") {$criteria->addCondition("submitdate IS NULL");} 2149 elseif (incompleteAnsFilterState() == "complete") {$criteria->addCondition("submitdate IS NOT NULL");} 2150 $multiNotDisplayed=Survey_dynamic::model($surveyid)->count($criteria); 2151 if (isset($_POST['noncompleted']) and ($_POST['noncompleted'] == "on") ) 2152 { 2153 //counter 2154 $i=0; 2155 while (isset($gdata[$i])) |
#3 |
+
–
C:\limesurvey\application\helpers\admin\statistics_helper.php(3322): statistics_helper->displayResults(array("alist" => array(array("1", "Add documents", "489924X11X1951"), array("2", "Add e-mails", "489924X11X1952"), array("3", "View documents", "489924X11X1953"), array("4", "Update/edit documents", "489924X11X1954"), ...), "qtitle" => "A2", "qquestion" => "How do you use Objective EDRMS?
(Please select all that apply)", "qtype" => "M", ...), "11", "M489924X11X195", "html", ...) 3317 $outputs=$this->buildOutputList($rt, $language, $surveyid, $outputType, $sql, $statlang); 3318 $statisticsoutput .= $outputs['statisticsoutput']; 3319 //2. Collect and Display results ####################################################################### 3320 if (isset($outputs['alist']) && $outputs['alist']) //Make sure there really is an answerlist, and if so: 3321 { 3322 $display=$this->displayResults($outputs, $results, $rt, $outputType, $surveyid, $sql, $usegraph, $browse, $statlang); 3323 $statisticsoutput .= $display['statisticsoutput']; 3324 $astatdata = array_merge($astatdata, $display['astatdata']); 3325 } //end if -> collect and display results 3326 3327 |
#4 |
+
–
C:\limesurvey\application\controllers\admin\statistics.php(467): statistics_helper->generate_statistics("489924", array("idG", "idL", "datestampE", "datestampG", ...), array("idG", "idL", "datestampE", "datestampG", ...), 0, ...) 462 $outputType = $_POST['outputtype']; 463 464 $helper = new statistics_helper(); 465 switch($outputType){ 466 case 'html': 467 $statisticsoutput .= $helper->generate_statistics($surveyid,$summary,$summary,$usegraph,$outputType,'DD',$statlang); 468 break; 469 case 'pdf': 470 $helper->generate_statistics($surveyid,$summary,$summary,$usegraph,$outputType,'I',$statlang); 471 exit; 472 break; |
#5 |
unknown(0): statistics->run("489924", null)
|
#6 |
+
–
C:\limesurvey\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(statistics, array("489924", null)) 102 else if($param->isDefaultValueAvailable()) 103 $ps[]=$param->getDefaultValue(); 104 else 105 return false; 106 } 107 $method->invokeArgs($object,$ps); 108 return true; 109 } 110 } |
#7 |
+
–
C:\limesurvey\application\core\Survey_Common_Action.php(82): CAction->runWithParamsInternal(statistics, ReflectionMethod, array("surveyid" => "489924", "sa" => "index", "iSurveyId" => "489924", "iSurveyID" => "489924")) 77 $oMethod = new ReflectionMethod($this, $sDefault); 78 } 79 80 // We're all good to go, let's execute it 81 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 82 return parent::runWithParamsInternal($this, $oMethod, $params); 83 } 84 85 /** 86 * Some functions have different parameters, which are just an alias of the 87 * usual parameters we're getting in the url. This function just populates |
#8 |
+
–
C:\limesurvey\framework\web\CController.php(309): Survey_Common_Action->runWithParams(array("surveyid" => "489924", "sa" => "index")) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#9 |
+
–
C:\limesurvey\framework\web\CController.php(287): CController->runAction(statistics) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); |
#10 |
+
–
C:\limesurvey\framework\web\CController.php(266): CController->runActionWithFilters(statistics, array()) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#11 |
+
–
C:\limesurvey\application\controllers\AdminController.php(159): CController->run("statistics") 154 Yii::app()->session['redirectopage'] = Yii::app()->request->requestUri; 155 156 $this->redirect($this->createUrl('/admin/authentication/login')); 157 } 158 159 return parent::run($action); 160 } 161 162 /** 163 * Routes all the actions to their respective places 164 * |
#12 |
+
–
C:\limesurvey\framework\web\CWebApplication.php(276): AdminController->run("statistics") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#13 |
+
–
C:\limesurvey\framework\web\CWebApplication.php(135): CWebApplication->runController("admin/statistics/sa/index") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#14 |
+
–
C:\limesurvey\framework\base\CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#15 |
+
–
C:\limesurvey\index.php(178): CApplication->run() 173 * 174 */ 175 require_once BASEPATH . 'yii' . EXT; 176 require_once APPPATH . 'core/LSYii_Application' . EXT; 177 178 Yii::createApplication('LSYii_Application', APPPATH . 'config/config' . EXT)->run(); 179 180 /* End of file index.php */ 181 /* Location: ./index.php */ |