/** * Displays a single Meeting model. * @param integer $id * @return mixed */ public function actionView($id) { $timeProvider = new ActiveDataProvider(['query' => MeetingTime::find()->where(['meeting_id' => $id])]); $noteProvider = new ActiveDataProvider(['query' => MeetingNote::find()->where(['meeting_id' => $id])]); $placeProvider = new ActiveDataProvider(['query' => MeetingPlace::find()->where(['meeting_id' => $id])]); $participantProvider = new ActiveDataProvider(['query' => Participant::find()->where(['meeting_id' => $id])]); $model = $this->findModel($id); $model->prepareView(); return $this->render('view', ['model' => $model, 'participantProvider' => $participantProvider, 'timeProvider' => $timeProvider, 'noteProvider' => $noteProvider, 'placeProvider' => $placeProvider]); }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = MeetingNote::find(); $dataProvider = new ActiveDataProvider(['query' => $query, 'sort' => ['defaultOrder' => ['created_at' => SORT_DESC]]]); $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, 'meeting_id' => $this->meeting_id, 'posted_by' => $this->posted_by, 'status' => $this->status, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at]); $query->andFilterWhere(['like', 'note', $this->note]); return $dataProvider; }
/** * @return \yii\db\ActiveQuery */ public function getMeetingNotes() { return $this->hasMany(MeetingNote::className(), ['meeting_id' => 'id']); }
/** * Finds the MeetingNote model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return MeetingNote the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = MeetingNote::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }