Пример #1
0
 public function search($params)
 {
     $query = Country::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['country_id' => $this->country_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'country', $this->country]);
     return $dataProvider;
 }
Пример #2
0
 /**
 * Creates data provider instance with search query applied
 *
 * @param array $params
 *
 * @return ActiveDataProvider
 */
 public function search($params)
 {
     $query = CountryModel::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(['country_id' => $this->country_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'country', $this->country]);
     return $dataProvider;
 }
Пример #3
0
 /**
  * Finds the Country model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $country_id
  * @return Country the loaded model
  * @throws HttpException if the model cannot be found
  */
 protected function findModel($country_id)
 {
     if (($model = Country::findOne($country_id)) !== null) {
         return $model;
     } else {
         throw new HttpException(404, 'The requested page does not exist.');
     }
 }
Пример #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCountry()
 {
     return $this->hasOne(\app\modules\sakila\models\Country::className(), ['country_id' => 'country_id']);
 }