/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = LayersConfrontation::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, 'viewer_id' => $_GET['viewer_id']]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'layer', $this->layer])->andFilterWhere(['like', 'description_field', $this->description_field])->andFilterWhere(['like', 'regulement_field', $this->regulement_field]); return $dataProvider; }
/** * @return \yii\db\ActiveQuery */ public function getLayersConfrontations() { return $this->hasMany(LayersConfrontation::className(), ['confrontation_id' => 'id']); }
/** * Finds the LayersConfrontation model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return LayersConfrontation the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = LayersConfrontation::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }