0

我正在尝试在我的项目中添加 View 帮助程序,但出现以下错误:

[Mon Apr 29 14:36:19 2013] [error] [client 10.0.0.26] PHP Fatal error:  Uncaught exception 'Zend_Loader_PluginLoader_Exception' with message 'Plugin by name 'LoggedInAs' was not found in the registry; used paths:\nMy_View_Helper_: /var/www/html/test-project/application/views/helpers/\nZend_View_Helper_: Zend/View/Helper/:/var/www/html/test-project/application/views/helpers/' in /usr/share/php/Zend/Loader/PluginLoader.php:412\nStack trace:\n#0 /usr/share/php/Zend/View/Abstract.php(1182): Zend_Loader_PluginLoader->load('LoggedInAs')\n#1 /usr/share/php/Zend/View/Abstract.php(618): Zend_View_Abstract->_getPlugin('helper', 'loggedInAs')\n#2 /usr/share/php/Zend/View/Abstract.php(344): Zend_View_Abstract->getHelper('loggedInAs')\n#3 /var/www/html/test-project/application/layouts/scripts/layout.phtml(16): Zend_View_Abstract->__call('loggedInAs', Array)\n#4 /var/www/html/test-project/application/layouts/scripts/layout.phtml(16): Zend_View->loggedInAs()\n#5 /usr/share/php/Zend/View.php(108): include('/var/www/html/t...')\n#6 /usr/share/php/Zend/View/Abstract.php(888): Zend_View->_run('/var/www/html/ in / /usr/share/php/Zend/Controller/Plugin/Broker.php on line 336

应用程序/views/helpers/LoggedInAs.php

class My_View_Helper_LoggedInAs extends Zend_View_Helper_Abstract
{
    public function loggedInAs()
    {
        //code
    }
}

应用程序/配置/application.ini

resources.view[]=
resources.view.helperPath.My_View_Helper = APPLICATION_PATH "/views/helpers"

应用程序/布局/脚本/layout.phtml

echo $this->loggedInAs();

stackoverflow 上还有其他几个问题,但这些对我不起作用。

编辑 1: 更改Zend_View_Helper_LoggedInAsMy_View_Helper_LoggedInAsTim Fountain 的回答后 编辑 2: 完全错误

4

3 回答 3

3

您提供的答案似乎没有多大意义,如果您说您添加<?php到编写类的文件的顶部,我只能说“欢迎使用 PHP!” 否则,以下内容可能会在未来有所帮助......或者没有。

使用feibeckapplication.ini的大师作为参考,我想出了:

//excerpt from application.ini
resources.view.helperPath = APPLICATION_PATH "/views/helpers"
resources.view.helperPathPrefix = "My_View_Helper"

但是,您使用的是 MVC 的默认值,因此您根本不需要任何配置。

这可能是配置过多的情况。

话虽这么说: 我从来都不喜欢在其中设置视图选项,application.ini因为我不太确定我应该期待什么效果(我是在添加还是设置选项?)。我更喜欢在引导程序中设置视图,因为使用的大多数方法都更冗长并且讲述了更完整的故事:

//bootstrap.php
protected function _initView()
    {
        //Initialize view
        $view = new Zend_View();
        //add custom view helper path
        $view->addHelperPath(APPLICATION_PATH . '/../library/My/View/Helper');
        //add custom script path for partials
        $view->addScriptPath(APPLICATION_PATH . '/../library/My/View/Scripts/');
        //set css includes, path is relative to /public
        $view->headlink()->setStylesheet('/bootstrap/css/bootstrap.css');
        //add javascript files, path is relative to /public
        $view->headScript()->setFile('/bootstrap/js/jquery.min.js');
        $view->headScript()->appendFile('/bootstrap/js/bootstrap.min.js');
        //add it to the view renderer
        $viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper(
                'ViewRenderer');
        $viewRenderer->setView($view);
        //Return it, so that it can be stored by the bootstrap
        return $view;
    }

希望这能提供一些帮助。

于 2013-05-01T10:29:59.383 回答
0

我用一个奇怪的解决方案修复了它,因为我在互联网上找不到这样的东西。我刚刚在application/views/helpers/LoggedInAs.php<?PHP的开头添加了

于 2013-04-29T13:23:59.490 回答
0

类名应该是My_View_Helper_LoggedInAs,因为这是您在 application.ini 中声明的命名空间。Zend 命名空间仅适用于 ZF 类。

于 2013-04-29T12:23:59.673 回答