在Open cart中使用XML文件编辑控制器

时间:2014-03-03 13:20:18

标签: php xml opencart

我的代码位于单个xml文件中。

<?xml version="1.0" encoding="UTF-8"?>
<!-- Created using vQModerator's XML Generator by The Wizard of Osch for http://www.crystalcopy.nl //-->
<!-- (Based on vQmod XML Generator by UKSB - http://www.opencart-extensions.co.uk) //-->
<modification>
    <id><![CDATA[vQModerator Installation]]></id>
    <version><![CDATA[1.1.6]]></version>
    <vqmver><![CDATA[2.4.1]]></vqmver>
    <author><![CDATA[Nidhishanker Modi]]></author>

    <file name="catalog/view/theme/shopitout/template/common/header.tpl" error="abort">
        <operation info="">
            <search position="Replace" offset="" ><![CDATA[<img src="<?php echo $logo; ?>" title="<?php echo $name; ?>" alt="<?php echo $name; ?>" />]]></search>
            <add><![CDATA[<img src="image/data/my_logo.png" title="<?php echo $name; ?>" alt="<?php echo $name; ?>" />]]></add>
        </operation>
    </file>

    <file name="catalog/controller/module/slideshow.php" error="">
        <operation info="">
            <search position="After" ><![CDATA[
            $results = $this->model_design_banner->getBanner($setting['banner_id']);
            ]]></search>
            <add><![CDATA[echo "Testing Data to hold screen"; exit; ]]></add>
        </operation>
    </file> 
</modification>

现在朋友第二个文件标签总是替换我的搜索数据。即使我不给postion =“替换”。 在哪里我错了,请给我建议。

1 个答案:

答案 0 :(得分:2)

您的第一个文件代码中存在错误。最有可能的是:

  1. 错误的文件位置(catalog/view/theme/shopitout/template/common/header.tpl)。
  2. catalog/view/theme/shopitout/template/common/header.tpl
  3. 中不存在提及的搜索代码

    以上陈述的证明:

    1. 将第二个文件标记移至第一个 - 工作。
    2. 或删除error="abort"参数表格第一个文件标签 - 第二个文件代码工作
    3. 如果仍然无法找到错误,请参阅https://sankartypo3.wordpress.com/2013/11/25/opencart-vqmod-tutorial/

      标题下的Opencart Vqmod xml file not working??标题下的部分

      度过美好的一天!!