如何配置 Zend 自动加载器在默认路径之前加载资源的自定义路径
单独但相关如何动态覆盖表单和/或使用 Zend 进行视图?。
我希望 Zend 在为 Web 应用程序加载一组默认表单之前尝试加载自定义表单/视图,以便让客户为其应用程序创建自定义表单。
如何配置自动加载器在默认 zend 类之前加载不同的路径?
Separate but related to How to dynamically override forms and/or views using Zend?.
I want Zend to try to load custom forms/views before loading a set of default forms for a web application to let clients create custom forms for their application.
How do you configure the autoloader to load a different path before your default zend classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像在另一个问题中一样,您需要使用工厂类。此类将在预定义目录中检查新表单或默认表单是否存在。
您需要做的就是:
这将在您的工厂类中完成,例如 /MyLib/Form/Form_Factory.php
然后,在您的控制器中:
Like in the other question, you'll need to use a factory class. This class will check in a predefined directory the existence of the new form or otherwise the default form.
All you will need to do is something like:
This will be done in your factory class, something like /MyLib/Form/Form_Factory.php
And then, in your controller: