<modification>
	<id>Abandoned Orders</id>
	<version>1.0.1</version>
	<vqmver>1.0.2</vqmver>
	<author>doug@kulakconsulting.net</author>
	<file name="admin/controller/common/header.php"><!-- 1 matches -->
		<operation>
			<search position="after"><![CDATA[$this->data['text_order'] = $this->language->get('text_order');]]></search>
			<add><![CDATA[$this->data['text_abandoned_order'] = $this->language->get('text_abandoned_order');]]></add>
		</operation>
		<operation>
			<search position="after"><![CDATA[$this->data['order'] = HTTPS_SERVER . 'index.php?route=sale/order&token=' . $this->session->data['token'];]]></search>
			<add><![CDATA[$this->data['abandoned_order'] = HTTPS_SERVER . 'index.php?route=sale/abandoned_order&token=' . $this->session->data['token'];]]></add>
		</operation>
	</file>
	<file name="admin/view/template/common/header.tpl"><!-- 1 matches -->
		<operation>
			<search position="after"><![CDATA[<li><a href="<?php echo $order; ?>"><?php echo $text_order; ?></a></li>]]></search>
			<add><![CDATA[<li><a href="<?php echo $abandoned_order; ?>"><?php echo $text_abandoned_order; ?></a></li>]]></add>
		</operation>
	</file>
	<file name="admin/language/english/common/header.php"><!-- 1 matches -->
		<operation>
			<search position="after"><![CDATA[$_['text_order']             = 'Orders';]]></search>
			<add><![CDATA[$_['text_abandoned_order']   = 'Abandoned Orders';]]></add>
		</operation>
	</file>
</modification>

<!--
<modification>  - This is the highest point of the file and there can only be one
<id>            - This is the name of the mod. Format: Free form text
<version>       - This is the version of the mod. Format: Number and Decimal (1.0.0)
<author>        - This is the author of the mod. Format: Free form text
<file>          - This is the name of the file to modify. Requires attribute "name" as relative filename (catalog/controller/product/product.php). There can be multiple
<operation>		- This is the wrapper of the actual operation occuring. There can be multiple operations to the same file. Uses an optional "error" attribute set to skip|abort (abort is default). skip means all other operations will be applied even if one cannot. abort means to revert to the original source.
<search>        - This is the first required step of the operation. Uses an optional attribute "position" set to before|after|replace. replace is default. One per operation. Use CDATA tags to wrap code.
<add>           - This is the second required step of the operation. Uses an optional attribute "trim" set to true|false. false is default. One per operation. Location of added data depends on the position of the <search> command. Use CDATA tags to wrap code.
-->