如何在 Zend Framework 中的其他布局中进行布局

发布于 2024-10-21 05:17:51 字数 489 浏览 2 评论 0原文

我想这样做: master.phtml

<html>
<body>
   <?php echo $layout;?>
</body>
</html>

layout.phtml

<div class="grid_3">
   <?php echo $content;?>
</div>

view.phtml

<?php
   $this->loadCustomLayout('layout.phtml');
?>

然后内容

...主控是“master.phtml”...布局中是“layout.phtml”的内容...并且...“内容”内部是“view.phtml”的内容

可以这样做吗?

谢谢。

I want to do this:
master.phtml

<html>
<body>
   <?php echo $layout;?>
</body>
</html>

layout.phtml

<div class="grid_3">
   <?php echo $content;?>
</div>

view.phtml

<?php
   $this->loadCustomLayout('layout.phtml');
?>

the content

then... the master are "master.phtml"... in layout goes the content of "layout.phtml"... and... inside the "content" goes the content of "view.phtml"

is possible do this ?

thanks.

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

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

发布评论

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

评论(2

云之铃。 2024-10-28 05:17:51

您可以使用部分来做到这一点,而不是嵌套布局......

You can use a partial to do that, instead of nesting Layouts...

情未る 2024-10-28 05:17:51

以下是提交给 Zend Issue Tracker 的此功能的功能请求。建议向 Zend_Layout 提供一个补丁来提供此功能,但它还不是 Zend Framework 的一部分。快来投票支持添加吧!
http://framework.zend.com/issues/browse/ZF-8013

您也可以尝试这种方法:
http://www.developly.com/creating-3-step-layouts -with-zendlayout

Here is a feature request submitted to the Zend Issue Tracker for this functionality. There is a patch suggested and provided to Zend_Layout which provides this functionality, but it is not yet part of the Zend Framework. Go vote for it to be added!
http://framework.zend.com/issues/browse/ZF-8013

You could also try this approach:
http://www.developly.com/creating-3-step-layouts-with-zendlayout

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