如何在语言文件opencart2中添加变量

时间:2016-06-29 11:29:59

标签: opencart

我正在尝试使用opencart扩展名在语言文件中添加变量,但文件中没有变化。

我的代码:

<file path="admin/language/english/catalog/product.php">
  <operation>
    <search><![CDATA[// Error]]></search>
        <add position="before"><![CDATA[
             $_['entry_a_start_date']    = 'Start Date/Time';
           ]]>
        </add>
  </operation>
</file>`

请告诉我代码有什么问题。

提前致谢

1 个答案:

答案 0 :(得分:1)

如果您想要调用单个文件,请使用name而不是path

这应该有效:

<file name="admin/language/english/catalog/product.php">
  <operation>
    <search position="before"><![CDATA[// Error]]></search>
        <add><![CDATA[
             $_['entry_a_start_date']    = 'Start Date/Time';
           ]]>
        </add>
  </operation>
</file>