来自辅助函数的 magento Baseurl
我想以这种方式从 magento helper 获取自定义 URL:
<action
method="addLink"
translate="label title"
module="customer">
<label>About Us</label>
<url
helper="customer/getAboutUsUrl">
about
</url>
<title>About Us</title>
<prepare/>
<urlParams/>
<position>1</position>
</action>
所以我所做的就是在 Customer Helper Directory 的本地目录下定义一个函数 getAboutUsUrl()
。但它并没有像我预期的那样返回基本网址。
我需要做什么才能获取包含“关于我们”链接的基本网址?
谢谢
I want to get custom URL from magento helper in this way:
<action
method="addLink"
translate="label title"
module="customer">
<label>About Us</label>
<url
helper="customer/getAboutUsUrl">
about
</url>
<title>About Us</title>
<prepare/>
<urlParams/>
<position>1</position>
</action>
So what I did is define a function getAboutUsUrl()
under local directory within Customer Helper Directory. But it does not return the base url as I expected.
What do I have to do to get the baseurl with about us link?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
cms/page/getPageUrl
辅助方法并传递 CMS 页面标识符作为其参数,如下例所示:You should use
cms/page/getPageUrl
helper method and pass CMS-page identifier as its parameter like in the following example: