/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = OrganizationsLog::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(['log_id' => $this->log_id, 'organization_id' => $this->organization_id, 'user_id' => $this->user_id, 'datetime' => $this->datetime]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'address', $this->address])->andFilterWhere(['like', 'city', $this->city])->andFilterWhere(['like', 'postal_code', $this->postal_code])->andFilterWhere(['like', 'website', $this->website])->andFilterWhere(['like', 'description', $this->description])->andFilterWhere(['like', 'logo_filepath', $this->logo_filepath])->andFilterWhere(['like', 'state', $this->state]); return $dataProvider; }
/** * @return \yii\db\ActiveQuery */ public function getOrganizationsLogs() { return $this->hasMany(OrganizationsLog::className(), ['organization_id' => 'organization_id']); }