Exemplo n.º 1
0
 /**
  * Creates a new Slide model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate($slider_id = '')
 {
     $model = new Slide();
     if (Yii::$app->request->isPost) {
         foreach (Yii::$app->request->post('SlideTranslation', []) 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 {
         if (!empty($slider_id)) {
             $model->slider_id = $slider_id;
         }
         return $this->render('create', ['model' => $model]);
     }
 }