我不知道我做错了什么:
我是这么想的:
app/code/local/Company/etc/confix.xml:
<?xml version="1.0"?>
<config>
<modules>
<Company_Core>
<version>0.1.0</version>
</Company_Core>
</modules>
<global>
<models>
<core>
<rewrite>
<store>Company_Page_block_Html_Head</Store>
</rewrite>
</core>
</models>
</global>
</config>
字符串
和
app/code/local/Company/Page/Block/Html/Head.php:
include('Mage/Page/Block/Html/Head.php');
class Company_Page_block_Html_Head extends Mage_Catalog_Model_Product {
/**
* Get HEAD HTML with CSS/JS/RSS definitions
* (actually it also renders other elements, TODO: fix it up or rename this method)
*
* @return string
*/
public function getCssJsHtml()
{
echo 'asd';
return parent::getCssJsHtml();
}
}
型
但是什么都没有改变,我的调试文本“asd”根本没有显示,我不知道我可能做错了什么?
我在运行Magento 1.9 CE
1条答案
按热度按时间tzcvj98z1#
如果你的目标是覆盖
getCssJsHtml()
,那么你的代码是完全错误的..只是检查下面的代码覆盖getCssJsHtml()
方法字符串
和
型
如果你有任何疑问请告诉我