PHP code example of arogachev / yii2-rbac
1. Go to this page and download the library: Download arogachev/yii2-rbac library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
arogachev / yii2-rbac example snippets
return [
[
'name' => 'default',
'description' => 'Default',
],
[
'name' => 'admin',
'description' => 'Administrator',
],
[
'name' => 'operator',
'description' => 'Operator',
],
];
'authManager' => [
'class' => 'yii\rbac\DbManager',
'defaultRoles' => ['default'],
],
return [
[
'name' => 'users.manage',
'description' => 'Users management',
],
[
'name' => 'users.avatar.upload',
'description' => 'Upload avatar for user',
'rule' => 'arogachev\rbac\rules\CorrespondingUserRule',
],
[
'name' => 'users.avatar.upload.all',
'description' => 'Upload avatar for any user',
],
[
'name' => 'users.password.change',
'description' => 'Change password for user',
'rule' => 'arogachev\rbac\rules\CorrespondingUserRule',
],
[
'name' => 'users.password.change.all',
'description' => 'Change password for any user',
],
[
'name' => 'dispatching-room.access',
'description' => 'Access to dispatching room',
],
[
'name' => 'settings.manage',
'description' => 'Settings management',
],
[
'name' => 'sessions.access',
'description' => 'Sessions management',
],
];
return [
'default' => [
'users.password.change',
],
'admin' => [
'users.manage',
'users.avatar.upload.all',
'users.password.change.all',
'settings.manage',
'sessions.access',
],
'operator' => [
'users.avatar.upload',
'dispatching-room.access',
'chat.access',
],
];
'controllerMap' => [
'rbac' => [
'class' => 'arogachev\rbac\controllers\RbacController',
'parserOptions' => [
'configPath' => '@common/rbac/data',
],
],
],
/**
* @param integer $id
* @return string|\yii\web\Response
* @throws BadRequestHttpException
* @throws NotFoundHttpException
*/
public function actionUploadAvatar($id)
{
$model = $this->findModel($id);
if (!Yii::$app->user->can('users.avatar.upload.all') && !Yii::$app->user->can('users.avatar.upload', [
'model' => $model,
'attribute' => 'id',
])) {
throw new BadRequestHttpException('You are not allowed to upload avatar for this user.');
}
...
}
use arogachev\rbac\models\AssignRoleToUserForm;
...
/**
* Assign RBAC role to user
* @param integer $id
* @return string|\yii\web\Response
* @throws NotFoundHttpException
*/
public function actionAssignRole($id)
{
$user = $this->findModel($id);
$model = new AssignRoleToUserForm(['user' => $user]);
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
$model->assignRole();
return $this->redirect('index');
}
return $this->render('@rbac/views/users/assign-role', ['model' => $model]);
}
[
'class' => ActionColumn::className(),
'template' => '{view} {update} {assign-role} {delete}',
'buttons' => [
'assign-role' => function ($url, $model, $key) {
return Html::a('<span class="glyphicon glyphicon-link"></span>', $url, [
'title' => 'Assign role',
'aria-label' => 'Assign role',
'data-pjax' => '0',
]);
},
],
],
php yii rbac