Magento - 创建一个辅助类

发布于 2024-10-14 08:56:10 字数 104 浏览 2 评论 0原文

我无法弄清楚如何创建一个辅助类,其中包含可用于 *.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千秋岁 2024-10-21 08:56:10

它相当简单,您必须从模板中调用您的帮助程序,如下所示:

Mage::helper('yourmodule/yourclassfile')->prtHelloWorld();

默认帮助程序类是 Data,默认为 Yourmodule/Helper/Data.php

Mage::helper('yourmodule')->prtHelloWorld();

it's rather simple and you have to call your helper from template like this:

Mage::helper('yourmodule/yourclassfile')->prtHelloWorld();

Default helper class is Data and this defaults to Yourmodule/Helper/Data.php

Mage::helper('yourmodule')->prtHelloWorld();
十年不长 2024-10-21 08:56:10

要添加到 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();
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文