如何添加视图助手目录(zend 框架)

2021-12-29 00:00:00 php zend-framework view-helpers

我从 ZF (1.9.7) 开始,我想使用我所有项目之间共享的库中的查看助手.但是我找不到如何将它的目录添加到 helpers 路径.当我将 Herpers 放入应用程序的 helpers 路径时,它们可以正常工作.

I begin with ZF (1.9.7), and I want to use View Helpers from a library shared between all my projects. But I can't find how to add it directory to the helpers path. My herpers works fines when I put them in application's helpers path.

这是错误,我在这里找到了 ZF 帮助程序的路径和应用程序的路径.

Here is the error, where I find the path to ZF helpers, and path to the applications ones.

object(ArrayObject)#71 (3) {
  ["exception"]=>
  object(Zend_Loader_PluginLoader_Exception)#70 (6) {
    ["message:protected"]=>
    string(151) "Plugin by name 'Voo' was not found in the registry; used paths:
Zend_View_Helper_: Zend/View/Helper/;C:/ZendStd/www/applis/VOO4_PROJECTX/viewshelpers/"
    ["string:private"]=>
    string(0) ""
    ["code:protected"]=>
    int(0)
    ["file:protected"]=>
    string(89) "C:Program FilesendendServershareendFrameworklibraryendLoaderPluginLoader.php"
    ["line:protected"]=>
    int(401)

最好的问候
塞德里克

Best regards
Cédric

推荐答案

使用视图的内置 Zend_Application 资源可以非常轻松地完成.如果您使用的是 ini 配置,请添加如下一行:

It can be done very easily with the built in Zend_Application resource for the view. If you're using ini configs, add a line like this:

resources.view.helperPath.My_View_Helper = "My/View/Helper"

键的结尾是类名前缀,值是它们所在的路径.

The end of the key is the class name prefix, and the value the path where they reside.

相关文章