gpt4 book ai didi

menu - magento : trying to decipher level-top

转载 作者:行者123 更新时间:2023-12-02 01:25:54 24 4
gpt4 key购买 nike

我试图了解导航栏是如何在 magento 中形成的,并在 topmenu.phtml 中遇到了我无法弄清楚的这一行。

<?php $_menu = $this->getHtml('level-top') ?>

我知道如何调用子 block ,但“level-top”在哪里?似乎是一个特殊的关键词。任何人都可以解释这是在哪里定义的以及它如何链接到顶部导航吗?

提前致谢。

最佳答案

是的,这有点奇怪,但归结为以下几点:

调用$this->getHtml('level-top')引用 block 类Mage_Page_Block_Html_Topmenu($this是一个实例那个类的)里面的方法:

public function getHtml($outermostClass = '', $childrenWrapClass = '')
{
Mage::dispatchEvent('page_block_html_topmenu_gethtml_before', array(
'menu' => $this->_menu,
'block' => $this
));

$this->_menu->setOutermostClass($outermostClass);
$this->_menu->setChildrenWrapClass($childrenWrapClass);

if ($renderer = $this->getChild('catalog.topnav.renderer')) {
$renderer->setMenuTree($this->_menu)->setChildrenWrapClass($childrenWrapClass);
$html = $renderer->toHtml();
} else {
$html = $this->_getHtml($this->_menu, $childrenWrapClass);
}

Mage::dispatchEvent('page_block_html_topmenu_gethtml_after', array(
'menu' => $this->_menu,
'html' => $html
));

return $html;
}

--> $outermostClass 持有值top-level

从那里您可以看到对 $renderer->toHtml() 的调用,其中 $rendererMage_Page_Block_Html_Topmenu_Renderer 的一个实例。

protected function _toHtml()
{
$this->_addCacheTags();
$menuTree = $this->getMenuTree();
$childrenWrapClass = $this->getChildrenWrapClass();
if (!$this->getTemplate() || is_null($menuTree) || is_null($childrenWrapClass)) {
throw new Exception("Top-menu renderer isn't fully configured.");
}

$includeFilePath = realpath(Mage::getBaseDir('design') . DS . $this->getTemplateFile());
if (strpos($includeFilePath, realpath(Mage::getBaseDir('design'))) === 0 || $this->_getAllowSymlinks()) {
$this->_templateFile = $includeFilePath;
} else {
throw new Exception('Not valid template file:' . $this->_templateFile);
}
return $this->render($menuTree, $childrenWrapClass);
}

此方法现在将模板文件加载到 $includeFilePath 变量中,在我的例子中是 /vagrant/app/design/frontend/rwd/default/template/page/html/topmenu/renderer.phtml(取决于您使用的主题)。

我无法发现 $outermostClass 与值 top-level 的任何使用。

关于menu - magento : trying to decipher level-top,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37141098/

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