/**
  * 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 = $this->type;
     if ($model->load(Yii::$app->getRequest()->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->name]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Exemple #2
0
 public function testAddNew()
 {
     $model = new AuthItem();
     $model->attributes = ['type' => 1];
     // required
     $this->assertFalse($model->validate());
     $model = new AuthItem();
     $model->attributes = ['name' => 'Tester', 'type' => 1];
     $this->assertTrue($model->validate());
     $model->save();
     $model = new AuthItem();
     $model->attributes = ['name' => 'Tester', 'type' => 1];
     // not unique
     $this->assertFalse($model->validate());
 }