Example #1
0
 /**
  * Creates a new AuthItem model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new BizRule(null);
     if ($model->load(Yii::$app->request->post(), '') && $model->save()) {
         MenuHelper::invalidate();
     }
     return $model;
 }
 /**
  * Creates a new AuthItem model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new BizRule(null);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         MenuHelper::invalidate();
         return $this->redirect(['view', 'id' => $model->name]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }