예제 #1
0
 /**
  * Updates an existing Forums 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);
     $sections = Sections::find()->select(['name'])->indexBy('id')->column();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('update', ['model' => $model, 'sections' => $sections]);
     }
 }
예제 #2
0
 /**
  * Lists all Sections models.
  * @return mixed
  */
 public function actionIndex()
 {
     $dataProvider = new ActiveDataProvider(['query' => Sections::find()]);
     return $this->render('index', ['dataProvider' => $dataProvider]);
 }