视图脚本的自定义路径

发布于 2024-09-06 05:57:07 字数 249 浏览 6 评论 0原文

我为基于 Zend Framework(又名主题)的应用程序使用自定义路径。

视图脚本保存在public/themes/themename/modulename/...中,因此切换应用程序主题只需替换路径中的themename即可。

如何告诉 Zend Tool 在此目录中生成视图脚本而不是默认的脚本? 我想需要某种提供者吗?

如何注册提供程序以默认为所有基于 zf 的项目提供它?

I use customized paths for my application based on Zend Framework (a.k.a. themes).

The view scripts are saved in public/themes/themename/modulename/..., so switching the application theme is just substituting themename in the path.

How to tell Zend Tool to generate the view scripts in this directory instead of the default one?
I suppose some kind of provider is needed?

How to register the provider to have it by default for all zf based projects?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

触ぅ动初心 2024-09-13 05:57:07

查看默认的 Zend Provider 并使用您自己的类扩展类,从而重载路径。

Look at the default Zend Providers and extend the classes with your own, overloading the paths.

一刻暧昧 2024-09-13 05:57:07

在引导程序中,您可以添加脚本路径:

protected function _initViewScripts()
{
    $this->bootstrap('view');
    $view = $this->getComponent('view');

    $view->addScriptPath('path/to/view/scripts/');
}

In your bootstrap you can add a script path:

protected function _initViewScripts()
{
    $this->bootstrap('view');
    $view = $this->getComponent('view');

    $view->addScriptPath('path/to/view/scripts/');
}
烟雨凡馨 2024-09-13 05:57:07

我无法告诉您如何实现您想要的目标,但我可以为您提供一些很大的帮助。
Zendcast
如果您不了解 zendcast,那么这是查找有关 zend 框架教程的好地方。

I cannot tell you how you can achieve what you want but I can point you to some great help.
Zendcast
If you don't know about zendcast its a great palce to look for tutorials about the zend framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文