Esempio n. 1
0
 public function search($params)
 {
     $query = Address::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['address_id' => $this->address_id, 'city_id' => $this->city_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'address', $this->address])->andFilterWhere(['like', 'address2', $this->address2])->andFilterWhere(['like', 'district', $this->district])->andFilterWhere(['like', 'postal_code', $this->postal_code])->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }
Esempio n. 2
0
 /**
 * Creates data provider instance with search query applied
 *
 * @param array $params
 *
 * @return ActiveDataProvider
 */
 public function search($params)
 {
     $query = AddressModel::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(['address_id' => $this->address_id, 'city_id' => $this->city_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'address', $this->address])->andFilterWhere(['like', 'address2', $this->address2])->andFilterWhere(['like', 'district', $this->district])->andFilterWhere(['like', 'postal_code', $this->postal_code])->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }
Esempio n. 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAddress()
 {
     return $this->hasOne(\app\modules\sakila\models\Address::className(), ['address_id' => 'address_id']);
 }
 /**
  * Finds the Address model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $address_id
  * @return Address the loaded model
  * @throws HttpException if the model cannot be found
  */
 protected function findModel($address_id)
 {
     if (($model = Address::findOne($address_id)) !== null) {
         return $model;
     } else {
         throw new HttpException(404, 'The requested page does not exist.');
     }
 }
Esempio n. 5
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAddresses()
 {
     return $this->hasMany(\app\modules\sakila\models\Address::className(), ['city_id' => 'city_id']);
 }