如何添加(baseurl / controller / action)例如www.domainname.com/testController/testAction作为magneto admin store配置字段的默认值

时间:2015-11-17 15:02:01

标签: php magento

我为磁电机制作了一个自定义模块。我想在管理配置字段中设置一些默认值(baseurl / controller / action)。基本URL表示磁盘安装的域名,因此默认值为www.domain.com/controller/action。我尝试了以下方式,但它无法正常工作。

system.xml文件中的代码: -

<loyaltyauthurl translate="label">
   <label> Authentication URL</label>
   <frontend_type>text</frontend_type>
   <sort_order>20</sort_order>
   <show_in_default>1</show_in_default>
   <show_in_website>1</show_in_website>
   <show_in_store>1</show_in_store>
   <depends>
      <enable>1</enable>
      <enableLoyalty>1</enableLoyalty>
   </depends>
</loyaltyauthurl>

config.xml文件中的代码: -

<general>
    <loyaltyauthurl>{{base_url}}</loyaltyauthurl>
</general>

自定义模块配置屏幕: -

enter image description here

0 个答案:

没有答案