public function search($params)
 {
     $query = Actor::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         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;
 }
Exemple #2
0
 /**
 * 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;
 }
Exemple #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getActors()
 {
     return $this->hasMany(\app\modules\sakila\models\Actor::className(), ['actor_id' => 'actor_id'])->viaTable('film_actor', ['film_id' => 'film_id']);
 }
Exemple #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getActor()
 {
     return $this->hasOne(\app\modules\sakila\models\Actor::className(), ['actor_id' => 'actor_id']);
 }
 /**
  * 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.');
     }
 }