I have created a module for opencart.Now i have to change some default template files and php file so i used VQMOD .Now VQMOD Manager is running correctly but not adding the script that i have added.
Sample code below.
<modification>
<id>demo</id>
<version>1.1</version>
<vqmver>2.3.0</vqmver>
<author>http://www.demo.com</author>
<file path="admin/controller/common/" name="header.php">
<operation>
<search position="after">
<![CDATA[$this->data['text_zone'] = $this->language->get('text_zone');]]>
</search>
<add>
<![CDATA[
$this -> data['text_design_category'] = $this -> language -> get('text_design_category');
$this -> data['text_rawproduct'] = $this -> language -> get('text_rawproduct');
$this -> data['text_font'] = $this -> language -> get('text_font');
$this -> data['text_color'] = $this -> language -> get('text_color');
$this -> data['text_screen_color'] = $this -> language -> get('text_screen_color');
$this -> data['text_productdesigner'] = 'Product Designer';
]]>
</add>
</operation>
</file>
</modification>