/var/www/html/protected/controllers/SiteController.php(13913)
13901 $data = kaushalaajivikaemployerdata($page, $limit,$type,$district); 13902 $data = json_decode($data); 13903 13904 // $filters = Yii::app()->request->getParam('filter', array()); 13905 // $filteredData = applyFilters($data->data, $filters); 13906 // print_r($filteredData);exit; 13907 $dataProvider = new CArrayDataProvider($data->data, [ 13908 'keyField' => 'company_name', 13909 'pagination' => [ 13910 'pageSize' => $limit, 13911 'currentPage' => $page - 1, // CArrayDataProvider is 0-based 13912 ], 13913 'totalItemCount' => $data->total ?? count($data->data), 13914 13915 ]); 13916 // echo "<pre>"; 13917 // print_r($dataProvider->getData());exit; 13918 13919 13920 13921 $this->render( 13922 'getKAEmployerList', 13923 [ 13924 'dataProvider' => $dataProvider, 13925 'pageSize' => $limit,
| #0 |
+
–
/var/www/html/framework/web/actions/CInlineAction.php(49): SiteController->actionGetEmpListKA() 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 } |
| #1 |
+
–
/var/www/html/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; |
| #2 |
+
–
/var/www/html/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(); |
| #3 |
+
–
/var/www/html/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); |
| #4 |
+
–
/var/www/html/framework/web/CWebApplication.php(282): CController->run("getEmpListKA") 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))); |
| #5 |
+
–
/var/www/html/framework/web/CWebApplication.php(141): CWebApplication->runController("site/getEmpListKA") 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. |
| #6 |
+
–
/var/www/html/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 /** |
| #7 |
+
–
/var/www/html/index.php(13): CApplication->run() 08 defined('YII_DEBUG') or define('YII_DEBUG',true); 09 // specify how many levels of call stack should be shown in each log message 10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 11 12 require_once($yii); 13 Yii::createWebApplication($config)->run(); |