Since: 1.0
Author: Misbahul D Munir (misbahuldmunir@gmail.com)
Inheritance: extends yii\base\Model
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 AuthItem(null);
     if ($model->load(Yii::$app->getRequest()->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 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]);
     }
 }
 /**
  * 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]);
     }
 }
 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());
 }
Example #5
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getItemName()
 {
     return $this->hasOne(AuthItem::className(), ['name' => 'item_name']);
 }