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