/**
  * Creates a new Option model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  *
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Option();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     }
     return $this->render('create', ['model' => $model]);
 }
 /**
  * Creates a new Option model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Option();
     $model->template_id = Yii::$app->request->get('template_id');
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         Yii::$app->getSession()->setFlash('option-create-success');
         return $this->redirect(['/template/update', 'id' => $model->template_id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }