/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Referral::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(['like', '_id', $this->_id])->andFilterWhere(['like', 'user_id', $this->user_id])->andFilterWhere(['like', 'patient_id', $this->patient_id])->andFilterWhere(['like', 'refer_to', $this->refer_to])->andFilterWhere(['like', 'status', $this->status]); return $dataProvider; }
/** * Finds the Referral model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $_id * @return Referral the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Referral::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }