/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = AuthAssignment::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['created_at' => $this->created_at]);
     $query->andFilterWhere(['like', 'item_name', $this->item_name])->andFilterWhere(['like', 'user_id', $this->user_id]);
     return $dataProvider;
 }
 /**
  * Finds the AuthAssignment model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $item_name
  * @param string $user_id
  * @return AuthAssignment the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($item_name, $user_id)
 {
     if (($model = AuthAssignment::findOne(['item_name' => $item_name, 'user_id' => $user_id])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Beispiel #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAuthAssignments()
 {
     return $this->hasMany(AuthAssignment::className(), ['item_name' => 'name']);
 }
 public function actionAddrole($id)
 {
     $model = new AuthAssignment();
     $model->user_id = $id;
     $command = Yii::$app->request->post('addroleAction');
     if (isset($command)) {
         $model->load(Yii::$app->request->post());
         $respond = $model->validate();
         if ($respond) {
             $auth = Yii::$app->authManager;
             $role = $auth->getRole($model->item_name);
             $auth->assign($role, $id);
             return $this->redirect(['view', 'id' => $id]);
         } else {
             if ($respond == FALSE) {
                 throw new HttpException(400, serialize($model->errors));
             }
         }
     } else {
         return $this->render('addrole', ['id' => $id, 'model' => $model]);
     }
 }