0

我正在使用 ACL 向系统中的角色授予资源,执行允许的操作并将拒绝的操作路由到自定义页面,我想在运行时使用 ACL 的资源显示和隐藏菜单元素,并且我想显示和在视图中隐藏锚点、按钮。

我做了一个助手类

  class Zend_View_Helper_Permission extends Zend_View_Helper_Abstract
  {
   private $_acl;
    public function hasAccess($role, $action, $controller)
    {
      if (!$this->_acl) {

           $this->_acl = Zend_Registry::get("Acl");
    }

     return $this->_acl->isAllowed($role, $controller, $action);
  }
} 

我像这样在 config.ini 文件中定义视图助手

resources.view.helperPath.Zend_View_Helper = APPLICATION_PATH "/modules/privileges/views/helpers"

我怎样才能使用这个助手在运行时创建视图?

4

1 回答 1

1

您的方法名称应该与类名称匹配,因此它应该是权限而不是 hasAccess。

我自己使用全局方法 show() 而不是使用视图助手

    function show($action = null)
    {

        $request = Zend_Controller_Front::getInstance()->getRequest();
        $action = $action === null ? $request->getActionName() : $action;
        $module = $request->getModuleName();
        $controller = $request->getControllerName();

        if(!Zend_Registry::isRegistered('acl')) throw new Exception('Show function can only be called inside view after preDispatch');

        $acl = Zend_Registry::get('acl');
$resource = $module . '#' . $controller;
        return $acl->isAllowed(Zend_Auth::getInstance()->getIdentity(),$resource,$action);
    }

为了简单起见,它需要控制器,请求对象中的模块名称。要在列表操作视图中隐藏编辑操作链接,只需 doo

list.phtml 代码如下

<h2>Listing page Only superadmin can see edit link</h2>
<?php if(show('edit')): ?>
<a href="<?echo $this->url(array('action'=>'edit')) ?>">Edit</a>
<?php endif;?>

更新

全局函数 show 是在 library/Util.php 中定义的,它是在 public/index.php 中加载的

require_once 'Zend/Application.php';
require_once 'Util.php';
于 2012-05-27T09:53:14.007 回答