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