如何在 Zend Framework 中创建可重用模块?

发布于 2024-11-28 12:48:56 字数 257 浏览 0 评论 0原文

由于各种原因,在我最新的项目中,我需要在管理后端和前端提供几乎相同的视图/功能。最好的方法是什么?

我需要的示例:

存在一个表,其中包含一些 CRUD 控件。我需要在没有控件的前端中显示此表,并在带有这些控件的后端中显示此表。最主要的是,它们必须看起来很相似,当我对其中一个进行视觉更改时,另一个也应该效仿。因此,听起来合乎逻辑的是,只有一个,然后重用它,同时传递参数来确定是否显示控件。

但是我该如何在 Zend Framework 中做到这一点呢?

For various reasons, in my latest project I need to provide an almost identical view/feature both in the admin back end, as well as in the front end. What is the best way to do this?

Example of what i need:

There exists a table, with some crud controls. I need to show this table in the frontend without the controls, and in the backend with these controls. The main thing is, that they have to look alike, and when I make a visual change in one, the other should follow suit. Therefore it sounds logical, to have but one, and then reuse it, while passing on parameters to that determine whether the controls are shown.

But how do I do this in Zend Framework?

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

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

发布评论

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

评论(1

濫情▎り 2024-12-05 12:48:56

我只是为表格创建一个视图部分,它依赖于参数来显示/隐藏控件。

<?php echo $this->partial('my-table.phtml', 'module-name', array(
    'showControls' => true
)) ?>

使用部分帮助程序的三个参数版本可以让您将部分脚本保留在一个特定模块中,您可以从其他任何地方引用它。

I'd just create a view partial for the table which relies on a parameter to show / hide controls.

<?php echo $this->partial('my-table.phtml', 'module-name', array(
    'showControls' => true
)) ?>

Using the three argument version of the partial helper lets you keep the partial script in one particular module where you can reference it from anywhere else.

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