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