0

我已经在我的骨架应用程序中安装了这两个模块。两者都在使用他们在这里给出的配置示例https://github.com/bjyoungblood/BjyAuthorize

我还安装了 ZfcAdmin 并向其中添加了一些功能专家。我需要以不低于管理员角色的身份阻止它。已在 db guest、用户 admin 中创建角色

我创建的用户具有管理员角色,这是我的 BjyAuthorize 模块配置文件的一部分

'BjyAuthorize\Guard\Controller' => array(
                array('controller' => 'index', 'action' => 'index', 'roles' => array('guest','user')),
                array('controller' => 'index', 'action' => 'stuff', 'roles' => array('user')),
                array('controller' => 'zfcuser', 'roles' => array()),
                // Below is the default index action used by the [ZendSkeletonApplication](https://github.com/zendframework/ZendSkeletonApplication)
                array('controller' => 'Application\Controller\Index', 'roles' => array('guest', 'user')),
                array('controller' => 'ZfcAdmin\Controller\Admin', 'roles' => array('admin')),
            ),

我已经添加了具有管理员角色的控制器“ZfcAdmin\Controller\Admin”,但它仍然阻止了管理部分。

非常感谢任何帮助或指导。

4

1 回答 1

0

好的,这只是一个错误的理解,这里的控制器是我们在模块中为控制器定义的可发音键,对于'ZfcAdmin\Controller\Admin',它是'ZfcAdmin\Controller\AdminController'。所以它起作用了......

于 2012-11-27T08:35:55.570 回答