使用 MVC 在 zend 框架中包含页面页眉/页脚的最佳方法
使用 MVC 时,在 zf 中包含页眉和页脚的最佳方法是什么?
目前我的引导程序中有这个:
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap{
static public function displayHeader(){
return 'pageheader';
}
}
然后在控制器中我可以做类似的事情:
$this->view->header = Bootstrap::displayHeader();
有没有更好的方法来做到这一点?我可以将它与 render() 结合起来并使用 displayHeader 生成所有必需的变量,然后使用 render() 加载 header.phtml 文件吗?
任何见解都会很棒!
What is the best way to include a page header and footer within zf whilst using MVC?
At the moment I have this in my bootstrap:
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap{
static public function displayHeader(){
return 'pageheader';
}
}
and then within a controller I can do something like:
$this->view->header = Bootstrap::displayHeader();
Is there a better way to do this? Could I perhaps combine it with render() and use the displayHeader to generate all the required variables then use render() to load the header.phtml file?
Any insight would be great!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入layout.phtml
You put that into your layout.phtml