Пример #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 AuthItem(null);
     $model->type = Item::TYPE_PERMISSION;
     if ($model->load(Yii::$app->getRequest()->post()) && $model->save()) {
         MenuHelper::invalidate();
         return $this->redirect(['view', 'id' => $model->name]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Пример #2
0
 /**
  * Creates a new AuthItem model.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new AuthItem();
     if (Yii::$app->request->isPost) {
         $model->load(Yii::$app->request->post());
         Yii::$app->response->format = 'json';
         if ($model->save()) {
             return Yii::$app->params['response']['success'];
         } else {
             return ActiveForm::validate($model);
         }
     } else {
         return $this->renderAjax('create', ['model' => $model, 'authRules' => AuthRule::getAllForLists(), 'types' => $model->getTypes()]);
     }
 }