예제 #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
 public function getSection()
 {
     return $this->hasOne(Sections::className(), ['id' => 'section_id'])->inverseOf('forums');
 }
예제 #3
0
 /**
  * Finds the Sections model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Sections the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Sections::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }