Пример #1
0
 /**
  * Creates a new NewsCategory model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate($parent_id = null)
 {
     $model = new NewsCategory();
     if (Yii::$app->request->isPost) {
         foreach (Yii::$app->request->post('NewsCategoryTranslation', []) as $language => $data) {
             foreach ($data as $attribute => $translation) {
                 $model->translate($language)->{$attribute} = $translation;
             }
         }
     }
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         $model->status = NewsCategory::STATUS_ACTIVE;
         if ($parent_id) {
             $model->parent_id = $parent_id;
         }
         return $this->render('create', ['model' => $model]);
     }
 }