/**
 * Creates data provider instance with search query applied
 *
 * @param array $params
 *
 * @return ActiveDataProvider
 */
 public function search($params)
 {
     $query = LocationCurrent::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(['id' => $this->id, 'user_id' => $this->user_id, 'event_id' => $this->event_id, 'is_origin' => $this->is_origin, 'latitude' => $this->latitude, 'longitude' => $this->longitude, 'occur_at' => $this->occur_at, 'created_at' => $this->created_at]);
     $query->andFilterWhere(['like', 'title', $this->title]);
     return $dataProvider;
 }
 /**
  * @return null|LocationCurrent
  */
 public function getLocationCurrent()
 {
     if (!$this->_current) {
         $this->_current = LocationCurrent::findOne($this->location_current_id);
     }
     return $this->_current;
 }
Example #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLocationCurrents()
 {
     return $this->hasMany(\common\models\location\LocationCurrent::className(), ['event_id' => 'id']);
 }
 /**
  * Finds the LocationCurrent model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return LocationCurrent the loaded model
  * @throws HttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = LocationCurrent::findOne($id)) !== null) {
         return $model;
     } else {
         throw new HttpException(404, 'The requested page does not exist.');
     }
 }