我有一个应该在每个页面中调用的表单,我使用的是 zend 框架 1.11。我的视图助手是这样的
class Zend_View_Helper_RequestForm
{
function requestForm()
{
$requestForm = new Application_Form_Request();
return $this->view->requestForm;
}
}
我的 application.ini 有这个
resources.view.helperPath = APPLICATION_PATH "/views/helpers"
resources.view[] =
在我的布局中,我有
echo $this->requestForm();
现在我收到此错误
Fatal error: Uncaught exception 'Zend_Loader_PluginLoader_Exception' with message 'Plugin by name 'RequestForm' was not found in the registry;
请帮助我如何在每一页中调用表格?谢谢