gpt4 book ai didi

php - 了解 Magento 中的 getChildHtml

转载 作者:IT老高 更新时间:2023-10-28 12:04:26 25 4
gpt4 key购买 nike

从 2columns-right.phtml 中的以下行

<div class="col-main">
<?php echo $this->getChildHtml('global_messages') ?>
<?php echo $this->getChildHtml('content') ?>
</div>

我无法理解 content 的位置在哪里在 <?php echo $this->getChildHtml('content') ?>来自。

<?php echo $this->getChildHtml('content') ?> 调用哪个 .phtml 文件来显示数据?

最佳答案

如果我们讨论的是网站的前端,那么您所询问的特定行......

<?php echo $this->getChildHtml('content') ?>

被添加到 app/design/frontend/base/default/layout/page.xml 中的 Magento 布局 XML。在 Magento 1.8 版中,您会发现它在第 92-94 行中定义。

<block type="core/text_list" name="content" as="content" translate="label">
<label>Main Content Area</label>
</block>

通过查看这个 block 标签的“type”属性,我们可以知道这部分布局是什么对象类。它来自“核心”模块,是 block 类型的文本列表。此 Mage_Core_Block_Text_List 的类名。 (app/code/core/Mage/Core/Block/Text/List.php)。文本列表只是 block 容器,目的是在其中存储额外的子 block 。您可以将任意数量的子 block 添加到文本列表中,它们将按照添加顺序或分配顺序呈现出来。

所以,为了回答您的问题,没有呈现 $this->getChildHtml('content') 内容的 View 脚本(.phtml 文件)。 已被 添加到这个 block ,它们本身可能有与之关联的 View 脚本。要找出这些是什么 View 脚本,您必须找到添加了 block 的布局 XML。

例如,如果我将以下布局文件添加到网站主题的前端:

<?xml version="1.0"?>
<layout>
<default>
<reference name="content">
<block type="core/template" name="my_view_script" template="hello/world.phtml" />
</reference>
</default>
</layout>

上面的代码会将具有 Mage_Core_Block_Template 对象类的 block 添加到名称为“内容”的 block (恰好是您询问的那个)。然后 Magento 将按以下顺序在以下位置查找 View 脚本:

app/design/frontend/PACKAGE_NAME/THEME_NAME/template/hello/world.phtml
app/design/frontend/PACKAGE_NAME/default/template/hello/world.phtml
app/design/frontend/base/default/template/hello/world.phtml

找到的第一个就是它将使用的那个。如果没有找到 View 脚本,Magento 将在 var/logs/system.log(默认日志文件设置)中记录一个错误,指出未找到 View 脚本。该 block 不会有任何输出。

请注意,根据您在 System -> Configuration -> (General) Design 中的设置,Magento 可能会查看其他 package/theme 位置。还有其他情况,例如“自定义主题”字段针对单个 CMS 页面、目录类别或目录产品进行了更改,这些单个模型的 View 页面可能有一个额外的 View 脚本位置(将匹配所选主题),该位置优先于您网站的默认设置。

Magento 在查找翻译文件和布局 XML 文件时将遵循相同的后备逻辑。

请注意,从 app/design/frontend/base/default/template/ 到您的本地主题,并根据您网站的主题对其进行自定义。但是,为了拥有一个升级兼容的站点,布局文件不应从基础复制到您的本地主题。这样做不遵循升级兼容的做法。相反,您的主题的 XML 布局更新应该包含在 app/design/frontend/PACKAGE_NAME/THEME_NAME/layout/local.xml 中。没有来自 app/design/frontend/base/default/layout/* 的布局说明,不能删除/添加到/更改,你有什么,有正确的 XML 说明local.xml。

关于php - 了解 Magento 中的 getChildHtml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19488885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com