Zend 框架。如何将选项传递给自定义前端控制器插件?
我有自定义前端控制器插件,需要一些选项。 此时我将它(插件)加载到 application.ini 文件中,如下所示:
resources.frontController.plugins.DynamicLayout = "My_Controller_Plugin_DynamicLayout"
此时我只有 option.ini 文件,然后使用 zend_config 导入它。 有没有办法从 ZEND 的主 application.ini 文件指定插件选项? 也许是这样的?:
resources.frontController.plugins.DynamicLayout.test = "test_value"
I have custom front controller plugin that takes some options.
At this time I load it (plugin) in application.ini file like this:
resources.frontController.plugins.DynamicLayout = "My_Controller_Plugin_DynamicLayout"
At this time I just have option.ini file and then use zend_config to import it.
Is there a way to specify plugin options from ZEND's primary application.ini file?
Maybe something like this?:
resources.frontController.plugins.DynamicLayout.test = "test_value"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用类似的东西通过引导程序将信息传递到我的布局。
此示例适用于在不同域上运行的应用程序,因此具有不同的布局。 (并且有一个单独的 MSIE 版本)。每个域作为一个单独的application.ini
布局Handler:
application.ini:
I use something like this to pass info to my layouts using bootstrap.
This example is for an application that runs on different domains, thus different layouts. (and has a separate version for MSIE). Each domain as a separate application.ini
The layout Handler:
The application.ini: