C:\etc\Apache\htdocs\MSSQL\framework\db\ar\CActiveRecord.php(2264)
2252 private $_model; 2253 2254 /** 2255 * Constructor. 2256 * @param CActiveRecord $model the model instance 2257 */ 2258 public function __construct($model) 2259 { 2260 $this->_model=$model; 2261 2262 $tableName=$model->tableName(); 2263 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null) 2264 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.', 2265 array('{class}'=>get_class($model),'{table}'=>$tableName))); 2266 if($table->primaryKey===null) 2267 { 2268 $table->primaryKey=$model->primaryKey(); 2269 if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey])) 2270 $table->columns[$table->primaryKey]->isPrimaryKey=true; 2271 else if(is_array($table->primaryKey)) 2272 { 2273 foreach($table->primaryKey as $name) 2274 { 2275 if(isset($table->columns[$name])) 2276 $table->columns[$name]->isPrimaryKey=true;
#0 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\db\ar\CActiveRecord.php(379): CActiveRecordMetaData->__construct(Survey_timings) 374 if(isset(self::$_models[$className])) 375 return self::$_models[$className]; 376 else 377 { 378 $model=self::$_models[$className]=new $className(null); 379 $model->_md=new CActiveRecordMetaData($model); 380 $model->attachBehaviors($model->behaviors()); 381 return $model; 382 } 383 } 384 |
#1 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\db\ar\CActiveRecord.php(394): CActiveRecord::model("Survey_timings") 389 public function getMetaData() 390 { 391 if($this->_md!==null) 392 return $this->_md; 393 else 394 return $this->_md=self::model(get_class($this))->_md; 395 } 396 397 /** 398 * Refreshes the meta data for this AR class. 399 * By calling this method, this AR class will regenerate the meta data needed. |
#2 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\db\ar\CActiveRecord.php(78): CActiveRecord->getMetaData() 73 if($scenario===null) // internally used by populateRecord() and model() 74 return; 75 76 $this->setScenario($scenario); 77 $this->setIsNewRecord(true); 78 $this->_attributes=$this->getMetaData()->attributeDefaults; 79 80 $this->init(); 81 82 $this->attachBehaviors($this->behaviors()); 83 $this->afterConstruct(); |
#3 |
+
–
C:\etc\Apache\htdocs\MSSQL\application\helpers\expressions\em_manager_helper.php(4469): CActiveRecord->__construct() 4464 $message .= $this->gT("Unable to insert record into survey table"); // TODO - add SQL error? 4465 } 4466 //Insert Row for Timings, if needed 4467 if ($this->surveyOptions['savetimings']) { 4468 Survey_timings::sid($this->sid); 4469 $oSurveyTimings = new Survey_timings; 4470 4471 $tdata = array( 4472 'id'=>$srid, 4473 'interviewtime'=>0 4474 ); |
#4 |
+
–
C:\etc\Apache\htdocs\MSSQL\application\helpers\expressions\em_manager_helper.php(4299): LimeExpressionManager->_UpdateValuesInDatabase(array(), false) 4294 continue; 4295 } 4296 else 4297 { 4298 // display new group 4299 $message .= $LEM->_UpdateValuesInDatabase($updatedValues,false); 4300 $LEM->runtimeTimings[] = array(__METHOD__,(microtime(true) - $now)); 4301 $LEM->lastMoveResult = array( 4302 'finished'=>false, 4303 'message'=>$message, 4304 'gseq'=>$LEM->currentGroupSeq, |
#5 |
+
–
C:\etc\Apache\htdocs\MSSQL\application\helpers\SurveyRuntimeHelper.php(190): LimeExpressionManager::NavigateForwards() 185 unset($moveResult); // so display welcome page again 186 } 187 } 188 if (isset($move) && $move == "movenext") 189 { 190 $moveResult = LimeExpressionManager::NavigateForwards(); 191 } 192 if (isset($move) && ($move == 'movesubmit')) 193 { 194 if ($surveyMode == 'survey') 195 { |
#6 |
+
–
C:\etc\Apache\htdocs\MSSQL\application\controllers\survey\index.php(662): SurveyRuntimeHelper->run("518477", array("surveyid" => "518477", "thissurvey" => array("surveyls_survey_id" => "518477", "surveyls_language" => "en", "surveyls_title" => "Patient Connect - PHQ", "surveyls_description" => "", ...), "thisstep" => "0", "clienttoken" => "ngd6ij57qcattj8ixerbmkam2", ...)) 657 //Send local variables to the appropriate survey type 658 unset($redata); 659 $redata = compact(array_keys(get_defined_vars())); 660 Yii::import('application.helpers.SurveyRuntimeHelper'); 661 $tmp = new SurveyRuntimeHelper(); 662 $tmp->run($surveyid,$redata); 663 664 if (isset($_POST['saveall']) || isset($flashmessage)) 665 { 666 echo "<script type='text/javascript'> $(document).ready( function() { alert('".$clang->gT("Your responses were successfully saved.","js")."');}) </script>"; 667 } |
#7 |
+
–
C:\etc\Apache\htdocs\MSSQL\application\controllers\survey\index.php(18): index->action() 13 14 class index extends CAction { 15 16 public function run() 17 { 18 $this->action(); 19 } 20 21 function action() 22 { 23 global $surveyid; |
#8 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\web\actions\CAction.php(75): index->run() 70 { 71 $method=new ReflectionMethod($this, 'run'); 72 if($method->getNumberOfParameters()>0) 73 return $this->runWithParamsInternal($this, $method, $params); 74 else 75 return $this->run(); 76 } 77 78 /** 79 * Executes a method of an object with the supplied named parameters. 80 * This method is internally used. |
#9 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\web\CController.php(309): CAction->runWithParams(array()) 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; |
#10 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\web\CController.php(287): CController->runAction(index) 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(); |
#11 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\web\CController.php(266): CController->runActionWithFilters(index, 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); |
#12 |
+
–
C:\etc\Apache\htdocs\MSSQL\framework\web\CWebApplication.php(276): CController->run("index") 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:\etc\Apache\htdocs\MSSQL\framework\web\CWebApplication.php(135): CWebApplication->runController("survey/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:\etc\Apache\htdocs\MSSQL\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:\etc\Apache\htdocs\MSSQL\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 */ |