Skip to content

Instantly share code, notes, and snippets.

@MasterHans
Last active August 28, 2021 10:33
Show Gist options
  • Save MasterHans/bc22335d16fff551540d99353c99a586 to your computer and use it in GitHub Desktop.
Save MasterHans/bc22335d16fff551540d99353c99a586 to your computer and use it in GitHub Desktop.
Передаём критерии (набор параметров для sql запроса) в DataProvider , который мы вставим в Грид (или Лист) во вью
Controller:
$dataProvider=new CActiveDataProvider('Comment', array(
'criteria'=>array(
'with'=>'post',
'order'=>'t.status, t.create_time DESC',
),
));
$this->render('index',array(
'dataProvider'=>$dataProvider,
));
View:
<h1>Comments</h1>
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
)); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment