Beispiel #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Account::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'user_id' => $this->user_id, 'parent_id' => $this->parent_id, 'virtual' => $this->virtual]);
     $query->andFilterWhere(['like', 'type', $this->type])->andFilterWhere(['like', 'currency', $this->currency])->andFilterWhere(['like', 'title', $this->title]);
     return $dataProvider;
 }
Beispiel #2
0
 public function actionIndex()
 {
     $models = Account::find()->where(['user_id' => Yii::$app->user->getId(), 'type' => ['credit', 'creditcard'], 'virtual' => 0])->all();
     return $this->render('index', ['models' => $models]);
 }