I'm working on a Magento project and I've overridden the Page Html Header block because I need to change how the getLogoSrc()
function (which I found in app/code/core/Mage/Page/Block/Html/Header.php). However I seem to have done something incorrectly as header.phtml is no longer being drawn.
app/code/local/NameSpace/Customize/Block/Html/Header.php
class NameSpace_Page_Block_Html_Header extends Mage_Page_Block_Html_Header
{
...Code...
}
app/code/local/NameSpace/Customize/etc/config.xml
<config>
<modules>
<NameSpace_Customize>
<version>0.1.0</version>
</NameSpace_Customize>
</modules>
<helpers>
<customize>
<class>NameSpace_Customize_Helper</class>
</customize>
</helpers>
<global>
<blocks>
<page>
<rewrite>
<html_header>NameSpace_Page_Block_Html_Header</html_header>
</rewrite>
</page>
</blocks>
</global>
</config>
app/etc/modules/NameSpace_Customize.xml
<config>
<modules>
<NameSpace_Customize>
<active>true</active>
<codePool>local</codePool>
</NameSpace_Customize>
</modules>
</config>
When I remove everything inside of the <global>
tags in config.xml the header is displayed correctly.
This is my first Magento project so I may have gone about this the wrong way. Any input would be appreciated.
Thanks