Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
7f74e953
Commit
7f74e953
authored
May 02, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3322 from vova07/rbac-docs-fix
[skip ci] Сheck if user is authenticated in RBAC UserGroupRule.
parents
0880656b
2098c624
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
security-authorization.md
docs/guide/security-authorization.md
+10
-8
No files found.
docs/guide/security-authorization.md
View file @
7f74e953
...
...
@@ -181,7 +181,7 @@ more special *tree* hierarchy. While a role can contain a permission, it is not
### Configuring RBAC Manager
Before we set off to define authorization data and perform access checking, we need to configure the
[
[yii\base\Application::authManager|authManager
]
] application component. Yii provides two types of authorization managers:
[
[yii\base\Application::authManager|authManager
]
] application component. Yii provides two types of authorization managers:
[
[yii\rbac\PhpManager
]
] and
[
[yii\rbac\DbManager
]
]. The former uses a PHP script file to store authorization
data, while the latter stores authorization data in database. You may consider using the former if your application
does not require very dynamic role and permission management.
...
...
@@ -416,6 +416,7 @@ You can create set up the RBAC data as follows,
```php
namespace app\rbac;
use Yii;
use yii\rbac\Rule;
/**
...
...
@@ -427,14 +428,15 @@ class UserGroupRule extends Rule
public function execute($user, $item, $params)
{
$group = \Yii::$app->user->identity->group;
if ($item->name === 'admin') {
return $group == 1;
} elseif ($item->name === 'author') {
return $group == 1 || $group == 2;
} else {
return false;
if (!Yii::$app->user->isGuest) {
$group = Yii::$app->user->identity->group;
if ($item->name === 'admin') {
return $group == 1;
} elseif ($item->name === 'author') {
return $group == 1 || $group == 2;
}
}
return false;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment