joris

MainController

Sep 23rd, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. $criteria=new CDbCriteria();
  2. $criteria->order = 'id ASC';
  3.  
  4. $count=MerchantBatchCode::model()->count($criteria);
  5. $pages=new CPagination($count);
  6. $pages->pageSize=50;
  7. $pages->applyLimit($criteria);
  8.  
  9. $model= MerchantBatchCode::model()->findAll($criteria);
  10.  
  11. $this->render('voucher',array(
  12.      'allData'=>$model,
  13.      'pages' => $pages,
  14.      'total'=>$count
  15. ));
Advertisement
Add Comment
Please, Sign In to add comment