Exemplo n.º 1
0
 public function actionIndex()
 {
     $criteria = new CDbCriteria();
     $criteria->select = '*';
     $criteria->order = 'category_id ASC, name ASC';
     $this->allRec = SubCategory::model()->findAll($criteria);
     $this->render('index');
 }