search(); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider ]); } /** * Creates a new note model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionCreate() { $model = new Note(); if ($model->load(\Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } return $this->render('create', [ 'model' => $model ]); } /** * Displays a single note model. * @param integer $id * @return mixed * @throws NotFoundHttpException if the model cannot be found */ public function actionView($id) { $additionalDataProvider = new ActiveDataProvider([ 'query' => FieldsValueNew::find() ->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_NOTE]) ->orderBy('order'), 'pagination' => [ 'pageSize' => 200, ], ]); return $this->render('view', [ 'model' => Note::findOne($id), 'additionalDataProvider' => $additionalDataProvider ]); } public function actionUpdate($id) { $model = $this->findModel($id); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } return $this->render('update', [ 'model' => $model, ]); } /** * Deletes an existing Note model. * If deletion is successful, the browser will be redirected to the 'index' page. * @param integer $id * @return mixed * @throws NotFoundHttpException if the model cannot be found */ public function actionDelete($id) { $this->findModel($id)->delete(); return $this->redirect(['index']); } /** * Finds the note model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Note the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Note::findOne($id)) !== null) { return $model; } throw new NotFoundHttpException('The requested page does not exist.'); } }