我试图理解导航栏是如何在magento中形成的,但在topmenu.html中遇到了这一行,我无法理解。
<?php $_menu = $this->getHtml('level-top') ?>
我知道子块是如何命名的,但"level top"在哪里?似乎是一个特别的关键词。有人能解释一下这是在哪里定义的,以及它是如何与顶部导航联系起来的吗?
提前谢谢。
是的,这有点奇怪,但归根结底是:
调用$this->getHtml('level-top')
引用块类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()
的调用,其中$renderer
是Mage_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
(取决于您使用的主题)。
我没有发现值为top-level
的$outermostClass
有任何用途。