public function search($params) { $query = FilmActor::find(); $dataProvider = new ActiveDataProvider(['query' => $query]); if (!($this->load($params) && $this->validate())) { return $dataProvider; } $query->andFilterWhere(['actor_id' => $this->actor_id, 'film_id' => $this->film_id, 'last_update' => $this->last_update]); return $dataProvider; }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = FilmActorModel::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(['actor_id' => $this->actor_id, 'film_id' => $this->film_id, 'last_update' => $this->last_update]); return $dataProvider; }
/** * Finds the FilmActor model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $actor_id * @param integer $film_id * @return FilmActor the loaded model * @throws HttpException if the model cannot be found */ protected function findModel($actor_id, $film_id) { if (($model = FilmActor::findOne(['actor_id' => $actor_id, 'film_id' => $film_id])) !== null) { return $model; } else { throw new HttpException(404, 'The requested page does not exist.'); } }
/** * @return \yii\db\ActiveQuery */ public function getFilmActors() { return $this->hasMany(\app\modules\sakila\models\FilmActor::className(), ['film_id' => 'film_id']); }