我有一個表單,我應該在每個頁面中調用,我使用的是Zend框架1.11。我的看法助手是這樣在我的應用程序的每個頁面上調用zend表單
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;
請幫我,我該怎麼稱呼米在每一頁?由於
'/視圖/ helpers'這個類在您的視圖的腳本文件
application/views/helpers/RequestForm.php
呼叫中是定義的默認。爲什麼使用它?你的錯誤是關於你如何使用你的幫手,而不是它在哪裏。你的錯誤是一個插件錯誤。我猜你試圖在你的引導或類似的東西中使用這個助手。發佈該代碼。 – RockyFord