我正在创建magento模块,因此它可以显示在2栏边栏上。但是,它没有显示在右侧边栏上。以下是目前的进展:
的Config.xml
<config>
<modules>
<!--
This must exactly match the namespace and module's folder
names, with directory separators replaced by underscores
-->
<Michael_Zipcode>
<!-- The version of our module, starting at 0.0.1 -->
<version>0.0.1</version>
</Michael_Zipcode>
</modules>
<global>
<blocks>
<zipcode>
<class>Michael_Zipcode_Block</class>
</zipcode>
</blocks>
</global>
<frontend>
<layout>
<updates>
<zipcode>
<file>zipcodesidebar.xml</file>
</zipcode>
</updates>
</layout>
</frontend>
</config>
zipcodesidebar.xml
<?xml version="1.0"?>
<layout version="0.1.0">
<default>
<reference name="right">
<block type="zipcode/filter" name="michael.zipcode" template="zipcode/enterzip.phtml"/>
</reference>
</default>
</layout>
Filter.php
<?php
class Michael_Zipcode_Block_Filter extends Mage_Core_Block_Template {
public function __construct()
{
parent::__construct();
$this->setTemplate('zipcode/enterzip.phtml');
}
public function getFilter() {
//die('ok');
return 'enter code area';
}
}?>
enterzip.phtml
<?php
echo $this->getFilter();
?>test
据说打印右侧的输入代码区域。该模块已在adminhtml上显示和启用。我希望它能在所有页面上显示。感谢。
答案 0 :(得分:0)
自己解决,错误的文件夹位置。布局和模板的文件夹应放在base / default文件夹中,并与布局和模板文件夹合并。