* $dataProvider=new CActiveDataProvider('Post', array( * 'criteria'=>array( * 'condition'=>'status=1', * 'order'=>'create_time DESC', * 'with'=>array('author'), * ), * 'countCriteria'=>array( * 'condition'=>'status=1', * // 'order' and 'with' clauses have no meaning for the count query * ), * 'pagination'=>array( * 'pageSize'=>20, * ), * )); * // $dataProvider->getData() will return a list of Post objects *
Post::model()
Post::model()->published()