我试图找出以下块用于生成自定义链接的模板。当没有为块定义模板路径时,我如何知道它是哪个模板?感谢您的任何指示!
<block type="page/template_links" name="top.links.custom" as="topLinksCustom">
答案 0 :(得分:1)
模板为page/template/links.phtml
通常,当块没有在布局文件中指定模板时,它可以是不使用模板的core/text
块,或者在块构造函数中指定模板。如果你看一下Mage_Page_Block_Template_Links::_construct
,你会看到:
protected function _construct()
{
$this->setTemplate('page/template/links.phtml');
}
这是您要找的模板 其他简单的方法是打开模板路径提示。