我正在尝试创建自己的助手。该Safecheck
文件夹位于library
文件夹中并包含一个Helper
文件夹。该类被称为Safecheck_Helper_Authority.php
(内部library/Safecheck/Helper
)。
在Bootstrap.php
:
protected function _initHelper()
{
Zend_Controller_Action_HelperBroker::addPrefix('Safecheck_Helper');
}
在Safecheck_Helper_Authority.php
:
class Safecheck_Helper_Authority extends Zend_Controller_Action_Helper_Abstract
{
public function hasAuthority($userId, array $ids)
{
}
}
我想使用这个类中的函数。但我收到由以下代码触发的错误“消息:未找到名称授权的操作助手”:
$this->_helper->authority('hasAuthority');
也许我没有用正确的代码调用它?我错过了什么吗?