/media/shnoulle/data/webdev/ls5/application/helpers/admin/import_helper.php(122)
110 } 111 } 112 113 if (isset($xml->group_l10ns->rows->row)) { 114 foreach ($xml->group_l10ns->rows->row as $row) { 115 $insertdata = array(); 116 foreach ($row as $key => $value) { 117 $insertdata[(string) $key] = (string) $value; 118 } 119 unset($insertdata['id']); 120 // now translate any links 121 $insertdata['group_name'] = translateLinks('survey', $iOldSID, $iNewSID, $insertdata['group_name']); 122 $insertdata['description'] = translateLinks('survey', $iOldSID, $iNewSID, $insertdata['description']); 123 if (isset($aGIDReplacements[$insertdata['gid']])) { 124 $insertdata['gid'] = $aGIDReplacements[$insertdata['gid']]; 125 } else { 126 continue; //Skip invalid group ID 127 } 128 $oQuestionGroupL10n = new QuestionGroupL10n(); 129 $oQuestionGroupL10n->setAttributes($insertdata, false); 130 $oQuestionGroupL10n->save(); 131 } 132 } 133 134 // Import questions table ===================================================================================
#0 |
+
–
/media/shnoulle/data/webdev/ls5/application/controllers/QuestionGroupsAdministrationController.php(453): XMLImportGroup("/media/shnoulle/data/webdev/ls5/tmp/aq27cxee9de89npmsedi", 954741, false) 448 // IF WE GOT THIS FAR, THEN THE FILE HAS BEEN UPLOADED SUCCESFULLY 449 if (strtolower($sExtension) == 'lsg') { 450 $aImportResults = XMLImportGroup( 451 $sFullFilepath, 452 $iSurveyID, 453 (App()->request->getPost('translinksfields') == '1') 454 ); 455 } else { 456 App()->user->setFlash('error', gT("Unknown file extension")); 457 $this->redirect(array('questionGroupsAdministration/importview/surveyid/' . $surveyid)); 458 } |
#1 |
+
–
/media/shnoulle/data/webdev/ls5/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(49): QuestionGroupsAdministrationController->actionImport() 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 } |
#2 |
+
–
/media/shnoulle/data/webdev/ls5/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("r" => "questionGroupsAdministration/import")) 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; |
#3 |
+
–
/media/shnoulle/data/webdev/ls5/vendor/yiisoft/yii/framework/web/CController.php(286): CController->runAction(CInlineAction) 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(); |
#4 |
+
–
/media/shnoulle/data/webdev/ls5/vendor/yiisoft/yii/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, 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); |
#5 |
+
–
/media/shnoulle/data/webdev/ls5/application/controllers/LSBaseController.php(145): CController->run("import") 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 * |
#6 |
+
–
/media/shnoulle/data/webdev/ls5/vendor/yiisoft/yii/framework/web/CWebApplication.php(282): LSBaseController->run("import") 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))); |
#7 |
+
–
/media/shnoulle/data/webdev/ls5/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("questionGroupsAdministration/import") 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. |
#8 |
+
–
/media/shnoulle/data/webdev/ls5/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 /** |
#9 |
+
–
/media/shnoulle/data/webdev/ls5/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 */ |