Magento - 创建一个辅助类
我无法弄清楚如何创建一个辅助类,其中包含可用于 *.phtml 文件的函数。
有人可以逐步描述如何使函数 prtHelloWorld() 可用于我的所有 *.phtml 文件吗?
I'm having trouble figuring out how to create a helper class with a function in it that's available to *.phtml files.
Can someone describe step by step how I can make the function prtHelloWorld() available to all my *.phtml files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它相当简单,您必须从模板中调用您的帮助程序,如下所示:
默认帮助程序类是 Data,默认为 Yourmodule/Helper/Data.php
it's rather simple and you have to call your helper from template like this:
Default helper class is Data and this defaults to Yourmodule/Helper/Data.php
要添加到 Anton S 的功能,如果您希望能够使用 phtml 中的 $this->prtHelloWorld() 访问助手的函数,请将其添加到您的块中,如下所示:
public function prtHelloWorld() {
return Mage::helper(whatever)->prtHelloWorld();
}
To add to Anton S's, if you want to be able to access the helper's function using $this->prtHelloWorld() in the phtml instead, add it to your Block like this:
public function prtHelloWorld() {
return Mage::helper(whatever)->prtHelloWorld();
}