Exemplo n.º 1
0
 /**
  * Lists all ItemProp models.
  * @return mixed
  */
 public function actionIndex()
 {
     $searchModel = new ItemPropSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
 }
Exemplo n.º 2
0
 /**
  * Lists all ItemProp models.
  * @return mixed
  */
 public function actionIndex()
 {
     $searchModel = Yii::createObject(ItemPropSearch::className());
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
 }