/mnt/data/shnoulle/nginx/www/master/application/models/User.php(856)
844 $criteria->addCondition('t.created >= \'' . $s2 . '\''); 845 }else{ 846 throw new Exception('wrong date format.'); 847 } 848 }catch (Exception $e){ 849 //could only mean wrong input from user ...reset filter value 850 $this->created=''; 851 } 852 } 853 854 //filter for parentUserName 855 $getParentName = Yii::app()->request->getParam('User'); 856 $getParentName = $getParentName['parentUserName']; 857 if(isset($getParentName) && $getParentName!==null && $getParentName!==''){ 858 $criteria->join = "LEFT JOIN lime_users luparent ON t.parent_id = luparent.uid"; 859 $criteria->compare('luparent.users_name', $getParentName, true, 'OR'); 860 } 861 862 return new CActiveDataProvider($this, array( 863 'criteria'=>$criteria, 864 'pagination' => array( 865 'pageSize' => $pageSize 866 ) 867 )); 868 }
#0 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/views/userManagement/index.php(65): User->search() 60 <div class="container-fluid"> 61 <?php 62 $this->widget('bootstrap.widgets.TbGridView', array( 63 'id' => 'usermanagement--identity-gridPanel', 64 'itemsCssClass' => 'table table-striped items', 65 'dataProvider' => $model->search(), 66 'columns' => $columnDefinition, 67 'filter' => $model, 68 'afterAjaxUpdate' => 'LS.UserManagement.bindButtons', 69 'summaryText' => "<div class='row' style='text-align:left; color:#000'>" 70 ."<div class='col-xs-6 content-left'>".$massiveAction."</div>" |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(126): require("/mnt/data/shnoulle/nginx/www/master/application/views/userManage...") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#2 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CBaseController.php(95): CBaseController->renderInternal("/mnt/data/shnoulle/nginx/www/master/application/views/userManage...",
array("model" => User, "columnDefinition" => array(array("name"
=> "managementCheckbox", "type" => "raw", "header" =>
"<input type='checkbox'
id='usermanagement--action-toggleAllUsers...", "filter" => false),
array("name" => "managementButtons", "type" => "raw", "header"
=> "Action", "filter" => false, ...), array("name" => "uid",
"header" => "Identifiant utilisateur"), array("name" =>
"users_name", "header" => "Nom d’utilisateur"), ...), "pageSize"
=> 20, "formUrl" => "/master/userManagement/index", ...), true)
090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(872): CBaseController->renderFile("/mnt/data/shnoulle/nginx/www/master/application/views/userManage...",
array("model" => User, "columnDefinition" => array(array("name"
=> "managementCheckbox", "type" => "raw", "header" =>
"<input type='checkbox'
id='usermanagement--action-toggleAllUsers...", "filter" => false),
array("name" => "managementButtons", "type" => "raw", "header"
=> "Action", "filter" => false, ...), array("name" => "uid",
"header" => "Identifiant utilisateur"), array("name" =>
"users_name", "header" => "Nom d’utilisateur"), ...), "pageSize"
=> 20, "formUrl" => "/master/userManagement/index", ...), true)
867 */ 868 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 869 { 870 if(($viewFile=$this->getViewFile($view))!==false) 871 { 872 $output=$this->renderFile($viewFile,$data,true); 873 if($processOutput) 874 $output=$this->processOutput($output); 875 if($return) 876 return $output; 877 else |
#4 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(785): CController->renderPartial("index",
array("model" => User, "columnDefinition" => array(array("name"
=> "managementCheckbox", "type" => "raw", "header" =>
"<input type='checkbox'
id='usermanagement--action-toggleAllUsers...", "filter" => false),
array("name" => "managementButtons", "type" => "raw", "header"
=> "Action", "filter" => false, ...), array("name" => "uid",
"header" => "Identifiant utilisateur"), array("name" =>
"users_name", "header" => "Nom d’utilisateur"), ...), "pageSize"
=> 20, "formUrl" => "/master/userManagement/index", ...), true)
780 */ 781 public function render($view,$data=null,$return=false) 782 { 783 if($this->beforeRender($view)) 784 { 785 $output=$this->renderPartial($view,$data,true); 786 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 787 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 788 789 $this->afterRender($view,$output); 790 |
#5 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/UserManagementController.php(70): CController->render("index",
array("model" => User, "columnDefinition" => array(array("name"
=> "managementCheckbox", "type" => "raw", "header" =>
"<input type='checkbox'
id='usermanagement--action-toggleAllUsers...", "filter" => false),
array("name" => "managementButtons", "type" => "raw", "header"
=> "Action", "filter" => false, ...), array("name" => "uid",
"header" => "Identifiant utilisateur"), array("name" =>
"users_name", "header" => "Nom d’utilisateur"), ...), "pageSize"
=> 20, "formUrl" => "/master/userManagement/index", ...)) 65 return $this->render('index', [ 66 'model' => $aData['model'], 67 'columnDefinition' => $aData['columnDefinition'], 68 'pageSize' => $aData['pageSize'], 69 'formUrl' => $aData['formUrl'], 70 'massiveAction' => $aData['massiveAction'], 71 ]); 72 } 73 74 /** 75 * Open modal to edit, or create a new user |
#6 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/actions/CInlineAction.php(49): UserManagementController->actionIndex() 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 } |
#7 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): CInlineAction->runWithParams(array()) 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; |
#8 |
+
–
/mnt/data/shnoulle/nginx/www/master/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(); |
#9 |
+
–
/mnt/data/shnoulle/nginx/www/master/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); |
#10 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/LSBaseController.php(140): CController->run("index") 135 $this->redirect(array('/admin/authentication/sa/login')); 136 } 137 } 138 } 139 140 parent::run($action); 141 } 142 143 /** 144 * Load and set session vars 145 * |
#11 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): LSBaseController->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))); |
#12 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): CWebApplication->runController("userManagement/index") 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. |
#13 |
+
–
/mnt/data/shnoulle/nginx/www/master/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 /** |
#14 |
+
–
/mnt/data/shnoulle/nginx/www/master/index.php(182): CApplication->run() 177 require_once APPPATH . 'core/LSYii_Application' . EXT; 178 179 $config = require_once(APPPATH . 'config/internal' . EXT); 180 181 Yii::$enableIncludePath = false; 182 Yii::createApplication('LSYii_Application', $config)->run(); 183 184 /* End of file index.php */ 185 /* Location: ./index.php */ |