/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = ActivityBase::find()->where('status != :del', [':del' => 0]); $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, 'uid' => $this->uid, 'feature' => $this->feature, 'start_time' => $this->start_time, 'end_time' => $this->end_time, 'create_time' => $this->create_time, 'update_time' => $this->update_time, 'status' => $this->status]); $query->andFilterWhere(['like', 'subject', $this->subject])->andFilterWhere(['like', 'summary', $this->summary])->andFilterWhere(['like', 'config', $this->config])->andFilterWhere(['like', 'mark', $this->mark]); return $dataProvider; }
/** * Finds the ActivityBase model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return ActivityBase the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = \backend\models\ActivityBase::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }