Пример #1
0
 /**
  * Creates a new ServiceBaseInfo model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $this->layout = 'index';
     $model = new ServiceBaseInfo();
     if ($model->load(Yii::$app->request->post()) && $model->addService()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }