如何将第三方 Action Helper 添加到 Zend Framework 1.8+应用?
我已经下载了一个第三方操作助手,我想将其添加到我的应用程序中。我该怎么做?
I have downloaded a third party action helper that I would like to add to my application. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Noginn SendFile 操作助手 作为参考,放入库目录中,目录结构如下所示:
在
/application/Bootstrap.php
中添加一个 init 函数并添加类前缀:然后在您的控制器中,您可以调用动作助手是这样的:
Using the Noginn SendFile Action Helper as a reference, dropped into the library directory, the directory structure looks like this:
In
/application/Bootstrap.php
add an init function and add the class prefix:Then in your controller, you can call the action helper like this:
另一个解决方案是以直接的方式添加它:
您还可以像 Andrew 那样添加到帮助程序代理前缀,或者添加到新帮助程序的路径。所有这些选项手册都有很好的解释。
Another solution is to add it in straight forward manner:
You can also add to helper broker prefix, as Andrew did, or add path to your new helpers. All these options are well explained the manual.
这应该有帮助:帮助代理< /a>
只需确保
Your_Controller_Action_Helper
可自动加载或包含在内。This should help: The Helper Broker
Just make sure that
Your_Controller_Action_Helper
is auto-loadable, or is included.