-
I am trying to achieve this to create a theme. but i don't know how i can achieve. I have gone through you doc too.
-
DbManager line 560 reads
`->where(['parent' => $parent->name, 'child' => $child->$name])`
when it should likely read
`->where(['parent' => $parent->name, 'child' => $child->name])`
Note the remova…
-
This is my `PhpManager`:
``` php
class PhpManager extends \yii\rbac\PhpManager
{
public function init()
{
parent::init();
/** @var \backend\components\User $user */
$u…
-
```
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'allow' => true,
…
-
As i can see, PhpAuthManager was removed.Does this means that now rules should only be in the database?
-
I just started working in yii2 basic. It is awesome. But feeling a sort of advance. I am not getting something in clear.
I need some help for adding dynamic menu. I do not know how can I do that... …
-
``` php
'components' => [
...
'authManager' => [
'class' => 'yii\rbac\DbManager',
'defaultRoles' => ['guest'],
'assignmentTable' => 'AUTHASSIGNMENT',
'itemChild…
-
Hello,
I've used PhpManager for Rbac and array of settings.
How I can use it now?
-
![nj096gagf w udqd s5mkf](https://cloud.githubusercontent.com/assets/6079086/2705913/987c33d2-c486-11e3-9bdf-0d8451472bb6.jpg)
the createRole and createPermission method cant be actually created.
-
Would be great to have ability to run console commands inside each other if user want to. Example: user designed command and want it to be able also to apply migrations (and then make some decisions o…