/**
  * Creates a new FormsChield model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new FormsChield();
     //        if ($form_id)
     //            $model->form_id = $form_id;
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['forms/update', 'id' => $model->form_id, 'viewer_id' => $_GET['viewer_id']]);
     } else {
         return $this->renderAjax('create', ['model' => $model]);
         //            return $this->render('create', [
         //                'model' => $model,
         //            ]);
     }
 }