我在自定义模块中创建了一个块,但它不起作用。我的模块工作正常,但是当我从 footer.phtml 文件中调用我的块时,我的块无法正常工作,它显示“致命错误:调用非对象上的成员函数 setTemplate()”。实际上我想使用我的自定义块在我的前端显示一些消息。我在下面提到了我的代码
本地/Monojit/Custom/controllers/IndexController.php
<?php
class Monojit_Custom_IndexController extends Mage_Core_Controller_Front_Action
{
public function indexAction()
{
$this->loadLayout();
$block = $this->getLayout()->createBlock(
'Mage_Core_Block_Template',
'my_block_name_here',
array('template' => 'custom/test.phtml')
);
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();
}
}
?>
本地/Monojit/Custom/Block/Mycustomblock.php
<?php
class Monojit_Custom_Block_Mycustomblock extends Mage_Core_Block_Template
{
//public function _prepareLayout()
// {
// return parent::_prepareLayout();
// }
public function _construct() {
parent::_construct();
$this->setTemplate('custom/test.phtml');
}
public function getmessage()
{
$msg = "showing my custom block";
return $msg;
}
}
?>
本地/Monojit/自定义/etc/config.xml
<config>
<global>
<modules>
<monojit_custom>
<version>0.1.0</version>
</monojit_custom>
</modules>
<blocks>
<custom>
<rewrite>
<custom>Monojit_Custom_Block_Mycustomblock</custom>
</rewrite>
</custom>
</blocks>
<helpers>
<custom>
<class>Monojit_Custom_Helper</class>
</custom>
</helpers>
</global>
<frontend>
<routers>
<custom>
<use>standard</use>
<args>
<module>Monojit_Custom</module>
<frontName>custom</frontName>
</args>
</custom>
</routers>
<layout>
<updates>
<custom>
<file>custom.xml</file>
</custom>
</updates>
</layout>
</frontend>
</config>
我在 frontend/default/monojit 中创建了一个主题(复制的现代主题)也更改了管理设计配置,还在 skin.screenshot pic 中创建了必要的文件夹
设计/前端/默认/monojit/模板/自定义/test.phtml
//want to fetch data from my block
<p>This is your custom block called programatically.</p>
localhost/magento/index.php/custom 页面正确显示了我的消息,但是当我从 footer.phtml 页面调用我的块时
<?php echo $this->getLayout()->createBlock('custom/mycustomblock')->setTemplate('custom/test.phtml')->toHtml(); ?>
它显示“致命错误:调用非对象上的成员函数 setTemplate()”我需要创建任何 layout.xml 文件吗?请帮助我如何解决我的问题。谢谢