Example #1
0
 /**
  * Updates an existing Pages model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id
  * @return mixed
  */
 public function actionUpdate($id)
 {
     $model = $this->findModel($id);
     $statusArray = Pages::getPagesStatusArray();
     $categoryArray = Category::getCategoryArray();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('update', ['model' => $model, 'statusArray' => $statusArray, 'categoryArray' => $categoryArray]);
     }
 }