G:\Apache24\htdocs\limesurvey\application\controllers\admin\useraction.php(726)
714 return false; 715 } 716 } 717 718 private function _refreshtemplates() 719 { 720 $template_a = getTemplateList(); 721 foreach ($template_a as $tp => $fullpath) { 722 // check for each folder if there is already an entry in the database 723 // if not create it with current user as creator (user with rights "create user" can assign template rights) 724 $result = Template::model()->findByPk($tp); 725 726 if (count($result) == 0) { 727 $post = new Template; 728 $post->folder = $tp; 729 $post->owner_id = Yii::app()->session['loginID']; 730 731 try { 732 $post->save(); 733 } catch (Exception $ex) { 734 Yii::app()->setFlashMessage( 735 sprintf( 736 gT('Could not save theme %s: %s'), 737 $tp, 738 $ex->getMessage()
#0 |
+
–
G:\Apache24\htdocs\limesurvey\application\controllers\admin\useraction.php(536): UserAction->_refreshtemplates() 531 if (!$oUser) { 532 // @todo : review to send a 403 533 $this->getController()->redirect(array("admin/user/sa/index")); 534 } 535 $aData['oUser'] = $oUser; 536 $this->_refreshtemplates(); 537 $templaterights = array(); 538 539 $trights = Permission::model()->findAllByAttributes(array('uid' => $oUser->uid, 'entity'=>'template')); 540 foreach ($trights as $srow) { 541 $templaterights[$srow["permission"]] = array("use"=>$srow["read_p"]); |
#1 |
unknown(0): UserAction->setusertemplates()
|
#2 |
+
–
G:\Apache24\htdocs\limesurvey\framework\web\actions\CAction.php(109): ReflectionMethod->invokeArgs(UserAction, array()) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#3 |
+
–
G:\Apache24\htdocs\limesurvey\application\core\Survey_Common_Action.php(83): CAction->runWithParamsInternal(UserAction, ReflectionMethod, array("sa" => "setusertemplates")) 78 $oMethod = new ReflectionMethod($this, $sDefault); 79 } 80 81 // We're all good to go, let's execute it 82 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 83 return parent::runWithParamsInternal($this, $oMethod, $params); 84 } 85 86 /** 87 * Some functions have different parameters, which are just an alias of the 88 * usual parameters we're getting in the url. This function just populates |
#4 |
+
–
G:\Apache24\htdocs\limesurvey\framework\web\CController.php(308): Survey_Common_Action->runWithParams(array("sa" => "setusertemplates")) 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; |
#5 |
+
–
G:\Apache24\htdocs\limesurvey\framework\web\CController.php(286): CController->runAction(UserAction) 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(); |
#6 |
+
–
G:\Apache24\htdocs\limesurvey\framework\web\CController.php(265): CController->runActionWithFilters(UserAction, 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); |
#7 |
+
–
G:\Apache24\htdocs\limesurvey\application\controllers\AdminController.php(158): CController->run("user") 153 $this->redirect(array('/admin/authentication/sa/login')); 154 } 155 } 156 } 157 158 return parent::run($action); 159 } 160 161 /** 162 * Routes all the actions to their respective places 163 * |
#8 |
+
–
G:\Apache24\htdocs\limesurvey\framework\web\CWebApplication.php(282): AdminController->run("user") 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))); |
#9 |
+
–
G:\Apache24\htdocs\limesurvey\framework\web\CWebApplication.php(141): CWebApplication->runController("admin/user/sa/setusertemplates") 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. |
#10 |
+
–
G:\Apache24\htdocs\limesurvey\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 /** |
#11 |
+
–
G:\Apache24\htdocs\limesurvey\index.php(194): CApplication->run() 189 require_once APPPATH . 'core/LSYii_Application' . EXT; 190 191 $config = require_once(APPPATH . 'config/internal' . EXT); 192 193 Yii::$enableIncludePath = false; 194 Yii::createApplication('LSYii_Application', $config)->run(); 195 196 /* End of file index.php */ 197 /* Location: ./index.php */ |