示例#1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Estate::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['user_id' => Yii::$app->user->identity->getId(), 'street_id' => $this->street_id, 'apps' => $this->apps]);
     $query->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'house', $this->house]);
     //            ->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }
示例#2
0
 /**
  * Finds the Estate model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * If the model is not accessible, a 403 HTTP exception will be thrown.
  *
  * @param int $id
  * @return Estate
  * @throws ForbiddenHttpException
  * @throws NotFoundHttpException
  */
 protected function findEstate($id)
 {
     /** @var Estate $model */
     $model = Estate::findOne($id);
     if (is_null($model)) {
         throw new NotFoundHttpException(Yii::t('app', 'ERROR_WRONG_ID'));
     }
     if (!$model->isAccessibleForCurrentUser()) {
         throw new ForbiddenHttpException(Yii::t('app', 'ERROR_FORBIDDEN'));
     }
     return $model;
 }
示例#3
0
 /**
  * Getter current Estate
  *
  * @return Estate
  */
 public function getEstate()
 {
     return Estate::findOne($this->estate_id);
 }