document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public function actionIndex()
  2. {
  3.     $criteria = new CDbCriteria();
  4.     $criteria->group = \'title\';
  5.     $criteria->order = \'created DESC\';
  6.  
  7.     $dataProvider=new CActiveDataProvider(\'Page\', array(
  8.       \'pagination\'=>array(
  9.         \'pageSize\'=>self::PAGE_SIZE,
  10.       ),
  11.       \'criteria\' => $criteria,
  12.     ));
  13.  
  14.     $this->render(\'index\',array(
  15.       \'dataProvider\'=>$dataProvider,
  16.     ));
  17. }
');