Version Notes
1.8.1.0
Download this release
Release Info
Developer | Magento Core Team |
Extension | Mage_Core_Adminhtml |
Version | 1.8.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.8.0.0 to 1.8.1.0
- app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php +2 -1
- app/code/core/Mage/Adminhtml/Block/Review/Edit.php +1 -1
- app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php +6 -2
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php +11 -2
- app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php +4 -10
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid.php +1 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php +1 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php +1 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php +1 -0
- app/code/core/Mage/Adminhtml/Block/System/Store/Store.php +23 -4
- app/code/core/Mage/Adminhtml/Block/System/Store/Tree.php +172 -0
- app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php +14 -2
- app/code/core/Mage/Adminhtml/Block/Widget/Form.php +7 -0
- app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php +2 -1
- app/code/core/Mage/Adminhtml/Model/Email/Template.php +20 -0
- app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php +4 -0
- app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php +23 -10
- app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php +2 -0
- app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php +1 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php +19 -1
- app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php +7 -0
- app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php +10 -1
- app/code/core/Mage/Adminhtml/controllers/System/DesignController.php +4 -0
- app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php +31 -0
- app/locale/en_US/Mage_Adminhtml.csv +3 -0
- package.xml +6 -6
app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/Addresses.php
CHANGED
@@ -135,8 +135,9 @@ class Mage_Adminhtml_Block_Customer_Edit_Tab_Addresses extends Mage_Adminhtml_Bl
|
|
135 |
$this->_setFieldset($attributes, $fieldset);
|
136 |
|
137 |
$regionElement = $form->getElement('region');
|
138 |
-
$regionElement->setRequired(true);
|
139 |
if ($regionElement) {
|
|
|
|
|
140 |
$regionElement->setRenderer(Mage::getModel('adminhtml/customer_renderer_region'));
|
141 |
}
|
142 |
|
135 |
$this->_setFieldset($attributes, $fieldset);
|
136 |
|
137 |
$regionElement = $form->getElement('region');
|
|
|
138 |
if ($regionElement) {
|
139 |
+
$isRequired = Mage::helper('directory')->isRegionRequired($addressModel->getCountryId());
|
140 |
+
$regionElement->setRequired($isRequired);
|
141 |
$regionElement->setRenderer(Mage::getModel('adminhtml/customer_renderer_region'));
|
142 |
}
|
143 |
|
app/code/core/Mage/Adminhtml/Block/Review/Edit.php
CHANGED
@@ -77,7 +77,7 @@ class Mage_Adminhtml_Block_Review_Edit extends Mage_Adminhtml_Block_Widget_Form_
|
|
77 |
'delete',
|
78 |
'onclick',
|
79 |
'deleteConfirm('
|
80 |
-
. '\'' . Mage::helper('review')->__('Are you sure you want to do this?').'\' '
|
81 |
. '\'' . $this->getUrl(
|
82 |
'*/*/delete',
|
83 |
array(
|
77 |
'delete',
|
78 |
'onclick',
|
79 |
'deleteConfirm('
|
80 |
+
. '\'' . Mage::helper('review')->__('Are you sure you want to do this?').'\', '
|
81 |
. '\'' . $this->getUrl(
|
82 |
'*/*/delete',
|
83 |
array(
|
app/code/core/Mage/Adminhtml/Block/Review/Rating/Detailed.php
CHANGED
@@ -71,7 +71,7 @@ class Mage_Adminhtml_Block_Review_Rating_Detailed extends Mage_Adminhtml_Block_T
|
|
71 |
$ratingCollection = Mage::getModel('rating/rating')
|
72 |
->getResourceCollection()
|
73 |
->addEntityFilter('product')
|
74 |
-
->setStoreFilter(
|
75 |
->setPositionOrder()
|
76 |
->load()
|
77 |
->addOptionToItems();
|
@@ -79,7 +79,11 @@ class Mage_Adminhtml_Block_Review_Rating_Detailed extends Mage_Adminhtml_Block_T
|
|
79 |
$ratingCollection = Mage::getModel('rating/rating')
|
80 |
->getResourceCollection()
|
81 |
->addEntityFilter('product')
|
82 |
-
->setStoreFilter(
|
|
|
|
|
|
|
|
|
83 |
->setPositionOrder()
|
84 |
->load()
|
85 |
->addOptionToItems();
|
71 |
$ratingCollection = Mage::getModel('rating/rating')
|
72 |
->getResourceCollection()
|
73 |
->addEntityFilter('product')
|
74 |
+
->setStoreFilter(Mage::app()->getStore('default')->getId())
|
75 |
->setPositionOrder()
|
76 |
->load()
|
77 |
->addOptionToItems();
|
79 |
$ratingCollection = Mage::getModel('rating/rating')
|
80 |
->getResourceCollection()
|
81 |
->addEntityFilter('product')
|
82 |
+
->setStoreFilter(
|
83 |
+
$this->getRequest()->getParam('select_stores')
|
84 |
+
? $this->getRequest()->getParam('select_stores')
|
85 |
+
: $this->getRequest()->getParam('stores')
|
86 |
+
)
|
87 |
->setPositionOrder()
|
88 |
->load()
|
89 |
->addOptionToItems();
|
app/code/core/Mage/Adminhtml/Block/Sales/Order/Create.php
CHANGED
@@ -47,7 +47,6 @@ class Mage_Adminhtml_Block_Sales_Order_Create extends Mage_Adminhtml_Block_Widge
|
|
47 |
$customerId = $this->_getSession()->getCustomerId();
|
48 |
$storeId = $this->_getSession()->getStoreId();
|
49 |
|
50 |
-
|
51 |
$this->_updateButton('save', 'label', Mage::helper('sales')->__('Submit Order'));
|
52 |
$this->_updateButton('save', 'onclick', "order.submit()");
|
53 |
$this->_updateButton('save', 'id', 'submit_order_top_button');
|
@@ -60,7 +59,7 @@ class Mage_Adminhtml_Block_Sales_Order_Create extends Mage_Adminhtml_Block_Widge
|
|
60 |
|
61 |
$this->_updateButton('reset', 'id', 'reset_order_top_button');
|
62 |
|
63 |
-
if (is_null($customerId)) {
|
64 |
$this->_updateButton('reset', 'style', 'display:none');
|
65 |
} else {
|
66 |
$this->_updateButton('back', 'style', 'display:none');
|
@@ -72,6 +71,16 @@ class Mage_Adminhtml_Block_Sales_Order_Create extends Mage_Adminhtml_Block_Widge
|
|
72 |
$this->_updateButton('reset', 'onclick', 'deleteConfirm(\''.$confirm.'\', \'' . $this->getCancelUrl() . '\')');
|
73 |
}
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
/**
|
76 |
* Prepare header html
|
77 |
*
|
47 |
$customerId = $this->_getSession()->getCustomerId();
|
48 |
$storeId = $this->_getSession()->getStoreId();
|
49 |
|
|
|
50 |
$this->_updateButton('save', 'label', Mage::helper('sales')->__('Submit Order'));
|
51 |
$this->_updateButton('save', 'onclick', "order.submit()");
|
52 |
$this->_updateButton('save', 'id', 'submit_order_top_button');
|
59 |
|
60 |
$this->_updateButton('reset', 'id', 'reset_order_top_button');
|
61 |
|
62 |
+
if (!$this->_isCanCancel() || is_null($customerId)) {
|
63 |
$this->_updateButton('reset', 'style', 'display:none');
|
64 |
} else {
|
65 |
$this->_updateButton('back', 'style', 'display:none');
|
71 |
$this->_updateButton('reset', 'onclick', 'deleteConfirm(\''.$confirm.'\', \'' . $this->getCancelUrl() . '\')');
|
72 |
}
|
73 |
|
74 |
+
/**
|
75 |
+
* Check access for cancel action
|
76 |
+
*
|
77 |
+
* @return boolean
|
78 |
+
*/
|
79 |
+
protected function _isCanCancel()
|
80 |
+
{
|
81 |
+
return Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/cancel');
|
82 |
+
}
|
83 |
+
|
84 |
/**
|
85 |
* Prepare header html
|
86 |
*
|
app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Items/Grid.php
CHANGED
@@ -204,17 +204,11 @@ class Mage_Adminhtml_Block_Sales_Order_Create_Items_Grid extends Mage_Adminhtml_
|
|
204 |
{
|
205 |
$address = $this->getQuoteAddress();
|
206 |
if ($this->displayTotalsIncludeTax()) {
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
return $address->getSubtotal() + $address->getTaxAmount() + $this->getDiscountAmount();
|
211 |
-
}
|
212 |
} else {
|
213 |
-
|
214 |
-
return $address->getSubtotalInclTax() - $address->getTaxAmount() + $this->getDiscountAmount();
|
215 |
-
} else {
|
216 |
-
return $address->getSubtotal() + $this->getDiscountAmount();
|
217 |
-
}
|
218 |
}
|
219 |
}
|
220 |
|
204 |
{
|
205 |
$address = $this->getQuoteAddress();
|
206 |
if ($this->displayTotalsIncludeTax()) {
|
207 |
+
$subtotalInclTax = $address->getSubtotal() + $address->getTaxAmount()
|
208 |
+
+ $address->getHiddenTaxAmount() + $this->getDiscountAmount();
|
209 |
+
return $subtotalInclTax;
|
|
|
|
|
210 |
} else {
|
211 |
+
return $address->getSubtotal() + $this->getDiscountAmount();
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
}
|
214 |
|
app/code/core/Mage/Adminhtml/Block/System/Store/Grid.php
CHANGED
@@ -31,6 +31,7 @@
|
|
31 |
* @category Mage
|
32 |
* @package Mage_Adminhtml
|
33 |
* @author Magento Core Team <core@magentocommerce.com>
|
|
|
34 |
*/
|
35 |
class Mage_Adminhtml_Block_System_Store_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
36 |
{
|
31 |
* @category Mage
|
32 |
* @package Mage_Adminhtml
|
33 |
* @author Magento Core Team <core@magentocommerce.com>
|
34 |
+
* @deprecated after 1.13.1.0 use Mage_Adminhtml_Block_System_Store_Tree
|
35 |
*/
|
36 |
class Mage_Adminhtml_Block_System_Store_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
37 |
{
|
app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Group.php
CHANGED
@@ -30,6 +30,7 @@
|
|
30 |
* @category Mage
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
|
|
33 |
*/
|
34 |
|
35 |
class Mage_Adminhtml_Block_System_Store_Grid_Render_Group
|
30 |
* @category Mage
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
* @deprecated after 1.13.1.0 use Mage_Adminhtml_Block_System_Store_Tree
|
34 |
*/
|
35 |
|
36 |
class Mage_Adminhtml_Block_System_Store_Grid_Render_Group
|
app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Store.php
CHANGED
@@ -30,6 +30,7 @@
|
|
30 |
* @category Mage
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
|
|
33 |
*/
|
34 |
|
35 |
class Mage_Adminhtml_Block_System_Store_Grid_Render_Store
|
30 |
* @category Mage
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
* @deprecated after 1.13.1.0 use Mage_Adminhtml_Block_System_Store_Tree
|
34 |
*/
|
35 |
|
36 |
class Mage_Adminhtml_Block_System_Store_Grid_Render_Store
|
app/code/core/Mage/Adminhtml/Block/System/Store/Grid/Render/Website.php
CHANGED
@@ -30,6 +30,7 @@
|
|
30 |
* @category Mage
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
|
|
33 |
*/
|
34 |
|
35 |
class Mage_Adminhtml_Block_System_Store_Grid_Render_Website
|
30 |
* @category Mage
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
+
* @deprecated after 1.13.1.0 use Mage_Adminhtml_Block_System_Store_Tree
|
34 |
*/
|
35 |
|
36 |
class Mage_Adminhtml_Block_System_Store_Grid_Render_Website
|
app/code/core/Mage/Adminhtml/Block/System/Store/Store.php
CHANGED
@@ -32,20 +32,24 @@
|
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
*/
|
34 |
|
35 |
-
class Mage_Adminhtml_Block_System_Store_Store extends
|
36 |
{
|
37 |
public function __construct()
|
38 |
{
|
39 |
$this->_controller = 'system_store';
|
40 |
$this->_headerText = Mage::helper('adminhtml')->__('Manage Stores');
|
|
|
41 |
parent::__construct();
|
42 |
}
|
43 |
|
44 |
protected function _prepareLayout()
|
45 |
{
|
46 |
-
/*
|
47 |
-
$this->
|
48 |
-
|
|
|
|
|
|
|
49 |
|
50 |
/* Add Store Group button */
|
51 |
$this->_addButton('add_group', array(
|
@@ -64,6 +68,21 @@ class Mage_Adminhtml_Block_System_Store_Store extends Mage_Adminhtml_Block_Widge
|
|
64 |
return parent::_prepareLayout();
|
65 |
}
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
public function getAddNewButtonHtml()
|
68 |
{
|
69 |
return join(' ', array(
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
*/
|
34 |
|
35 |
+
class Mage_Adminhtml_Block_System_Store_Store extends Mage_Adminhtml_Block_Widget_Container
|
36 |
{
|
37 |
public function __construct()
|
38 |
{
|
39 |
$this->_controller = 'system_store';
|
40 |
$this->_headerText = Mage::helper('adminhtml')->__('Manage Stores');
|
41 |
+
$this->setTemplate('system/store/container.phtml');
|
42 |
parent::__construct();
|
43 |
}
|
44 |
|
45 |
protected function _prepareLayout()
|
46 |
{
|
47 |
+
/* Add website button */
|
48 |
+
$this->_addButton('add', array(
|
49 |
+
'label' => Mage::helper('core')->__('Create Website'),
|
50 |
+
'onclick' => 'setLocation(\'' . $this->getUrl('*/*/newWebsite') .'\')',
|
51 |
+
'class' => 'add',
|
52 |
+
));
|
53 |
|
54 |
/* Add Store Group button */
|
55 |
$this->_addButton('add_group', array(
|
68 |
return parent::_prepareLayout();
|
69 |
}
|
70 |
|
71 |
+
/**
|
72 |
+
* Retrieve grid
|
73 |
+
*
|
74 |
+
* @return string
|
75 |
+
*/
|
76 |
+
public function getGridHtml()
|
77 |
+
{
|
78 |
+
return $this->getLayout()->createBlock('adminhtml/system_store_tree')->toHtml();
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* Retrieve buttons
|
83 |
+
*
|
84 |
+
* @return string
|
85 |
+
*/
|
86 |
public function getAddNewButtonHtml()
|
87 |
{
|
88 |
return join(' ', array(
|
app/code/core/Mage/Adminhtml/Block/System/Store/Tree.php
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category Mage
|
22 |
+
* @package Mage_Adminhtml
|
23 |
+
* @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Adminhtml store tree
|
30 |
+
*
|
31 |
+
* @category Mage
|
32 |
+
* @package Mage_Adminhtml
|
33 |
+
* @author Magento Core Team <core@magentocommerce.com>
|
34 |
+
*/
|
35 |
+
class Mage_Adminhtml_Block_System_Store_Tree extends Mage_Adminhtml_Block_Widget
|
36 |
+
{
|
37 |
+
/**
|
38 |
+
* Cell Template
|
39 |
+
*
|
40 |
+
* @var Mage_Adminhtml_Block_Template
|
41 |
+
*/
|
42 |
+
protected $_cellTemplate;
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Internal constructor, that is called from real constructor
|
46 |
+
*/
|
47 |
+
public function _construct()
|
48 |
+
{
|
49 |
+
$this->setTemplate('system/store/tree.phtml');
|
50 |
+
parent::_construct();
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Prepare block layout
|
55 |
+
*
|
56 |
+
* @return Mage_Core_Block_Abstract
|
57 |
+
*/
|
58 |
+
protected function _prepareLayout()
|
59 |
+
{
|
60 |
+
$this->_cellTemplate = $this->getLayout()
|
61 |
+
->createBlock('adminhtml/template')
|
62 |
+
->setTemplate('system/store/cell.phtml');
|
63 |
+
return parent::_prepareLayout();
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Get table data
|
68 |
+
*
|
69 |
+
* @return array
|
70 |
+
*/
|
71 |
+
public function getTableData()
|
72 |
+
{
|
73 |
+
$data = array();
|
74 |
+
foreach (Mage::getModel('core/website')->getCollection() as $website) {
|
75 |
+
/** @var $website Mage_Core_Model_Website */
|
76 |
+
$groupCollection = $website->getGroupCollection();
|
77 |
+
$data[$website->getId()] = array(
|
78 |
+
'object' => $website,
|
79 |
+
'storeGroups' => array(),
|
80 |
+
'count' => 0
|
81 |
+
);
|
82 |
+
$defaultGroupId = $website->getDefaultGroupId();
|
83 |
+
foreach ($groupCollection as $storeGroup) {
|
84 |
+
/** @var $storeGroup Mage_Core_Model_Store_Group */
|
85 |
+
$storeCollection = $storeGroup->getStoreCollection();
|
86 |
+
$storeGroupCount = max(1, $storeCollection->count());
|
87 |
+
$data[$website->getId()]['storeGroups'][$storeGroup->getId()] = array(
|
88 |
+
'object' => $storeGroup,
|
89 |
+
'stores' => array(),
|
90 |
+
'count' => $storeGroupCount
|
91 |
+
);
|
92 |
+
$data[$website->getId()]['count'] += $storeGroupCount;
|
93 |
+
if ($storeGroup->getId() == $defaultGroupId) {
|
94 |
+
$storeGroup->setData('is_default', true);
|
95 |
+
}
|
96 |
+
$defaultStoreId = $storeGroup->getDefaultStoreId();
|
97 |
+
foreach ($storeCollection as $store) {
|
98 |
+
/** @var $store Mage_Core_Model_Store */
|
99 |
+
$data[$website->getId()]['storeGroups'][$storeGroup->getId()]['stores'][$store->getId()] = array(
|
100 |
+
'object' => $store
|
101 |
+
);
|
102 |
+
if ($store->getId() == $defaultStoreId) {
|
103 |
+
$store->setData('is_default', true);
|
104 |
+
}
|
105 |
+
}
|
106 |
+
}
|
107 |
+
|
108 |
+
$data[$website->getId()]['count'] = max(1, $data[$website->getId()]['count']);
|
109 |
+
}
|
110 |
+
return $data;
|
111 |
+
}
|
112 |
+
|
113 |
+
/**
|
114 |
+
* Create new cell template
|
115 |
+
*
|
116 |
+
* @return Mage_Adminhtml_Block_Template
|
117 |
+
*/
|
118 |
+
protected function _createCellTemplate()
|
119 |
+
{
|
120 |
+
return clone($this->_cellTemplate);
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* Render website
|
125 |
+
*
|
126 |
+
* @param Mage_Core_Model_Website $website
|
127 |
+
* @return string
|
128 |
+
*/
|
129 |
+
public function renderWebsite(Mage_Core_Model_Website $website)
|
130 |
+
{
|
131 |
+
return $this->_createCellTemplate()
|
132 |
+
->setObject($website)
|
133 |
+
->setLinkUrl($this->getUrl('*/*/editWebsite', array('website_id' => $website->getWebsiteId())))
|
134 |
+
->setInfo($this->__('Code') . ': ' . $this->escapeHtml($website->getCode()))
|
135 |
+
->toHtml();
|
136 |
+
}
|
137 |
+
|
138 |
+
/**
|
139 |
+
* Render store group
|
140 |
+
*
|
141 |
+
* @param Mage_Core_Model_Store_Group $storeGroup
|
142 |
+
* @return string
|
143 |
+
*/
|
144 |
+
public function renderStoreGroup(Mage_Core_Model_Store_Group $storeGroup)
|
145 |
+
{
|
146 |
+
$rootCategory = Mage::getModel('catalog/category')->load($storeGroup->getRootCategoryId());
|
147 |
+
return $this->_createCellTemplate()
|
148 |
+
->setObject($storeGroup)
|
149 |
+
->setLinkUrl($this->getUrl('*/*/editGroup', array('group_id' => $storeGroup->getGroupId())))
|
150 |
+
->setInfo($this->__('Root Category') . ': ' . $this->escapeHtml($rootCategory->getName()))
|
151 |
+
->toHtml();
|
152 |
+
}
|
153 |
+
|
154 |
+
/**
|
155 |
+
* Render store
|
156 |
+
*
|
157 |
+
* @param Mage_Core_Model_Store $store
|
158 |
+
* @return string
|
159 |
+
*/
|
160 |
+
public function renderStore(Mage_Core_Model_Store $store)
|
161 |
+
{
|
162 |
+
$cell = $this->_createCellTemplate()
|
163 |
+
->setObject($store)
|
164 |
+
->setLinkUrl($this->getUrl('*/*/editStore', array('store_id' => $store->getStoreId())))
|
165 |
+
->setInfo($this->__('Code') . ': ' . $this->escapeHtml($store->getCode()));
|
166 |
+
if (!$store->getIsActive()) {
|
167 |
+
$cell->setClass('strike');
|
168 |
+
}
|
169 |
+
return $cell->toHtml();
|
170 |
+
}
|
171 |
+
|
172 |
+
}
|
app/code/core/Mage/Adminhtml/Block/Tax/Rate/Form.php
CHANGED
@@ -31,11 +31,18 @@
|
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
*/
|
34 |
-
|
35 |
class Mage_Adminhtml_Block_Tax_Rate_Form extends Mage_Adminhtml_Block_Widget_Form
|
36 |
{
|
|
|
|
|
|
|
|
|
|
|
37 |
protected $_titles = null;
|
38 |
|
|
|
|
|
|
|
39 |
public function __construct()
|
40 |
{
|
41 |
parent::__construct();
|
@@ -43,6 +50,11 @@ class Mage_Adminhtml_Block_Tax_Rate_Form extends Mage_Adminhtml_Block_Widget_For
|
|
43 |
$this->setTemplate('tax/rate/form.phtml');
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
|
|
46 |
protected function _prepareForm()
|
47 |
{
|
48 |
$rateObject = new Varien_Object(Mage::getSingleton('tax/calculation_rate')->getData());
|
@@ -67,7 +79,7 @@ class Mage_Adminhtml_Block_Tax_Rate_Form extends Mage_Adminhtml_Block_Widget_For
|
|
67 |
if ($regions) {
|
68 |
$regions[0]['label'] = '*';
|
69 |
} else {
|
70 |
-
$regions = array(array('value' => '', 'label' => '*'));
|
71 |
}
|
72 |
|
73 |
$fieldset = $form->addFieldset('base_fieldset', array('legend' => Mage::helper('tax')->__('Tax Rate Information')));
|
31 |
* @package Mage_Adminhtml
|
32 |
* @author Magento Core Team <core@magentocommerce.com>
|
33 |
*/
|
|
|
34 |
class Mage_Adminhtml_Block_Tax_Rate_Form extends Mage_Adminhtml_Block_Widget_Form
|
35 |
{
|
36 |
+
/**
|
37 |
+
* Tax titles
|
38 |
+
*
|
39 |
+
* @var null|string
|
40 |
+
*/
|
41 |
protected $_titles = null;
|
42 |
|
43 |
+
/**
|
44 |
+
* Constructor
|
45 |
+
*/
|
46 |
public function __construct()
|
47 |
{
|
48 |
parent::__construct();
|
50 |
$this->setTemplate('tax/rate/form.phtml');
|
51 |
}
|
52 |
|
53 |
+
/**
|
54 |
+
* Prepare form before rendering HTML
|
55 |
+
*
|
56 |
+
* @return Mage_Adminhtml_Block_Widget_Form
|
57 |
+
*/
|
58 |
protected function _prepareForm()
|
59 |
{
|
60 |
$rateObject = new Varien_Object(Mage::getSingleton('tax/calculation_rate')->getData());
|
79 |
if ($regions) {
|
80 |
$regions[0]['label'] = '*';
|
81 |
} else {
|
82 |
+
$regions = array(array('value' => '0', 'label' => '*'));
|
83 |
}
|
84 |
|
85 |
$fieldset = $form->addFieldset('base_fieldset', array('legend' => Mage::helper('tax')->__('Tax Rate Information')));
|
app/code/core/Mage/Adminhtml/Block/Widget/Form.php
CHANGED
@@ -205,6 +205,13 @@ class Mage_Adminhtml_Block_Widget_Form extends Mage_Adminhtml_Block_Widget
|
|
205 |
} else if ($inputType == 'date') {
|
206 |
$element->setImage($this->getSkinUrl('images/grid-cal.gif'));
|
207 |
$element->setFormat(Mage::app()->getLocale()->getDateFormatWithLongYear());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
} else if ($inputType == 'multiline') {
|
209 |
$element->setLineCount($attribute->getMultilineCount());
|
210 |
}
|
205 |
} else if ($inputType == 'date') {
|
206 |
$element->setImage($this->getSkinUrl('images/grid-cal.gif'));
|
207 |
$element->setFormat(Mage::app()->getLocale()->getDateFormatWithLongYear());
|
208 |
+
} else if ($inputType == 'datetime') {
|
209 |
+
$element->setImage($this->getSkinUrl('images/grid-cal.gif'));
|
210 |
+
$element->setTime(true);
|
211 |
+
$element->setStyle('width:50%;');
|
212 |
+
$element->setFormat(
|
213 |
+
Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT)
|
214 |
+
);
|
215 |
} else if ($inputType == 'multiline') {
|
216 |
$element->setLineCount($attribute->getMultilineCount());
|
217 |
}
|
app/code/core/Mage/Adminhtml/Model/Customer/Renderer/Region.php
CHANGED
@@ -92,7 +92,8 @@ class Mage_Adminhtml_Model_Customer_Renderer_Region implements Varien_Data_Form_
|
|
92 |
. $element->serialize($htmlAttributes) .'>' . "\n";
|
93 |
foreach ($regionCollection as $region) {
|
94 |
$selected = ($regionId==$region['value']) ? ' selected="selected"' : '';
|
95 |
-
$
|
|
|
96 |
. Mage::helper('adminhtml')->escapeHtml(Mage::helper('directory')->__($region['label']))
|
97 |
. '</option>';
|
98 |
}
|
92 |
. $element->serialize($htmlAttributes) .'>' . "\n";
|
93 |
foreach ($regionCollection as $region) {
|
94 |
$selected = ($regionId==$region['value']) ? ' selected="selected"' : '';
|
95 |
+
$value = is_numeric($region['value'])?(int)$region['value']:"";
|
96 |
+
$html.= '<option value="'.$value.'"' . $selected . '>'
|
97 |
. Mage::helper('adminhtml')->escapeHtml(Mage::helper('directory')->__($region['label']))
|
98 |
. '</option>';
|
99 |
}
|
app/code/core/Mage/Adminhtml/Model/Email/Template.php
CHANGED
@@ -113,4 +113,24 @@ class Mage_Adminhtml_Model_Email_Template extends Mage_Core_Model_Email_Template
|
|
113 |
|
114 |
return $configData;
|
115 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
}
|
113 |
|
114 |
return $configData;
|
115 |
}
|
116 |
+
|
117 |
+
/**
|
118 |
+
* Delete current usage
|
119 |
+
*
|
120 |
+
* @return Mage_Adminhtml_Model_Email_Template
|
121 |
+
*/
|
122 |
+
protected function _afterDelete() {
|
123 |
+
$paths = $this->getSystemConfigPathsWhereUsedCurrently();
|
124 |
+
foreach ($paths as $path) {
|
125 |
+
$configDataCollection = Mage::getModel('core/config_data')
|
126 |
+
->getCollection()
|
127 |
+
->addFieldToFilter('scope', $path['scope'])
|
128 |
+
->addFieldToFilter('scope_id', $path['scope_id'])
|
129 |
+
->addFieldToFilter('path', $path['path']);
|
130 |
+
foreach ($configDataCollection as $configItem) {
|
131 |
+
$configItem->delete();
|
132 |
+
}
|
133 |
+
}
|
134 |
+
return parent::_afterDelete();
|
135 |
+
}
|
136 |
}
|
app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php
CHANGED
@@ -284,6 +284,10 @@ class Mage_Adminhtml_Model_Sales_Order_Create extends Varien_Object implements M
|
|
284 |
|
285 |
$this->getSession()->setStoreId($order->getStoreId());
|
286 |
|
|
|
|
|
|
|
|
|
287 |
/**
|
288 |
* Initialize catalog rule data with new session values
|
289 |
*/
|
284 |
|
285 |
$this->getSession()->setStoreId($order->getStoreId());
|
286 |
|
287 |
+
//Notify other modules about the session quote
|
288 |
+
Mage::dispatchEvent('init_from_order_session_quote_initialized',
|
289 |
+
array('session_quote' => $this->getSession()));
|
290 |
+
|
291 |
/**
|
292 |
* Initialize catalog rule data with new session values
|
293 |
*/
|
app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php
CHANGED
@@ -728,17 +728,8 @@ class Mage_Adminhtml_Catalog_ProductController extends Mage_Adminhtml_Controller
|
|
728 |
$product->save();
|
729 |
$productId = $product->getId();
|
730 |
|
731 |
-
/**
|
732 |
-
* Do copying data to stores
|
733 |
-
*/
|
734 |
if (isset($data['copy_to_stores'])) {
|
735 |
-
|
736 |
-
$newProduct = Mage::getModel('catalog/product')
|
737 |
-
->setStoreId($storeFrom)
|
738 |
-
->load($productId)
|
739 |
-
->setStoreId($storeTo)
|
740 |
-
->save();
|
741 |
-
}
|
742 |
}
|
743 |
|
744 |
$this->_getSession()->addSuccess($this->__('The product has been saved.'));
|
@@ -769,6 +760,28 @@ class Mage_Adminhtml_Catalog_ProductController extends Mage_Adminhtml_Controller
|
|
769 |
}
|
770 |
}
|
771 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
/**
|
773 |
* Create product duplicate
|
774 |
*/
|
728 |
$product->save();
|
729 |
$productId = $product->getId();
|
730 |
|
|
|
|
|
|
|
731 |
if (isset($data['copy_to_stores'])) {
|
732 |
+
$this->_copyAttributesBetweenStores($data['copy_to_stores'], $product);
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
}
|
734 |
|
735 |
$this->_getSession()->addSuccess($this->__('The product has been saved.'));
|
760 |
}
|
761 |
}
|
762 |
|
763 |
+
/**
|
764 |
+
* Duplicates product attributes between stores.
|
765 |
+
* @param array $stores list of store pairs: array(fromStore => toStore, fromStore => toStore,..)
|
766 |
+
* @param Mage_Catalog_Model_Product $product whose attributes should be copied
|
767 |
+
* @return $this
|
768 |
+
*/
|
769 |
+
protected function _copyAttributesBetweenStores(array $stores, Mage_Catalog_Model_Product $product)
|
770 |
+
{
|
771 |
+
foreach ($stores as $storeTo => $storeFrom) {
|
772 |
+
$productInStore = Mage::getModel('catalog/product')
|
773 |
+
->setStoreId($storeFrom)
|
774 |
+
->load($product->getId());
|
775 |
+
Mage::dispatchEvent('product_duplicate_attributes', array(
|
776 |
+
'product' => $productInStore,
|
777 |
+
'storeTo' => $storeTo,
|
778 |
+
'storeFrom' => $storeFrom,
|
779 |
+
));
|
780 |
+
$productInStore->setStoreId($storeTo)->save();
|
781 |
+
}
|
782 |
+
return $this;
|
783 |
+
}
|
784 |
+
|
785 |
/**
|
786 |
* Create product duplicate
|
787 |
*/
|
app/code/core/Mage/Adminhtml/controllers/Customer/Cart/Product/Composite/CartController.php
CHANGED
@@ -114,6 +114,8 @@ class Mage_Adminhtml_Customer_Cart_Product_Composite_CartController extends Mage
|
|
114 |
|
115 |
/* @var $helper Mage_Adminhtml_Helper_Catalog_Product_Composite */
|
116 |
$helper = Mage::helper('adminhtml/catalog_product_composite');
|
|
|
|
|
117 |
$helper->renderConfigureResult($this, $configureResult);
|
118 |
|
119 |
return $this;
|
114 |
|
115 |
/* @var $helper Mage_Adminhtml_Helper_Catalog_Product_Composite */
|
116 |
$helper = Mage::helper('adminhtml/catalog_product_composite');
|
117 |
+
// During order creation in the backend admin has ability to add any products to order
|
118 |
+
Mage::helper('catalog/product')->setSkipSaleableCheck(true);
|
119 |
$helper->renderConfigureResult($this, $configureResult);
|
120 |
|
121 |
return $this;
|
app/code/core/Mage/Adminhtml/controllers/Customer/Wishlist/Product/Composite/WishlistController.php
CHANGED
@@ -100,6 +100,7 @@ class Mage_Adminhtml_Customer_Wishlist_Product_Composite_WishlistController
|
|
100 |
|
101 |
/* @var $helper Mage_Adminhtml_Helper_Catalog_Product_Composite */
|
102 |
$helper = Mage::helper('adminhtml/catalog_product_composite');
|
|
|
103 |
$helper->renderConfigureResult($this, $configureResult);
|
104 |
|
105 |
return $this;
|
100 |
|
101 |
/* @var $helper Mage_Adminhtml_Helper_Catalog_Product_Composite */
|
102 |
$helper = Mage::helper('adminhtml/catalog_product_composite');
|
103 |
+
Mage::helper('catalog/product')->setSkipSaleableCheck(true);
|
104 |
$helper->renderConfigureResult($this, $configureResult);
|
105 |
|
106 |
return $this;
|
app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreateController.php
CHANGED
@@ -113,6 +113,11 @@ class Mage_Adminhtml_Sales_Order_CreateController extends Mage_Adminhtml_Control
|
|
113 |
$this->_getSession()->setCurrencyId((string) $currencyId);
|
114 |
$this->_getOrderCreateModel()->setRecollect(true);
|
115 |
}
|
|
|
|
|
|
|
|
|
|
|
116 |
return $this;
|
117 |
}
|
118 |
|
@@ -526,8 +531,21 @@ class Mage_Adminhtml_Sales_Order_CreateController extends Mage_Adminhtml_Control
|
|
526 |
* @return bool
|
527 |
*/
|
528 |
protected function _isAllowed()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
{
|
530 |
$action = strtolower($this->getRequest()->getActionName());
|
|
|
|
|
|
|
531 |
switch ($action) {
|
532 |
case 'index':
|
533 |
case 'save':
|
@@ -543,7 +561,7 @@ class Mage_Adminhtml_Sales_Order_CreateController extends Mage_Adminhtml_Control
|
|
543 |
$aclResource = 'sales/order/actions';
|
544 |
break;
|
545 |
}
|
546 |
-
return
|
547 |
}
|
548 |
|
549 |
/*
|
113 |
$this->_getSession()->setCurrencyId((string) $currencyId);
|
114 |
$this->_getOrderCreateModel()->setRecollect(true);
|
115 |
}
|
116 |
+
|
117 |
+
//Notify other modules about the session quote
|
118 |
+
Mage::dispatchEvent('create_order_session_quote_initialized',
|
119 |
+
array('session_quote' => $this->_getSession()));
|
120 |
+
|
121 |
return $this;
|
122 |
}
|
123 |
|
531 |
* @return bool
|
532 |
*/
|
533 |
protected function _isAllowed()
|
534 |
+
{
|
535 |
+
return Mage::getSingleton('admin/session')->isAllowed($this->_getAclResourse());
|
536 |
+
}
|
537 |
+
|
538 |
+
/**
|
539 |
+
* Get acl resource
|
540 |
+
*
|
541 |
+
* @return string
|
542 |
+
*/
|
543 |
+
protected function _getAclResourse()
|
544 |
{
|
545 |
$action = strtolower($this->getRequest()->getActionName());
|
546 |
+
if (in_array($action, array('index', 'save')) && $this->_getSession()->getReordered()) {
|
547 |
+
$action = 'reorder';
|
548 |
+
}
|
549 |
switch ($action) {
|
550 |
case 'index':
|
551 |
case 'save':
|
561 |
$aclResource = 'sales/order/actions';
|
562 |
break;
|
563 |
}
|
564 |
+
return $aclResource;
|
565 |
}
|
566 |
|
567 |
/*
|
app/code/core/Mage/Adminhtml/controllers/Sales/Order/StatusController.php
CHANGED
@@ -205,12 +205,19 @@ class Mage_Adminhtml_Sales_Order_StatusController extends Mage_Adminhtml_Control
|
|
205 |
$this->_redirect('*/*/');
|
206 |
}
|
207 |
|
|
|
|
|
|
|
208 |
public function unassignAction()
|
209 |
{
|
210 |
$state = $this->getRequest()->getParam('state');
|
211 |
$status = $this->_initStatus();
|
212 |
if ($status) {
|
213 |
try {
|
|
|
|
|
|
|
|
|
214 |
$status->unassignState($state);
|
215 |
$this->_getSession()->addSuccess(Mage::helper('sales')->__('The order status has been unassigned.'));
|
216 |
} catch (Mage_Core_Exception $e) {
|
205 |
$this->_redirect('*/*/');
|
206 |
}
|
207 |
|
208 |
+
/**
|
209 |
+
* Unassign the status from a specific state
|
210 |
+
*/
|
211 |
public function unassignAction()
|
212 |
{
|
213 |
$state = $this->getRequest()->getParam('state');
|
214 |
$status = $this->_initStatus();
|
215 |
if ($status) {
|
216 |
try {
|
217 |
+
Mage::dispatchEvent('sales_order_status_unassign_before', array(
|
218 |
+
'status' => $status, // string {new, ...}
|
219 |
+
'state' => $state // Model {Pending, ...}
|
220 |
+
));
|
221 |
$status->unassignState($state);
|
222 |
$this->_getSession()->addSuccess(Mage::helper('sales')->__('The order status has been unassigned.'));
|
223 |
} catch (Mage_Core_Exception $e) {
|
app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.php
CHANGED
@@ -111,7 +111,16 @@ class Mage_Adminhtml_Sales_OrderController extends Mage_Adminhtml_Controller_Act
|
|
111 |
{
|
112 |
$this->_title($this->__('Sales'))->_title($this->__('Orders'));
|
113 |
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
$this->_initAction();
|
116 |
|
117 |
$this->_title(sprintf("#%s", $order->getRealOrderId()));
|
111 |
{
|
112 |
$this->_title($this->__('Sales'))->_title($this->__('Orders'));
|
113 |
|
114 |
+
$order = $this->_initOrder();
|
115 |
+
if ($order) {
|
116 |
+
|
117 |
+
$isActionsNotPermitted = $order->getActionFlag(
|
118 |
+
Mage_Sales_Model_Order::ACTION_FLAG_PRODUCTS_PERMISSION_DENIED
|
119 |
+
);
|
120 |
+
if ($isActionsNotPermitted) {
|
121 |
+
$this->_getSession()->addError($this->__('You don\'t have permissions to manage this order because of one or more products are not permitted for your website.'));
|
122 |
+
}
|
123 |
+
|
124 |
$this->_initAction();
|
125 |
|
126 |
$this->_title(sprintf("#%s", $order->getRealOrderId()));
|
app/code/core/Mage/Adminhtml/controllers/System/DesignController.php
CHANGED
@@ -75,6 +75,10 @@ class Mage_Adminhtml_System_DesignController extends Mage_Adminhtml_Controller_A
|
|
75 |
public function saveAction()
|
76 |
{
|
77 |
if ($data = $this->getRequest()->getPost()) {
|
|
|
|
|
|
|
|
|
78 |
$id = (int) $this->getRequest()->getParam('id');
|
79 |
|
80 |
$design = Mage::getModel('core/design');
|
75 |
public function saveAction()
|
76 |
{
|
77 |
if ($data = $this->getRequest()->getPost()) {
|
78 |
+
if (!empty($data['design'])) {
|
79 |
+
$data['design'] = $this->_filterDates($data['design'], array('date_from', 'date_to'));
|
80 |
+
}
|
81 |
+
|
82 |
$id = (int) $this->getRequest()->getParam('id');
|
83 |
|
84 |
$design = Mage::getModel('core/design');
|
app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php
CHANGED
@@ -115,6 +115,12 @@ class Mage_Adminhtml_Tax_RuleController extends Mage_Adminhtml_Controller_Action
|
|
115 |
$ruleModel->setCalculateSubtotal($this->getRequest()->getParam('calculate_subtotal', 0));
|
116 |
|
117 |
try {
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
$ruleModel->save();
|
119 |
|
120 |
$this->_getSingletonModel('adminhtml/session')
|
@@ -138,6 +144,31 @@ class Mage_Adminhtml_Tax_RuleController extends Mage_Adminhtml_Controller_Action
|
|
138 |
$this->_redirectReferer();
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
/**
|
142 |
* Delete action
|
143 |
*/
|
115 |
$ruleModel->setCalculateSubtotal($this->getRequest()->getParam('calculate_subtotal', 0));
|
116 |
|
117 |
try {
|
118 |
+
|
119 |
+
//Check if the rule already exists
|
120 |
+
if (!$this->_isValidRuleRequest($ruleModel)) {
|
121 |
+
return $this->_redirectReferer();
|
122 |
+
}
|
123 |
+
|
124 |
$ruleModel->save();
|
125 |
|
126 |
$this->_getSingletonModel('adminhtml/session')
|
144 |
$this->_redirectReferer();
|
145 |
}
|
146 |
|
147 |
+
|
148 |
+
/**
|
149 |
+
* Check if this a duplicate rule creation request
|
150 |
+
*
|
151 |
+
* @param Mage_Tax_Model_Calculation_Rule $ruleModel
|
152 |
+
* @return bool
|
153 |
+
*/
|
154 |
+
protected function _isValidRuleRequest($ruleModel)
|
155 |
+
{
|
156 |
+
$existingRules = $ruleModel->fetchRuleCodes($ruleModel->getTaxRate(),
|
157 |
+
$ruleModel->getTaxCustomerClass(), $ruleModel->getTaxProductClass());
|
158 |
+
|
159 |
+
//Remove the current one from the list
|
160 |
+
$existingRules = array_diff($existingRules, array($ruleModel->getCode()));
|
161 |
+
|
162 |
+
//Verify if a Rule already exists. If not throw an error
|
163 |
+
if (count($existingRules) > 0) {
|
164 |
+
$ruleCodes = implode(",", $existingRules);
|
165 |
+
$this->_getSingletonModel('adminhtml/session')->addError(
|
166 |
+
$this->_getHelperModel('tax')->__('Rules (%s) already exist for the specified Tax Rate, Customer Tax Class and Product Tax Class combinations', $ruleCodes));
|
167 |
+
return false;
|
168 |
+
}
|
169 |
+
return true;
|
170 |
+
}
|
171 |
+
|
172 |
/**
|
173 |
* Delete action
|
174 |
*/
|
app/locale/en_US/Mage_Adminhtml.csv
CHANGED
@@ -212,6 +212,7 @@
|
|
212 |
"Chosen product does not associated with any website, so url rewrite is not possible.","Chosen product does not associated with any website, so url rewrite is not possible."
|
213 |
"Clear","Clear"
|
214 |
"Close","Close"
|
|
|
215 |
"Comment text field cannot be empty.","Comment text field cannot be empty."
|
216 |
"Complete","Complete"
|
217 |
"Config form fieldset clone model required to be able to clone fields","Config form fieldset clone model required to be able to clone fields"
|
@@ -411,6 +412,7 @@
|
|
411 |
"ID Path","ID Path"
|
412 |
"IP Address","IP Address"
|
413 |
"IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
|
|
|
414 |
"If there is an account associated with %s you will receive an email with a link to reset your password.","If there is an account associated with %s you will receive an email with a link to reset your password."
|
415 |
"If this message persists, please contact the store owner.","If this message persists, please contact the store owner."
|
416 |
"If you do not specify an option value for a specific store view then the default (Admin) value will be used.","If you do not specify an option value for a specific store view then the default (Admin) value will be used."
|
@@ -819,6 +821,7 @@
|
|
819 |
"Role Users","Role Users"
|
820 |
"Roles","Roles"
|
821 |
"Roles Resources","Roles Resources"
|
|
|
822 |
"Rotate CCW","Rotate CCW"
|
823 |
"Rotate CW","Rotate CW"
|
824 |
"Run","Run"
|
212 |
"Chosen product does not associated with any website, so url rewrite is not possible.","Chosen product does not associated with any website, so url rewrite is not possible."
|
213 |
"Clear","Clear"
|
214 |
"Close","Close"
|
215 |
+
"Code","Code"
|
216 |
"Comment text field cannot be empty.","Comment text field cannot be empty."
|
217 |
"Complete","Complete"
|
218 |
"Config form fieldset clone model required to be able to clone fields","Config form fieldset clone model required to be able to clone fields"
|
412 |
"ID Path","ID Path"
|
413 |
"IP Address","IP Address"
|
414 |
"IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
|
415 |
+
"Id","Id"
|
416 |
"If there is an account associated with %s you will receive an email with a link to reset your password.","If there is an account associated with %s you will receive an email with a link to reset your password."
|
417 |
"If this message persists, please contact the store owner.","If this message persists, please contact the store owner."
|
418 |
"If you do not specify an option value for a specific store view then the default (Admin) value will be used.","If you do not specify an option value for a specific store view then the default (Admin) value will be used."
|
821 |
"Role Users","Role Users"
|
822 |
"Roles","Roles"
|
823 |
"Roles Resources","Roles Resources"
|
824 |
+
"Root Category","Root Category"
|
825 |
"Rotate CCW","Rotate CCW"
|
826 |
"Rotate CW","Rotate CW"
|
827 |
"Run","Run"
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mage_Core_Adminhtml</name>
|
4 |
-
<version>1.8.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Magento Administration Panel</summary>
|
10 |
<description>Magento Administration Panel</description>
|
11 |
-
<notes>1.8.
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
-
<date>2013-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="14cb362bffff27094d5d40a2f8d09c3d"/><dir name="Api"><file name="Buttons.php" hash="b88a052c3abd4c1f99763c8bd909b103"/><file name="Editroles.php" hash="97867ad74f00b1aef797f1433847c8e8"/><file name="Edituser.php" hash="4f93c75a7ec99b0b9499ad35a00fd72f"/><dir name="Grid"><file name="Role.php" hash="d096e114c2796b278a24e5f4569a68c9"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="93d8ad3b7a9e9a8d5ff641e2850b1a75"/></dir></dir><file name="Role.php" hash="15921497cd290df469b2685ac03d47e1"/><file name="Roles.php" hash="406b676e8251e7079ff309a205423bbb"/><dir name="Tab"><file name="Roleinfo.php" hash="43d6a8ec894b233ce09b70354ef7e9c7"/><file name="Rolesedit.php" hash="6609e636c5a2af464ef935bb26e8c0dc"/><file name="Rolesusers.php" hash="f9e75f281e23f4c624ee835f073e7ac6"/><file name="Userroles.php" hash="a0ba48a929493dd39f274a2d4cd94244"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="5c91a2e9761c9613379e22656628f4e1"/><dir name="Tab"><file name="Main.php" hash="4cb3bf33f7398181002643b44a214ffe"/><file name="Roles.php" hash="54734fb27a8191aeb0fdc40d9ae6a9fd"/></dir><file name="Tabs.php" hash="6b5f8af76b6cd621540cea52450b02c8"/></dir><file name="Edit.php" hash="e5140eb1a374c30379ea08cf4ab10413"/><file name="Grid.php" hash="513a97062650b07d5e210382f4c10371"/></dir><file name="User.php" hash="9222ec95b7b0bc69f81ba3f759fad714"/><file name="Users.php" hash="36bde29a13236084d6364435a92b5df7"/></dir><dir name="Backup"><file name="Dialogs.php" hash="6e6f3eaa99c455f3836e1ad514d22035"/><file name="Grid.php" hash="747b811a07a9939e51d81ee87a00049a"/></dir><file name="Backup.php" hash="b69dce7ad1c53e642978ae130bc9ef36"/><dir name="Cache"><file name="Additional.php" hash="c5bc97443fec7b8bbcf4a3e2c929df3a"/><file name="Grid.php" hash="bd1d000f2980b1ebe2d83e4762eb2663"/><file name="Notifications.php" hash="388dda202b693036eec27ce5011bcf93"/></dir><file name="Cache.php" hash="d86cbf0e7c22401890fd2b5bb1bec886"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="1112e6e678d4acd89c0cf37b5b8827e5"/><dir name="Checkboxes"><file name="Tree.php" hash="ccf68799e117733b1e50f494f7597a5b"/></dir><dir name="Edit"><file name="Form.php" hash="b0d6dd61478207b22fad10316e4af4ef"/></dir><file name="Edit.php" hash="38630444c73e55fd5b48bf5c805a0790"/><dir name="Helper"><file name="Image.php" hash="d1b9196f793147820dda51209d872435"/><file name="Pricestep.php" hash="66671a52dcbe6a862942142fa03864b1"/><dir name="Sortby"><file name="Available.php" hash="ad9a6dcc65c192ee1d672328decf4605"/><file name="Default.php" hash="89255ca3c1dbfaf55c7406c1e8927e33"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="b9cdab71a46ac5b106dde1c7cd12f445"/><file name="Design.php" hash="7c3000ef4a17f72e168b8d0df7f65f0c"/><file name="General.php" hash="50b19c7cbd30d43eab9e6c21fb7ce74e"/><file name="Product.php" hash="b8c0e08335fac58a555ad9b28787eef6"/></dir><file name="Tabs.php" hash="9dcfca19cc9da6130cdf5f636a20c907"/><file name="Tree.php" hash="3cefd2f3f2937f152980ede00d0197c3"/><dir name="Widget"><file name="Chooser.php" hash="df9a1c81afe40ba929a49c19a624cfd3"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="c15687f8541d95b4af15ac8cbb426775"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="47d8033c29a49cdec197f71726275793"/><file name="YearRange.php" hash="aa8920d86864f8cac6883482f598ad6e"/></dir><dir name="Fieldset"><file name="Element.php" hash="74abe367d87fbb50b6d8786cda57cc6d"/></dir></dir></dir><file name="Form.php" hash="742e963ac3ce2270b59eb5b0ae716bbe"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="87fffa31b7e03c655c3903e26f14b02e"/></dir><file name="Wysiwyg.php" hash="cf81aea12fbc13652a1910e492a238c7"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="ccc4f15e4252623ae1d27b7b1d935910"/><dir name="Tab"><file name="Front.php" hash="f9c938a6bee0412f0e5af68171bf0022"/><file name="Main.php" hash="7bbb39a9fe16aaa888f4a62439164019"/><file name="Options.php" hash="3a0279d9246383f8c5e85b481fe4f9a7"/><file name="System.php" hash="5c5cb3c429d273cdc31c27f956d99bfc"/></dir><file name="Tabs.php" hash="4a69bc27f06b870c31f18c27cd75f18b"/></dir><file name="Edit.php" hash="22b444febe618045ab9af8dd9baa3b0d"/><file name="Grid.php" hash="ff8f4d30acfa2f309121dd68e5f167a1"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="d5381bcb99a6d22529dec268f81bd806"/><file name="Created.php" hash="a4344992672bf2b191d0cf384af94a8e"/></dir></dir><dir name="Set"><file name="Grid.php" hash="fc522805e635a05d80c491b23f621280"/><dir name="Main"><file name="Formattribute.php" hash="9ec94fcbdb0a7c92219d2521e4b708c0"/><file name="Formgroup.php" hash="37231d6065456106e3f7c8c2cf005aa7"/><file name="Formset.php" hash="1a65bb9afc6dcfd3da3bdbcb9c6f420d"/><dir name="Tree"><file name="Attribute.php" hash="b3408bf680934359ad61fb3a1ff03628"/><file name="Group.php" hash="8821cc1f50c9f329074418e0f3d314b1"/></dir></dir><file name="Main.php" hash="1f3f620ab1dc738cbad6cfb714bfa942"/><dir name="Toolbar"><file name="Add.php" hash="e753748a4339fc8ad2ceeae257adf75b"/><dir name="Main"><file name="Filter.php" hash="d298aca345319fedf1585992b7cc8d86"/></dir><file name="Main.php" hash="30e4186060e3a0b1dca3cf26946126a0"/></dir></dir></dir><file name="Attribute.php" hash="45bf06134deae7923f0a7f4533df0a12"/><dir name="Composite"><file name="Configure.php" hash="0784eb10c936a5414c51f529e51ff331"/><file name="Error.php" hash="945d29ecd1de125d6b4ea5fb0b341832"/><dir name="Fieldset"><file name="Configurable.php" hash="48daa4b8b1f69863e4fc83aa246de919"/><file name="Grouped.php" hash="465bcc1d31eb11821340656034408c67"/><file name="Options.php" hash="1b42181fbd64a1de3681389d43de1b38"/><file name="Qty.php" hash="ef10caf49eb55dfeaeacf8f369ad10cc"/></dir><file name="Fieldset.php" hash="6632839adb08b0e6c97de5cbb5de5eb5"/><dir name="Update"><file name="Result.php" hash="b09291d09fab7535574aacf4fa975b63"/></dir></dir><file name="Created.php" hash="259988d8e38f210e3140051a3d59770c"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="e8b79b8dd9d2893fb19a8b92d8427dc0"/><file name="Inventory.php" hash="1337342385f31ffa5d22e05bb69e411f"/><file name="Websites.php" hash="0182de6100b35b7c0af00d0714dfae08"/></dir><file name="Tabs.php" hash="8f00ecefd9e0104595190f84c7d35787"/></dir><file name="Attribute.php" hash="bd5d105afcf566faaaa25c322d597cf4"/></dir><file name="Js.php" hash="44078b3f7313d60a30bf5dbdfa764dc7"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="1b450f5a5a5f5de1ffd2772791f84e17"/></dir><dir name="Alerts"><file name="Price.php" hash="b363ebcb98f6c5c055c2d1e58db64b82"/><file name="Stock.php" hash="f12d0c7736878e28e62c5808bf38ba79"/></dir><file name="Alerts.php" hash="beb1cf5e9f4ef73752a13ed9526f8447"/><dir name="Attributes"><file name="Create.php" hash="6b294d7a4a969d5c8b716fb7000d8d60"/></dir><file name="Attributes.php" hash="4fb21f67cb10a6cfc431534f52748d53"/><file name="Categories.php" hash="cdae4ae6e52fa305df433b8b10b82eb8"/><file name="Crosssell.php" hash="1a9c5d5023d1630a56a426288b88e85d"/><file name="Inventory.php" hash="4c6d52e12379280cd46c77dd1fe0ec2a"/><dir name="Options"><file name="Option.php" hash="a59987c123bae49aee8f0e6f3332d47c"/><dir name="Type"><file name="Abstract.php" hash="51859dac305b92c5fb12b552db46282c"/><file name="Date.php" hash="5670278435db055b5763011935588aa2"/><file name="File.php" hash="00c30b2d5d4aa7cc22b4e453afb875a2"/><file name="Select.php" hash="54867cdac0116e2c5a852653e69c8a7d"/><file name="Text.php" hash="7fb4f3b46adb5c0ec519533092e6dfce"/></dir></dir><file name="Options.php" hash="448dfbf24cd6fafe6a2a179eb10e2018"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="9cdf699d4570a0c599f8f4f5e1aed799"/></dir><file name="Group.php" hash="c47f46dcb490443a27c17d7403bcd11f"/><file name="Recurring.php" hash="d0472610e4a387493e9c282942bdf6c8"/><file name="Tier.php" hash="a0a282f951884b0b0cf6e813babafb0c"/></dir><file name="Price.php" hash="46f7d20d3e4e00ebeb5228154792505a"/><file name="Related.php" hash="9d228c80b7489b17e448959f15995e47"/><file name="Reviews.php" hash="b8206b11a3a0a875f59c6383fdc4aaeb"/><file name="Settings.php" hash="49d758cf938b859a87ed88e5ca54cd8f"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="ea7cb2f697e8c51beb285492e4a60042"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="955bdd8ce67f3b232e3447e6e3f3f3d2"/><file name="Inventory.php" hash="5b6370ec0ac9682f4ad97eefb10c2524"/></dir></dir><file name="Grid.php" hash="e309831229afdbcf68a6425b476e27b0"/><file name="Simple.php" hash="cb24a075df9ee9c404c71a0cd2ade1ed"/></dir><file name="Config.php" hash="71ff33bcf600fb545d2f27b403cb65d0"/><file name="Group.php" hash="eb57b88bb5a7c09e7b27ccff1105810d"/><file name="Settings.php" hash="abf83b4fa8348b9d1ef470625594c3f6"/></dir><dir name="Tag"><file name="Customer.php" hash="ec07a085255ccdb45c03cc1e9a8dc0f7"/></dir><file name="Tag.php" hash="d02a5da8396370bbac019bdd2bd4e9b6"/><file name="Upsell.php" hash="4fee45193bcc93b46c25510740c938c0"/><file name="Websites.php" hash="8b853e86b29bde0c99811fda3f9a9c4e"/></dir><dir name="Tabs"><file name="Configurable.php" hash="efde18999697c318131f27ca5e572621"/><file name="Grouped.php" hash="7f3439a0ccf81b8a4e7f6ec8b726406b"/></dir><file name="Tabs.php" hash="e28787cb8d8978f351a5e0b5d1b2f022"/></dir><file name="Edit.php" hash="8e83a1b7acfb8fe35d08d9034e21a3e4"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="62b7cb33879e04a77bebccad63ee525a"/></dir></dir><file name="Grid.php" hash="ede4059c6bca26c58e810c52b9ee18c1"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="675987f1d38fce4cb9144c78f117ffa3"/><file name="Boolean.php" hash="c99d1aa6d355e685d184cc108557b80a"/><file name="Config.php" hash="d49b50ee5755e3074fac0f6537419876"/><dir name="Gallery"><file name="Content.php" hash="e1deba14a684451062484a3fae124f1c"/></dir><file name="Gallery.php" hash="fb13d3e1654c33048db19363ae5621a1"/><file name="Image.php" hash="b7a50470db78522f8872710e4af7ed4a"/><dir name="Msrp"><file name="Enabled.php" hash="b45025ff3d16c566cd664d2d9350fd4b"/><file name="Price.php" hash="f4c522fecdd1e565b6c9a87318346d03"/></dir><file name="Price.php" hash="73f7da319d1eb13badea41ddb5bf04de"/><file name="Weight.php" hash="7f39529754ca42688407b5ad0a4f4e80"/></dir></dir><file name="Price.php" hash="a4f2ee075e1086eacb613981e9ee2658"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="5fe5ff2288fed89d37647efe3b372864"/></dir><file name="Chooser.php" hash="c1de913e4d4b6e1a120cdcb349b3d112"/></dir></dir><file name="Product.php" hash="9f690c50a78f178ebf4344904c6c5a92"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="33ec365913b607598ff047c0f337f4c7"/></dir><file name="Edit.php" hash="c26b273a575cf62515e39ae8658faeea"/><file name="Grid.php" hash="0d2026341e706c5e2ff5fe9704525079"/></dir><file name="Search.php" hash="12fd8b56295b279a62e687ddc7f64747"/></dir><file name="Catalog.php" hash="2c8497e22f59c8e804a917d36d5ad977"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="2b0f1e7e7ff642107a4c64ced9c8cc92"/></dir><file name="Edit.php" hash="78ac4bd7b13e7d1ac2cf3cf6ad2b48e0"/><file name="Grid.php" hash="343a879d649448b08d4369068e9c448b"/></dir><file name="Agreement.php" hash="10d76b08239b43c3ef47c2e3c67c7335"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="ffaa5799e9992cc09fe4a678a1badb6c"/></dir><file name="Edit.php" hash="793afd1e9c8f8a6bb946ac6e2f16c767"/><file name="Grid.php" hash="1b5955a1894ae99cb97c9bd658140f83"/><dir name="Widget"><file name="Chooser.php" hash="c88cddd4fa1fc3a46d153b9d37dcb74a"/></dir></dir><file name="Block.php" hash="af60e48d124808aaecf583c807e93b39"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="0b9c963b53dec1b432ecd43bcce23c3c"/><dir name="Tab"><file name="Content.php" hash="4b23915762aae0ff0633ebb194ca7f9c"/><file name="Design.php" hash="b51f81b488a19c6e65251e2da8ffb313"/><file name="Main.php" hash="190ff9649974dfa81159753f5d0b8a2f"/><file name="Meta.php" hash="a1d981ba7dccdcffd177cd987cb970cf"/></dir><file name="Tabs.php" hash="3e9aa8e45f415ed28ecf1028fba18653"/></dir><file name="Edit.php" hash="da702114c7f9ada67916cc30d8bc9796"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="0d36fdbc56100784b74977ae73c1ed7b"/></dir></dir><file name="Grid.php" hash="f7beb17eba61dfcac691942ac274065f"/><dir name="Widget"><file name="Chooser.php" hash="4e703c779233062862a6ba7b9bcac700"/></dir></dir><file name="Page.php" hash="2be7d92a7dd5fddb99370eb9781983ed"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="357f07252b79a0c80a6e6b8f043a825b"/><file name="Newfolder.php" hash="cb6b50354a192e43e079f5af003b00cb"/><file name="Uploader.php" hash="a52b83fa44051cbda35ef49952cc1991"/></dir><file name="Content.php" hash="b72e8c3b9bee8f46fc7c609da85e669f"/><file name="Tree.php" hash="15810fd1150a4ecd88871b436fe003be"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="7163f1239491b5d5451802b0fe26e65e"/><dir name="Renderer"><dir name="Attribute"><file name="Group.php" hash="b4b59b9fbfc18e349200dfbae813caef"/></dir><file name="Newpass.php" hash="bebe934efbb0abdeec30ea5b4290dbe7"/><file name="Region.php" hash="8020a6171db9c85473d97d96d6c048b0"/></dir><dir name="Tab"><file name="Account.php" hash="3e460eb76c82c1a465032ca7d1da3fda"/><file name="Addresses.php" hash="be6930630b2d5837c611fef87f610fe6"/><file name="Cart.php" hash="a7a818f2d0793a6b429705411c8be7d0"/><file name="Carts.php" hash="d8473761d22e1c2d360d1d3e0973c7ca"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="403ec26afaaa5d2ee144c7cc2cb87a14"/></dir><dir name="Renderer"><file name="Action.php" hash="b4aa613945bfc4c6f8be7fcbfbbca3b8"/><file name="Status.php" hash="d4d1a2bf5984c09f1faf51688d89102c"/></dir></dir><file name="Grid.php" hash="6da41f1dffe7a8c1955cfcac60ad22a8"/></dir><file name="Newsletter.php" hash="40e1737f72103e67ea4cee7aa62d18aa"/><file name="Orders.php" hash="a7d5ae033fe46990f0719fd96dd9715a"/><file name="Reviews.php" hash="a31fc211d7c6d27d6dda801ea8d0892c"/><file name="Tag.php" hash="51dfc3e50fe857b5b2153c087a171037"/><file name="Tags.php" hash="1bfed4615b2a8f0baa64fe030cf449b9"/><dir name="View"><file name="Accordion.php" hash="2dd9b05b154cea0dabf30a5f6fa8c831"/><file name="Cart.php" hash="6282a3a2ee476d4014de5e24156a663f"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="c1e9329b6a726d92504914687d7171f7"/></dir></dir><file name="Orders.php" hash="e2c7bbdd3e924dae411da352a967b8fe"/><file name="Sales.php" hash="be7d50b2cfa68c5c94c969da9b987ac3"/><file name="Wishlist.php" hash="69e7fb0df89c410daab955f04dd70ac4"/></dir><file name="View.php" hash="d45cc800e0d29164b4a0568e5f200804"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="02931c040a80d0bfe719763f648b7c35"/></dir></dir></dir><file name="Wishlist.php" hash="f50d5b09c0f38ba510fd71bc7e95fc0f"/></dir><file name="Tabs.php" hash="4d248cbcc82b95796dc2078b3753eb14"/></dir><file name="Edit.php" hash="a98f296115c00a2d59d033447709c2b4"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="e6da8b6c3504197a3effe2beda8879d2"/><file name="File.php" hash="938a3345843258f90e74104a954bbfba"/><file name="Image.php" hash="9b88bca33c77eca116c7455e4bffba3e"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="67f2cca4eca2212f80b7b84b7547554f"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="de08e6cd2cf21b78a672ee44c10ede45"/></dir></dir><file name="Grid.php" hash="ca3a015399ffecab96d70572ca3d7525"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="163e3d6542ffc919a8e865660662fcc5"/></dir><file name="Edit.php" hash="9222090ba1539bd872593ba2dd4d7cbd"/><file name="Grid.php" hash="618135a3d0614fe00af29ea9c6f535d4"/></dir><file name="Group.php" hash="b3d390228b5508deae5e61d60754177f"/><dir name="Online"><file name="Filter.php" hash="0088b1768bb5e8f1f2a74877faaf7c22"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="09be79e4961433db4d76d870ea0050d2"/><file name="Type.php" hash="b1b1f709d41bd6d2631be57870c6b4f5"/><file name="Url.php" hash="d92d55396ee11ac29c3637c4b82a96bd"/></dir></dir><file name="Grid.php" hash="8eb99587d67117a30190aad1b52eb311"/></dir><file name="Online.php" hash="121f09da47bec7e5cca6baa14965033f"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="acba77ceb6bffe8c668bec145ba41943"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="f2ed3d595c50354946d6fcf41c71510e"/></dir></dir></dir><file name="Customer.php" hash="6d6d5e87baf467ebda1d267318f4074a"/><dir name="Dashboard"><file name="Abstract.php" hash="a36dc104c3400a56916452ce633c8011"/><file name="Bar.php" hash="1bf3a24629af068f059bb654b7c16eff"/><file name="Diagrams.php" hash="8d0f4c71ae0d2856f145967e2f156fe2"/><file name="Graph.php" hash="8c30fa033cec29ca79d7e79be16b3fa5"/><file name="Grid.php" hash="23aa358c30bc8a6edc36f50986105326"/><file name="Grids.php" hash="24c947c6d70ac5d5f985812ee77bc0bc"/><dir name="Orders"><file name="Grid.php" hash="4ecd91c21006047b8e8c4e92c7238917"/></dir><file name="Sales.php" hash="8fb1120b5b3176865377f2b1d7a00eb3"/><dir name="Searches"><file name="Last.php" hash="3e640538917ea8de44bb76e921a7a0e6"/><dir name="Renderer"><file name="Searchquery.php" hash="a4bf4f1c263a580a0466e0393ed8ed47"/></dir><file name="Top.php" hash="387cb6d3a30fe9e8d369f37b285b2e4f"/></dir><dir name="Tab"><file name="Amounts.php" hash="b06bead5a575bf0f36e2bb2b6b357d74"/><dir name="Customers"><file name="Most.php" hash="51e07baa4e78d9698b59f787df2a9c77"/><file name="Newest.php" hash="2b1dc0a542b5e9f17fd735ea431b43f2"/></dir><file name="Orders.php" hash="ce4d338a75a4396cda3f888be5769d3b"/><dir name="Products"><file name="Ordered.php" hash="cb34feff3a85b39efbad6503d5d0fb36"/><file name="Viewed.php" hash="de39b81a7a7e0f15cbac7d45af9704ef"/></dir></dir><file name="Totals.php" hash="06af3a4eb34ee58e2e0abc8de2d06289"/></dir><file name="Dashboard.php" hash="fb6b29885f8fff4dbb214a25477ce539"/><file name="Denied.php" hash="4fec62f2e6a8058c7a07517e690fd3f9"/><dir name="Html"><file name="Date.php" hash="2f84ad9b99a205a4dc15529cc2e21fe6"/><file name="Select.php" hash="ecbfc8969ba69152c6342e336a10b9a3"/></dir><dir name="Media"><file name="Editor.php" hash="bd8c864a18d0f0132127b40697fb8f94"/><file name="Uploader.php" hash="200c48716d2a34619e43284c37fc6da2"/></dir><file name="Messages.php" hash="0a29c702e281b4de7df1a038a51e390d"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="da7f694ce51e4916dce9d89a630f7760"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="db05e0b64ade0c37fa1163716280a8a1"/></dir></dir><file name="Grid.php" hash="94396e38a63eab9a9f5b099c80dc140c"/></dir><file name="Problem.php" hash="7e5060913521778cc8c400cca198d340"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="2f6f7944479d267334d71681db0236fd"/></dir><file name="Edit.php" hash="7413b36133d3e06137ef8081c44003e2"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="63d1ff52a759c3051c7689af81597cd3"/></dir></dir><file name="Grid.php" hash="3a950bf2f862429fb7fa344c4c087c32"/><dir name="Preview"><file name="Form.php" hash="ea77143e1acf70d5459077bdd3cb1f38"/></dir><file name="Preview.php" hash="4a9e6415bef952f6effc01e1ea9d31ec"/></dir><file name="Queue.php" hash="3dd36b863c30121aa8608fa56b168766"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="4b6e4ed38f3882ea8c1fe70e67dc784f"/><file name="Website.php" hash="0794bd7ebe6eb00347879b7591b72fca"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="ed639b27a8fe8f7caa01a5b3045610ba"/></dir></dir><file name="Grid.php" hash="264b5ae7ca64abb48adb9372cce5e5ba"/></dir><file name="Subscriber.php" hash="413e7c5740af2647c7d87fb16a7cafd6"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="c2502e6ee49d578b7379052b1449100c"/></dir><file name="Edit.php" hash="0ea688d39e042db79823133dfc34d57d"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="f05d436b05872aca71a056957c40214a"/><file name="Sender.php" hash="10094ac7718d48e6082caa3a03f8eeac"/></dir></dir><file name="Grid.php" hash="151e05ba5fd9d782b48f2880680be89c"/><dir name="Preview"><file name="Form.php" hash="c50956932c646bbcce873b5277a499c2"/></dir><file name="Preview.php" hash="de8aed06b3b9d7f84e0baceffb859c8d"/></dir><file name="Template.php" hash="4e87e1680cedec541ab20ee5097d3f8c"/></dir><dir name="Notification"><file name="Baseurl.php" hash="ed669430401d7e99a76ebdea2d73af7e"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="cdbe2a01a1f5dc1404f5096e9629d56c"/><file name="Notice.php" hash="db7c7cc37eae9ed2b51dc64d67f7ee1d"/><file name="Severity.php" hash="8cd84e7f55f25abf0615cdb11713f080"/></dir></dir><file name="Grid.php" hash="7e2906df85f9450a4eff595818f25936"/><file name="Inbox.php" hash="efd6fffbc059667116257e5123da7118"/><file name="Security.php" hash="2a2844968b92349f6db64fa9829b368c"/><file name="Survey.php" hash="4404541e27c4531b80e4a6982b01fd1b"/><file name="Toolbar.php" hash="97abf0069682d6f2930ad6b483701268"/><file name="Window.php" hash="5b9bae6b0d0c261f2bff366c5de8adaa"/></dir><dir name="Page"><file name="Footer.php" hash="e392f1aaa1f61ef43c1e2a4882bf18e6"/><file name="Header.php" hash="431f28c73ae1725bb285fdabfa14bb01"/><file name="Head.php" hash="9aaff3c4e142619ea3043b0ab9313103"/><file name="Menu.php" hash="42ca2782f613336e4d9dc269ea507610"/><file name="Notices.php" hash="96ecf97e216c865366373fc875a90f76"/></dir><file name="Page.php" hash="9e0b034ec13fee581c4383158e6b2fe3"/><dir name="Permissions"><file name="Buttons.php" hash="ecf2014403ac043ab4e75d8a5ce13d6a"/><file name="Editroles.php" hash="c52b46cb6826770ad1cd86552f9436e2"/><file name="Edituser.php" hash="c63a0e2f336a34b719ee7f8e98a43d95"/><dir name="Grid"><file name="Role.php" hash="18a8e32ef7e8756bc53985ba71c7b305"/><file name="User.php" hash="9f00f22ea0dee6457b551365c406152d"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="29d2961cd85be771217b13c6d7994b65"/></dir></dir><file name="Role.php" hash="71d68b364bce13cec8b07b45ed2b45d9"/><file name="Roles.php" hash="40ca7b6cfd4a0b8b52ac350b2f993b3f"/><dir name="Tab"><file name="Roleinfo.php" hash="fb6a692dde5a500b36deef24a309ff40"/><file name="Rolesedit.php" hash="ae1797aa3103efc14a19cf0ca606a23e"/><file name="Rolesusers.php" hash="bcd8644fcacefd8d63d781ed95237d4a"/><file name="Useredit.php" hash="16da77fc23483aa3727cbac8194ed705"/><file name="Userroles.php" hash="b25a1526b328eaec65b56d5d066f0734"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="14a72b79040e7c96a7d78861fca48a26"/><dir name="Tab"><file name="Main.php" hash="9b02a7d52f4fa832ed9397a87887c7a0"/><file name="Roles.php" hash="0c6a68836763efd4a3567223b5264465"/></dir><file name="Tabs.php" hash="594015aafd5b4c43e1ef38355638c6f0"/></dir><file name="Edit.php" hash="62c908fad037ac02689ab4a1fa8f3fed"/><file name="Grid.php" hash="96782741949a6b5b71107615eaa399fa"/></dir><file name="Usernroles.php" hash="d10a1612394b106e1e162a985939a54b"/><file name="User.php" hash="075580423ad9317288648f46d8e4dbcb"/><file name="Users.php" hash="aa22bace6247915ed3bef9df1f7ee6d7"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="9a540c458f849f9f8a1c5f1216d1bb1f"/></dir><file name="Edit.php" hash="564f062fd0538a86e6742d7f49e90708"/></dir><dir name="Edit"><file name="Form.php" hash="978eb9aadd8408502eeb89864ae875f3"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="1bc8dffb03fda161ecfe02202c622cae"/><file name="Grid.php" hash="ea340816c6505d1172142d666d39315e"/><file name="List.php" hash="2e854f8f725b372e57318eaa57ff59ae"/></dir><file name="Answers.php" hash="926e09cf27de1291fb95c1bf7fb5df68"/><file name="Form.php" hash="68ff275b1fa52e7c40ae19dc51d0d10e"/></dir><file name="Tabs.php" hash="57dbf9318b9d695bf14d679b88c89933"/></dir><file name="Edit.php" hash="db220c4c513edc1a1a71077b057db253"/><file name="Grid.php" hash="085dd44aed93cd1a4e6cd25d26be1169"/><file name="Poll.php" hash="02b909547f48814624ecd10b3c791813"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="ef420b8b7a63d7c63b1cfb03424568c8"/><file name="Js.php" hash="d864a4d0feee20c815e861a1d5ae0824"/><dir name="Tab"><file name="Actions.php" hash="07b9a6ed88b76faf7bfc797ee3058082"/><file name="Conditions.php" hash="5520f7fad26b32c9b43ef61c9cf3e553"/><file name="Main.php" hash="ce0c35fe91b7076ba845589ecd91e1eb"/></dir><file name="Tabs.php" hash="b66c0a1928f4651a9b217752cb636e6c"/></dir><file name="Edit.php" hash="74730b4f241f98c6cd42e15d72ea3d03"/><file name="Grid.php" hash="efa2ad1c81ad569a40f3ef5f745f39c3"/></dir><file name="Catalog.php" hash="57bfb7a27d987bc2628e21f915fe0f07"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="f6864f70badbad2ee38fd7491d1825d4"/><dir name="Tab"><file name="Actions.php" hash="9aa7da2f6c5a1c8b4b20b2df422cb045"/><file name="Conditions.php" hash="7fb38c723f410065058f53dd057d1833"/><dir name="Coupons"><file name="Form.php" hash="546d893cf82faa870f8b25846e43979a"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="88cfb7fe30734b3db14196cc441bc6f8"/></dir></dir></dir><file name="Grid.php" hash="19787770d519f7ef91a403265f00e8cd"/></dir><file name="Coupons.php" hash="ea2aa8ed16ab2ebafdeee8bf410f3756"/><file name="Labels.php" hash="977dd120bf6ac8e6b01e5e5b3c1e75c2"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="20dc7c993a2adbd905b1527d92334cce"/></dir></dir><file name="Main.php" hash="96e4d03680f8db8f6667ab834c145bf6"/></dir><file name="Tabs.php" hash="69dccedaa48caaed4d06a61a3c9698a7"/></dir><file name="Edit.php" hash="5b3b3f86eb275bb4ff32d6d1444d58ab"/><file name="Grid.php" hash="35dd1fc3dd29c441d2cb51910474ea39"/></dir><file name="Quote.php" hash="97971c68e20338d3a3a24e6a81fb0e95"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="577c34b3b1339bfdffcfd0f782758bea"/><file name="Sku.php" hash="94889cdaae2a6fb79c5058c085518d53"/></dir><file name="Chooser.php" hash="1f009ebd37b1a62cfbc9e63a82c53f90"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="430121d5ed0eb10ae6323f10f16ecf1e"/><dir name="Tab"><file name="Form.php" hash="1f5e43627940d5b893d13471a5e9bbec"/><file name="Options.php" hash="090a7dd0e0ab742e8c18552089b5245c"/></dir><file name="Tabs.php" hash="e256cb896c3f975e06eb3696e660494f"/></dir><file name="Edit.php" hash="01298c0d33ea52ef7f18335126dbcb30"/><file name="Grid.php" hash="70acebd0de58b5abc2feb70c14469152"/><file name="Rating.php" hash="fde8997d4eef64d0e505bead4b2b859d"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="44f27dfadbdc65aca58662c9cfbd7bf4"/><file name="YtdStart.php" hash="f181c04a401a981abb3f76c9fd097c32"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="3f003382d54451bbebe9b17749264b12"/></dir><file name="Accounts.php" hash="c7a860194ab322bfee42156f03bfff5b"/><dir name="Orders"><file name="Grid.php" hash="1d927e20db8ee28c68d86acc16d97244"/></dir><file name="Orders.php" hash="e1f3092b2e08fbcfff3d338c64da6c8c"/><dir name="Totals"><file name="Grid.php" hash="fa9ca8d598493c86c3c324d905bdbce3"/></dir><file name="Totals.php" hash="40d2ce448285c3838a799137c3399bbb"/></dir><dir name="Filter"><file name="Form.php" hash="62fe6c9667c81dd6b5fa51eae4bd0f08"/></dir><dir name="Grid"><file name="Abstract.php" hash="95bbf048dd79b7d3e44045aa902c082f"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="debf137c7adf1b62ae716c6251aa5bf4"/><file name="Currency.php" hash="cc408af6e96cfd241bdb43420a2371a8"/><file name="Customer.php" hash="4cd1282a9ccadf4b947c7e8db0a64a28"/><file name="Product.php" hash="a61575514229da9c22908bb27a310b28"/></dir></dir><file name="Shopcart.php" hash="bd3c7a8b5dcc1d829649b711b9a63773"/></dir><file name="Grid.php" hash="7ef17e39ad8115cdd6c43308325b63c5"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="f67179386a2798d4996045d16e0cb4ba"/><dir name="Renderer"><file name="Purchases.php" hash="1179574d3f272078af71e89a16d54cc4"/></dir></dir><file name="Downloads.php" hash="5cffca76e018bf7b11db69a951357466"/><file name="Grid.php" hash="e191dd17a1f14c390f58749ae5cf070f"/><dir name="Lowstock"><file name="Grid.php" hash="6778017c010cc9f79e9c7c53a94408bd"/></dir><file name="Lowstock.php" hash="164ba3126eb226f26c1f712873a8af2d"/><dir name="Ordered"><file name="Grid.php" hash="3ce0dac7257356f978152453db5d04f5"/></dir><file name="Ordered.php" hash="3017610110ea5d7621cf2bdcf9db81e4"/><dir name="Sold"><file name="Grid.php" hash="8516b82102d49da16fb6947cdb1171f8"/></dir><file name="Sold.php" hash="3c30831e84f811ae84963156cf9953bf"/><dir name="Viewed"><file name="Grid.php" hash="181ed980ec96072f52dcb775c45e894c"/></dir><file name="Viewed.php" hash="272d6ed097974db758c389d082a53286"/></dir><file name="Product.php" hash="8fd09b2628eebb2c354f0ba16d49ba91"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="e8f4227a66117f0659fbcb39129dac09"/></dir><file name="Statistics.php" hash="404ba5b889697e4781275ead89beb1c5"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="32847c1a51df06bd55da6ef8038ee2d2"/></dir><file name="Customer.php" hash="a1c8daf984a870daa61e93b303c9c971"/><dir name="Detail"><file name="Grid.php" hash="96798ccd432c60de49e952e38e1255a4"/></dir><file name="Detail.php" hash="e1079aa0c7fc23917efeca7bfbf92772"/><dir name="Product"><file name="Grid.php" hash="bcd96fb23bb3a46b79c95e402c103250"/></dir><file name="Product.php" hash="9c96863d2ecac7b97bb51c9e690d2a6f"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="6da7947e5d4bbdc3231b5dfa4fa384c5"/></dir><file name="Bestsellers.php" hash="0eb48b01584454b645bc85910d8252b9"/><dir name="Coupons"><file name="Grid.php" hash="133ba4ace7598339ae336379dc2c43e7"/></dir><file name="Coupons.php" hash="409bb4ff9e83b09666c8d756c488dc5c"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="927cb353a3528ebe1db09dd7e51eaa9a"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="d0e8ebb2a05b444ed91756fd8ed7bc2b"/></dir><file name="Invoiced.php" hash="51bdc596c652873d82e5e005f21af65b"/><dir name="Refunded"><file name="Grid.php" hash="892eec6453923f4526bc462c115a3d19"/></dir><file name="Refunded.php" hash="8eabd6bd8495ad2e64114cbd9891785a"/><dir name="Sales"><file name="Grid.php" hash="7bd6cd702f50888d1685568b62fab707"/></dir><file name="Sales.php" hash="77bb1a42e11aa46700544e036b1d35ea"/><dir name="Shipping"><file name="Grid.php" hash="dd774bbb4a3458afb40e8eb5fd651e87"/></dir><file name="Shipping.php" hash="0c86a66f6f87f69bc64b9e813284be78"/><dir name="Tax"><file name="Grid.php" hash="4c324ae338298c65c06c62500ace762a"/></dir><file name="Tax.php" hash="201b9e0e1c7a3a4edfe65b1d901189be"/></dir><dir name="Search"><file name="Grid.php" hash="c26ec785a1e350bc1450daba4d538f46"/></dir><file name="Search.php" hash="07be064721f7ac978c1fb1c299dbe9c2"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="bd4ae49600d0efabda1b0ebffba3286d"/></dir><file name="Abandoned.php" hash="ca00120c7eada02d16024e7f1e05c177"/><dir name="Customer"><file name="Grid.php" hash="26c05e5cd6278f90715aab8bc23a3007"/></dir><file name="Customer.php" hash="600f168aec42adaf952c192262bd0920"/><dir name="Product"><file name="Grid.php" hash="dd226d7e189873c0eaa730a1c87ebf26"/></dir><file name="Product.php" hash="e028e99a7aaa222caf3c55083b66ae4a"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="b974045ed1560194cca1b14e49910dad"/></dir><file name="Detail.php" hash="5dd18c4c984e8381b50d8fc8c1e8c4af"/><file name="Grid.php" hash="bf553cc6bf6b62b750417f3675054164"/></dir><file name="Customer.php" hash="12750f521d729ffff5b8f4a20e5644b4"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="b8ca4e406bb5a7f0270b5373e67aefba"/></dir><file name="Detail.php" hash="3de19477e41a514f30d8f55b6ead9fa9"/><file name="Grid.php" hash="c9c3f36fff6025b39c2f1e6901264573"/></dir><file name="Popular.php" hash="174f00f41bbb895ff51a475d0fb992de"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="621974317f3703a2bdeace084c90e9e3"/></dir><file name="Detail.php" hash="b1441fe912c951295154d9049d2041ea"/><file name="Grid.php" hash="470b8a360f3c3a12cc39a5448784480e"/></dir><file name="Product.php" hash="9f42acb7cdb9ff5570366531d4eda76f"/></dir><dir name="Wishlist"><file name="Grid.php" hash="ca98a205f7bf889357ed448f8c34f0dc"/></dir><file name="Wishlist.php" hash="a7bf6cbea34d3b466756318bfa3663c1"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="bf4e0963b93994a4ea31225b22edf2c6"/></dir><file name="Add.php" hash="16b8c9cdde11db0ab72b892f8f7606f4"/><dir name="Edit"><file name="Form.php" hash="3f5074f9bcd6082953ab1b68c101c3e3"/></dir><file name="Edit.php" hash="aea02cddaad078ee62058f77f4ffb6b7"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="387b73dcecb38a4a347eecb07e448585"/></dir><dir name="Renderer"><file name="Type.php" hash="84dc97e3885d4df68b35ef7a3abe9001"/></dir></dir><file name="Grid.php" hash="cb254d7bce58d7990f13b2e238526b27"/><file name="Main.php" hash="1579e82e9a27cfd2cc5caa5ca4e8de88"/><dir name="Product"><file name="Grid.php" hash="1a9447b2465999bc2223ad9485dd5694"/></dir><dir name="Rating"><file name="Detailed.php" hash="2b5c4e709af8ed1df7c57b5b962b576e"/><file name="Summary.php" hash="6186544ce23c9584688a93246db67316"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="dc61484b0588009d332f7c4a3b800841"/></dir><file name="Creditmemo.php" hash="ffe836b370a615ea01397bddf01f11c5"/><dir name="Invoice"><file name="Grid.php" hash="656819e8fc696410454cd0f2a4c1b409"/></dir><file name="Invoice.php" hash="5975815d6b56700822ca0e12d5454f57"/><dir name="Items"><file name="Abstract.php" hash="d570fa035c4cdf8d63f81524b5e9e083"/><dir name="Column"><file name="Default.php" hash="61ea8aa52392cec5de9f33798ce295a6"/><dir name="Name"><file name="Grouped.php" hash="3d87444eed40e68d9ad189d409b3e4ee"/></dir><file name="Name.php" hash="974129ef40a57fed70f53680b7078ec5"/><file name="Qty.php" hash="ccac172ac7e2d81cc96b85708dc5c49e"/></dir><dir name="Renderer"><file name="Configurable.php" hash="9ea19d9bee45a483ceac6f0699e9b06b"/><file name="Default.php" hash="ccc7a9994a62c6021a8156ad86df9c4b"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="ec2c96e71b4c4de477b9ed9da8edd7a6"/><dir name="Address"><file name="Form.php" hash="32b4be23563bdaa58134cf578996c43a"/></dir><file name="Address.php" hash="0779f4b970daf3e147cba8d0910db5a4"/><dir name="Comments"><file name="View.php" hash="14c698dc1e4d42ae70690fe753ea8e4d"/></dir><dir name="Create"><file name="Abstract.php" hash="74ae162e8cee0a7cc92d17cf8d56866d"/><dir name="Billing"><file name="Address.php" hash="22283077b3d10f5c472899b3de3f1249"/><dir name="Method"><file name="Form.php" hash="ab8b309840407ffe9d962f5cfc6f53b1"/></dir><file name="Method.php" hash="93a8d7566b24d082cfdd094ae2474501"/></dir><file name="Comment.php" hash="dca3b9934829f4e888de3f6d94c2aa6d"/><dir name="Coupons"><file name="Form.php" hash="1fca56321fc5ab2dfd60170963d5885d"/></dir><file name="Coupons.php" hash="9e2a86f46919a8e1d2109dcf554c2259"/><dir name="Customer"><file name="Grid.php" hash="572a672850a0ef6fa457391bab514069"/></dir><file name="Customer.php" hash="126e1e675d3e0e55fa1534d8d80bb158"/><file name="Data.php" hash="14a6a084c95e113d4970f9b692c95bc5"/><dir name="Form"><file name="Abstract.php" hash="54111d57141c005fdc6c8e47eaa719d4"/><file name="Account.php" hash="3edb9d85ee53623af6a9afd2404cee9a"/><file name="Address.php" hash="b8741a14578949121e888b29c4135e6f"/></dir><file name="Form.php" hash="f4a35158033fff56c9b91a202b0c3f77"/><dir name="Giftmessage"><file name="Form.php" hash="dfcb7a46124ef3f2a84ecfdd34c71c91"/></dir><file name="Giftmessage.php" hash="da0a10fc1e8ebf61ecf6fe99620b8b26"/><file name="Header.php" hash="87958e201a91352c465236f683f6797c"/><dir name="Items"><file name="Grid.php" hash="c3db64f8a23244765fa8e747c084e578"/></dir><file name="Items.php" hash="0c1a43756a7fabdc6d58f7b6ebf4274e"/><file name="Load.php" hash="c33d51c647b7dfb331b40d2e9555ced5"/><file name="Messages.php" hash="d49f5057d43621acf58652e7987df918"/><dir name="Newsletter"><file name="Form.php" hash="7fafc7311e15204f092a3cac1f727ae1"/></dir><file name="Newsletter.php" hash="db41296072cbc669f9a818c18aad274b"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="b5065591ca844c05b6cb2ea66d0c8293"/><file name="Price.php" hash="5c3a94df24c5ff39ba28924886894fda"/><file name="Product.php" hash="392ca6ca4bdba0a557b00b7347513bc2"/><file name="Qty.php" hash="9785a0f427454b315212dc5457d960d1"/></dir></dir><file name="Grid.php" hash="84d400c7a85e3f7507616331a068f476"/></dir><file name="Search.php" hash="9ac6c1aa7e483ff674b29da4035a51b5"/><dir name="Shipping"><file name="Address.php" hash="61400acd6e41214eec61928b912d65a6"/><dir name="Method"><file name="Form.php" hash="f4c5754c60e197e9cc569d507f99d72f"/></dir><file name="Method.php" hash="b429f731ec978249ae7ffd8e59a5ed7f"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="1b6f499476d6103436872cc550d2eaa2"/><file name="Cart.php" hash="02139a25c44fec341ff2eae5fe520219"/><file name="Compared.php" hash="de3024f552a88e1879ee74fe87eb9dd0"/><file name="Pcompared.php" hash="513db20edddcc2200739b54255216f9d"/><file name="Pviewed.php" hash="0e04980589a260ca2b1062aeafb9d194"/><file name="Reorder.php" hash="bf5aba74de2816b4618f0b7951ca7f30"/><file name="Viewed.php" hash="22c4239f794de4257defa80782c8ce40"/><file name="Wishlist.php" hash="51450a4b61f032579233b5d27a8cc272"/></dir><file name="Sidebar.php" hash="15b49562996b9b039eeac76a9cff81c2"/><dir name="Store"><file name="Select.php" hash="bfe4f1e4cba4137f0d0fa3152fa55d37"/></dir><file name="Store.php" hash="bb350449eab4b7a3ffcfa2fa0fb2da5a"/><dir name="Totals"><file name="Default.php" hash="b94afd742cf2c094240182a43d775ce6"/><file name="Discount.php" hash="2b50452d43af4d9de68c3550a37ed68a"/><file name="Grandtotal.php" hash="7d16fa944c1967492cc4082c6909cedb"/><file name="Shipping.php" hash="3f8657fc5c427d3e061131abe15b1e5b"/><file name="Subtotal.php" hash="b15890486227f4f8ce001286da22a4e4"/><file name="Table.php" hash="ebfd101bb8eca71b3606a9c2f0c2e82e"/><file name="Tax.php" hash="a26e7b4283cdc06537268e5ffda2607b"/></dir><file name="Totals.php" hash="05edfdd8711a652b5e5142ae4225388f"/></dir><file name="Create.php" hash="877f5054baadce4991768863343425f2"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="3b75b612da964c93ca9e0debb5875174"/><file name="Form.php" hash="b4e307769236c78e31b1d9ed6c6d7370"/><file name="Items.php" hash="3dd0fdc8c89a4933d3634d0aa8b4a992"/></dir><file name="Create.php" hash="74f4760b643b3d8f3c09b4a9c646a499"/><file name="Totals.php" hash="a9495571f47fb4e8e5d2a56f6769f22e"/><dir name="View"><file name="Comments.php" hash="caa3c8b88ee140d67f0d685a8aa88c98"/><file name="Form.php" hash="df301b49df326116ffb73b44a645a598"/><file name="Items.php" hash="46dfc949f036509879cba13dd87f57c6"/></dir><file name="View.php" hash="2026006cc97994480ec9473cffd35ff6"/></dir><file name="Grid.php" hash="61a4cec7446fc8d71b1dd86118738f9f"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="bff70cce5ab6a54d83e804585ba89c39"/><file name="Items.php" hash="8c7655890c21ec11e4f0bb1684cf6449"/><file name="Tracking.php" hash="c5580d9bb29137a58aa3d5b9c0c7d42f"/></dir><file name="Create.php" hash="ddd2c9a11e35256f84cabb7e77409b62"/><file name="Totals.php" hash="d6ecac385c53c66d50d93c26794142ea"/><dir name="View"><file name="Comments.php" hash="31507034121df9afd8c2b646b4e6ed37"/><file name="Form.php" hash="d1d49356e7816a7dcf47527047ce3586"/><file name="Items.php" hash="baf269b2293f4b73b2c6bb093bb1a604"/></dir><file name="View.php" hash="eb6070e356348f4f8c480ab32784f19a"/></dir><file name="Payment.php" hash="68de123264c2bb2913ef6cc2b7458fc1"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="7d39ccdcd23bf1620e8d7a4040864742"/><file name="Items.php" hash="5a6781a034e4357b3e8c7baceb860498"/><file name="Tracking.php" hash="3a9cbabe93c8199b6875dae459458c79"/></dir><file name="Create.php" hash="2a6b77e5e41be0f008e6a7be50ff43ac"/><dir name="Packaging"><file name="Grid.php" hash="1122801249db45983e439d2184cad4a5"/></dir><file name="Packaging.php" hash="eca49fd770f11107b68b759bded1abf5"/><dir name="Tracking"><file name="Info.php" hash="4c1c9120054a59438250ea221cb01ca8"/></dir><dir name="View"><file name="Comments.php" hash="8a15344a9b5d886409f08b46288bc2d1"/><file name="Form.php" hash="7257cfbb71101ad0deb7e40d97150999"/><file name="Items.php" hash="f5f890b726951384772112a729566029"/><file name="Tracking.php" hash="4dbcd29f5bfc80ed06ca12df15c7ec46"/></dir><file name="View.php" hash="22e74725c79838f580e11d0f6cab1f5d"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="ccfb44485437a53f80ae4342b3a52e3b"/></dir><file name="Assign.php" hash="bc065040c3bef24cfaf98d39c61a7060"/><dir name="Edit"><file name="Form.php" hash="485d3db49d79b1598b2864401a3b53e2"/></dir><file name="Edit.php" hash="2a67a4d2e31b79cd1ebb2d5edc34c35a"/><file name="Grid.php" hash="3575a1a06a0dfc29cf0573a48287916b"/><dir name="New"><file name="Form.php" hash="756999ffd438e2bcd2d1dbf802048e2d"/></dir><file name="New.php" hash="189284878ab4ad3fd5bf45f9bfe85b06"/></dir><file name="Status.php" hash="ddc0a661f02c854bba3963b476b6a011"/><file name="Totalbar.php" hash="d5387ee3f481eb0a9fa94e33f44adadb"/><dir name="Totals"><file name="Item.php" hash="c42d13f149e316dc87a8773b1ab020cc"/><file name="Tax.php" hash="193dd7fb0c216706c63c00768383d0e0"/></dir><file name="Totals.php" hash="0086df18a48e9494f041024b8862ecae"/><dir name="View"><file name="Form.php" hash="21c65ef7813259def8b8ebff5aba9138"/><file name="Giftmessage.php" hash="d975b54fd78f7190927188f238310977"/><file name="History.php" hash="0f7d3ebda74b3b93c5aae03f7b68ea2b"/><file name="Info.php" hash="3c39d3bab29827dfbf156955a9a89c05"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="7b165f0bf36757ec989ce939771484d4"/></dir></dir><file name="Items.php" hash="9616fabdbd3aef41dc936cfda0a3e44e"/><file name="Messages.php" hash="df16c071516d176dd562aa8ab9811132"/><dir name="Tab"><file name="Creditmemos.php" hash="a4ac2eda83c00ecadfe92ed0affdfe25"/><file name="History.php" hash="83bcbedc3834f0667114eedad60adca6"/><file name="Info.php" hash="bee5dd720fbedb805eb8b4c5f3f9a643"/><file name="Invoices.php" hash="c71df05848f4c2b4d3badf3517d28bfb"/><file name="Shipments.php" hash="a9f7b5f9ae62b09c40b02503cf3df391"/><file name="Transactions.php" hash="d8e6d40ce09acd50075f154568c3d9e6"/></dir><file name="Tabs.php" hash="ff134b80984fd3f4659b3e8defb7b889"/></dir><file name="View.php" hash="8328b940ecd7827d05cc2a1c520fc372"/></dir><file name="Order.php" hash="8f79dadc6952acd640988b5056e769c1"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="f61432c0aae12bde34d3217b760b8979"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="234c145d5b84642ebbfb19aa980e5810"/></dir><file name="Shipment.php" hash="a732151690df6da90dead1bf094b0541"/><file name="Totals.php" hash="2d5e88b5201ee57f7853a66f60e60d8b"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="a1f6b53c090c9264beb8e21def4c1384"/></dir><dir name="Detail"><file name="Grid.php" hash="5355b2a8b49d22f9f4241da40f9cd32b"/></dir><file name="Detail.php" hash="d3561017f86fb542c85f42b96e7c7d4d"/><file name="Grid.php" hash="e33628560f021a4459c2767f5db92112"/></dir><file name="Transactions.php" hash="77b62bbb585b281d3787973efcfd4259"/></dir><file name="Sales.php" hash="358f5e19c76f75f8508e08dbbad7007f"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="35eaaebb42b61d4bbf9a59042e8404c8"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="2854bee962e3b9e9e20e8e41f89b6e12"/></dir><file name="Edit.php" hash="9b911253680077f4f34ccbde7aca2861"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="4b5f1379762971b29c2ec75a0a61807c"/><file name="Link.php" hash="c2d737275e4a75b75cf95e02eae39288"/><file name="Time.php" hash="bd2953078214ddeca384e844cdfd124a"/></dir></dir><file name="Grid.php" hash="6ea041ce2e32a3dd33fe821af7915b32"/></dir><file name="Sitemap.php" hash="d250d04cd3e80762998839cc37fc149c"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="ec646aef0e422b97de57008fe9a75f7c"/></dir><file name="Fieldset.php" hash="49379e33d4881ce32553e0dbe8d55b05"/></dir></dir></dir><file name="Switcher.php" hash="84bd47070917a33b9cc6e8c892ae01bd"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="ddccb6c88d84af45c623c511f2dcb44a"/></dir><file name="Edit.php" hash="d8dd0f9b978baabcb90652f8936235ba"/></dir><dir name="Cache"><file name="Edit.php" hash="630b9bbc66915705886476fa25f74b4c"/><file name="Form.php" hash="06344dd249f05f2c5e396d6a2ddcec5b"/></dir><dir name="Config"><file name="Dwstree.php" hash="61cf3485186d02128d078ba7b90bdfe1"/><file name="Edit.php" hash="75c383cf92c973718200d0b9716ba93f"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="4e1f7b0165d18b34c903ab6f2aed6821"/></dir><file name="Datetime.php" hash="a423c05c7a5dae1514d649bf012af581"/><file name="Export.php" hash="0dc1a515631a57ec70805df6849d29ee"/><file name="File.php" hash="c83352c3aa973adf77cc9704abc35e4b"/><file name="Heading.php" hash="eaa165a4f20d7bca565ae797bd88efbb"/><file name="Image.php" hash="af252eb046916be7a50fbc47168b4839"/><file name="Import.php" hash="7ba70bbf225858238a3fecc3f78b544e"/><file name="Notification.php" hash="9090787cab58913816cd49b4e099b5d3"/><file name="Regexceptions.php" hash="68ee2ae38e9c6e82bf0061f5ab52bbbe"/><dir name="Select"><file name="Allowspecific.php" hash="33ee4a2188fb0e5687d0d98a41768fe7"/><file name="Flatcatalog.php" hash="65f3813a3ef3794f88abb4321a7c0c48"/><file name="Flatproduct.php" hash="9a4676e6655fa12298b30c8264cfb41e"/></dir></dir><file name="Field.php" hash="ef2603567f5da732fdbae9c82e0cef03"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="2cf27298c5ad07fbd6ebafdf1a4dae13"/></dir><dir name="Order"><file name="Statuses.php" hash="1691d8b45b3e3ec9f6d8b7794e9b6cae"/></dir></dir><file name="Fieldset.php" hash="a2d9e48719d127539d96082d8a8b4490"/></dir><file name="Form.php" hash="da889a27baeb5ef9198682eeffc73a68"/><file name="Switcher.php" hash="5494a491d8176bc571ac7e53d9f86261"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="acdf1c0133e57f6db36e961bb204e4ef"/></dir></dir></dir><file name="Tabs.php" hash="4b861023efd9b83492302be2f5b25de9"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="b7bda9dcbe61d810994b58a7d8d29c49"/><dir name="Tab"><file name="Upload.php" hash="c5b176ae1a905666fedc96bd36cca857"/><file name="View.php" hash="822318577616588146d5e6a59ce1b632"/><file name="Wizard.php" hash="8badd54921f747ea85b06244cf11d861"/></dir><file name="Tabs.php" hash="07c10d61e013b4bb7e7925db43f680ab"/></dir><file name="Edit.php" hash="f3a5e98a5a43082725c942be20916fc8"/><file name="Grid.php" hash="018cd347d41f0a9eb9bd029c6a987825"/></dir><file name="Gui.php" hash="3906c646051d78b72021a76c14aff173"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="b8a37a8186f25a270143b14757dc5e72"/></dir><file name="Form.php" hash="3694af72af22ca40ddc5c7c83ace7d22"/><dir name="Renderer"><file name="Action.php" hash="638f92c2fd37833bbf01d815ddaf17b7"/></dir><dir name="Tab"><file name="Edit.php" hash="6f7457d1ff0fdc7641d45e81a168b124"/><file name="History.php" hash="c6efd7ca8c34ebd138a051ada7666586"/><file name="Run.php" hash="0eb5ebf1d2dd17f5e7fd3d697a1a48cf"/></dir><file name="Tabs.php" hash="e293ec12fc8e25073737c049bb647122"/></dir><file name="Edit.php" hash="49b37bd1c9c798637f324b04e24b13ed"/><file name="Grid.php" hash="58aeab2a1473ea7356d5322eb7c64a11"/><file name="Run.php" hash="f3ccb0381da6e38990880be27e8b8925"/></dir><file name="Profile.php" hash="c93fdb3c066ce2b9946b24863ab8c197"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="3c92834e9dd3a8f026c1bad90b0b71a6"/><dir name="Tab"><file name="Main.php" hash="22954e10e2aae7a7a3aab3181955b887"/><file name="Rates.php" hash="f325044ce396fe08780b5989cbf80745"/></dir><file name="Tabs.php" hash="1188422957863ed1e9463710ff73c6d5"/></dir><dir name="Rate"><file name="Matrix.php" hash="36764666ad710f9a33890beb567b8df0"/><file name="Services.php" hash="f9770c48561ec29b207c5fa97ff425db"/></dir></dir><file name="Currency.php" hash="4817d79131d14541fef9d75450a9d9b9"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="58c447ee8977cec3598a47ade7206464"/></dir><file name="Tabs.php" hash="33a9e8fe3d29f35ae5567551a8a769f0"/></dir><file name="Edit.php" hash="d593e84aef95c95bfb2d8e06bf6a0e34"/><file name="Grid.php" hash="98c96d732e2323b629bca3be406dc285"/></dir><file name="Design.php" hash="9b0dc56ab7dc9c17f78b0b0784ca2a7c"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="78c55e5de0ddd340f87e9d2f7fb6c693"/></dir><file name="Edit.php" hash="a809018608ff3a4764bbe61b3e2b1989"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="320095e4873cb25b6c27e08c66c601a9"/></dir><dir name="Renderer"><file name="Action.php" hash="daead924a364b4970f67c38e9ee3939c"/><file name="Sender.php" hash="65b7b2b11dafebaae01be28cf6cc8d19"/><file name="Type.php" hash="36397fc14119ca57375cf3295579bc9b"/></dir></dir><file name="Grid.php" hash="02b4ea9ef2e48a37b1daa3fd4566f3a3"/><file name="Preview.php" hash="97dcd17cafe97fe98b7dacc12b0c7fe3"/></dir><file name="Template.php" hash="fd5c789dfef5f117f9bde21a929c0e65"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="ad804555f02e82cd2f5987223d391297"/><file name="Group.php" hash="187341ff388195eb76a0a1762fd29865"/><file name="Website.php" hash="97202e675e85c88e59a8f21706e73a13"/></dir><file name="Delete.php" hash="68721974bb804f94eea65284846a4623"/><dir name="Edit"><file name="Form.php" hash="bbd2fd5a01db0b83cb1a3c8408b2f928"/></dir><file name="Edit.php" hash="19bbece1a9051a52f73958d6cc44bd61"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="a57a91f11924d381e8b06d0788155d5d"/><file name="Store.php" hash="660546f1ba9cfbaf3629ea6520a6cb91"/><file name="Website.php" hash="2f316c84ad8f016ed7b3c22c4948390d"/></dir></dir><file name="Grid.php" hash="4f35467eb7d04b98dd0eb4dae69efa5e"/><file name="Store.php" hash="5d097ae9579b26b1085696490fe1b32a"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="189bf98ee9d32aceaa34945715a4d97d"/></dir><file name="Edit.php" hash="2ef0ee3aab94be340d99cd756178ba22"/><file name="Grid.php" hash="ae79e80557ea72e1962d64e8d6ac1366"/></dir><file name="Variable.php" hash="22ffd92cfe537f85db91cc187cfc937e"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="262395a487d3f7ac507f6b06645c64b7"/></dir><dir name="Customer"><file name="Grid.php" hash="cdbe009dd128a2bcd56c9a0c182dec05"/></dir><file name="Customer.php" hash="e7851969a3ab6c75738a851750df4106"/><dir name="Edit"><file name="Accordion.php" hash="5a8325f5532f9907d3760e37b549edab"/><file name="Assigned.php" hash="ba3f13448771ca6601c6590b295cd086"/><file name="Form.php" hash="a1bc371fc437a77db046608f49a66b33"/></dir><file name="Edit.php" hash="926a1c11b55a81ef96b64721bc12cc0b"/><dir name="Grid"><file name="All.php" hash="890803b30098d8fe753d0d3218864f35"/><file name="Customers.php" hash="eacde2cd0e12d59f1e8722533b09581f"/><file name="Pending.php" hash="279b4b7ab758abd80a63716e178f22b2"/><file name="Products.php" hash="bf7a26134368853c24e5dec098d1d4e3"/></dir><file name="Pending.php" hash="f778cc501f1c760a775cd7eb1ea39d08"/><dir name="Product"><file name="Grid.php" hash="b409865d955963c939811a294d39739d"/></dir><file name="Product.php" hash="fe7e9a0d935c77fa09af56e4715b03fc"/><dir name="Store"><file name="Switcher.php" hash="55e0ff589d171fe58186e61da96c3b82"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="dd20a8c7f77f8314c2fc2e9a5fe49852"/></dir><file name="Edit.php" hash="5a5ead13178fd076d1cd9e5978592092"/><file name="Grid.php" hash="a1f47bb9aac9221c2e15ee2a2cf851dc"/></dir><file name="Tag.php" hash="4678ce75018fe4b62f4add4a60f5984e"/></dir><file name="Tag.php" hash="b4250808c5eb762658a12044166f6279"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="24255303a1912cb300b4baf3ec42974a"/></dir><file name="Edit.php" hash="1f61ceaf1830a1e5c95d5aa962117194"/><file name="Grid.php" hash="01663b0fd59fa591dbc97feaa1dc34c0"/></dir><file name="Class.php" hash="87b324633ef3be76a7c80643c972ff34"/><dir name="Rate"><file name="Form.php" hash="70da9e1865f9175127f812372a07e790"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="3e81c3816f0967f960134ccef70f54cf"/><file name="Data.php" hash="57b6050de5b66b66fd71b5e859adb99b"/></dir></dir><file name="Grid.php" hash="f4bc5d1f4e2053b01fc29cf19a9d4742"/><file name="ImportExport.php" hash="6f9ee869e72cdd12fdd8c339c84ebf76"/><dir name="Title"><file name="Fieldset.php" hash="e88c086dbd03c3fc2bf49eba58cb51c2"/></dir><file name="Title.php" hash="b14c33d6c4eb3e29576b0230c2d2003a"/><dir name="Toolbar"><file name="Add.php" hash="17d4fee12cdc093fef720a85e430bcb1"/><file name="Save.php" hash="4993895140e075506dbca66ab2d2511b"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="b4a45f1cd91a2bf5ec66c54e938a5979"/></dir><file name="Edit.php" hash="f098612c60c106c7ad3e1a60b4dd30c0"/><file name="Grid.php" hash="40f407ae8f3aaf8efe3f1d7317a06837"/></dir><file name="Rule.php" hash="ffb863d9f8d16baf2e577a0bfb5b7082"/></dir><file name="Template.php" hash="4dd0e902ac10071214bef7a28bb98af3"/><dir name="Text"><file name="List.php" hash="b6c9d4d2fff4129a1bd8cb511f8cb904"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="fa67719ac38a8fdb0542eb480e180839"/></dir><dir name="Edit"><file name="Form.php" hash="b20d4a8b28c2c5de23d72c5d3c660bc9"/></dir><file name="Edit.php" hash="3f40b0906145e893c8343e7993bdeac2"/><file name="Grid.php" hash="c8f8161d9621414a8a43032c930cebf1"/><file name="Link.php" hash="f08633ff8c568810e608e659b6c06003"/><dir name="Product"><file name="Grid.php" hash="411121e2f3c07e76fd433a58da852eb4"/></dir><file name="Selector.php" hash="b1b01a7f0c62b3be33bb850e19f7e31e"/></dir><file name="Urlrewrite.php" hash="dc559873b7552bc0fda08de7fa4abe38"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="6b58d4d76483dd9b7b863811474f342c"/></dir><file name="Accordion.php" hash="0eab591ae6ba8b0a06b05d6e3c261a5a"/><file name="Breadcrumbs.php" hash="0fd744f39a7eb5172822c70901931f98"/><file name="Button.php" hash="155d4b66796fddf105302cf16b870c43"/><file name="Container.php" hash="2413ce89359b559eb085829c27266092"/><dir name="Form"><file name="Container.php" hash="e0122e68119ad1a0f5da9097e59ea39f"/><dir name="Element"><file name="Dependence.php" hash="45cdfa039cb621525225dbbd68d8d2e4"/><file name="Gallery.php" hash="45ee8119965fcb57b8073b933e3d0d99"/></dir><file name="Element.php" hash="258128802e370e43a153352bf106c03f"/><dir name="Renderer"><file name="Element.php" hash="6949759fa3ca9e45577a61402458dc68"/><dir name="Fieldset"><file name="Element.php" hash="fe5faccf4487000daa5385d45ae229b0"/></dir><file name="Fieldset.php" hash="436daed1f5a9ca5b29feacade9f960c1"/></dir></dir><file name="Form.php" hash="1c4c40c8694351592664f605ea96429d"/><dir name="Grid"><file name="Block.php" hash="ff6e2dfbb4227ea6b9238bdbdd8552a0"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="0cebe4fc6aad7f61590b9881b2ac89bc"/><file name="Checkbox.php" hash="61cc780e91dbcb48b39e5161b094da44"/><file name="Country.php" hash="f65c07fa36d513421a0239c05ebdd1b3"/><file name="Date.php" hash="807f7c8f6727823886f2d0c153a25c51"/><file name="Datetime.php" hash="f1b480d9c3a6d7bb74e2f52ef1a55af8"/><file name="Interface.php" hash="56c239edde3c3de6c92e887ad61f7166"/><file name="Massaction.php" hash="c372fc3ce9e2fbcd12e2ed13d5513f51"/><file name="Price.php" hash="2f344bc359d47aaf5b942048bb2c8f9a"/><file name="Radio.php" hash="e63b2168fda1b749e84bfa26dd19a5a2"/><file name="Range.php" hash="cc0074d8cad4820f0e590892e1dcc73b"/><file name="Select.php" hash="b45f339f95dfacf8d4a72dfede4674a6"/><file name="Store.php" hash="1361dc52620fb9950bfb5d1a533c49b9"/><file name="Text.php" hash="d5aac85a05b584b39e488f2c56f143e4"/><file name="Theme.php" hash="14d8cc304489af9bda62b61b44b6c881"/></dir><dir name="Renderer"><file name="Abstract.php" hash="8071d47fe61369ab03cb30dfc9615fe4"/><file name="Action.php" hash="0c92eec9fb6af714c83e411a031d2b58"/><file name="Checkbox.php" hash="a9ac9dcbcff71919755e45a33f0618b8"/><file name="Concat.php" hash="b2c2bec4f98b9c98430dba83f31b32f4"/><file name="Country.php" hash="fd0598714e3124e43b2bb361bd2fe22e"/><file name="Currency.php" hash="cfeae94739fff049453c2e84e80c7e7d"/><file name="Date.php" hash="1dd03b0df3e2ab3fd74df96aeff60f71"/><file name="Datetime.php" hash="427b1930cd06b20bbb9fd5e3a3c02841"/><file name="Input.php" hash="6fab4f8f4584b082a86ca95749d8f79e"/><file name="Interface.php" hash="ea1f36c3051cee7dc52ee49703698bf8"/><file name="Ip.php" hash="f73383e45f92babe678fd44b5b095ad3"/><file name="Longtext.php" hash="7a8fd3b7135190ec675f1f510765a416"/><file name="Massaction.php" hash="f6035b737df2aa2290f641d1adeb7aee"/><file name="Number.php" hash="d52c5fea7b3861b76d3387add42289f7"/><file name="Options.php" hash="84144f05bbaf987578fe18cda34afa4d"/><file name="Price.php" hash="ac1e9032f003921b06aec655dc0e612f"/><file name="Radio.php" hash="da70c1bfda67c98651fe866923649b3e"/><file name="Select.php" hash="57b462763e2c9dd3ca3b16f1838cd733"/><file name="Store.php" hash="0370b51504c3047221c5fee90862eff1"/><file name="Text.php" hash="3314430d7ab112c6e5574ab6a955fc0a"/><file name="Theme.php" hash="0762a4162f2c0b9c3451678f0dff8e54"/><file name="Wrapline.php" hash="07ff85eb753ba17294ef561325dc60d1"/></dir></dir><file name="Column.php" hash="cdeb777b461a422b8a0d06b9612a4cc0"/><file name="Container.php" hash="9e54a2951f538c5139f1092b57ff77ba"/><dir name="Massaction"><file name="Abstract.php" hash="ba0b70af51d74a2ef74fc9f389681ef8"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="6dbeb432da25149d2f2aa059290cd0d2"/><file name="Interface.php" hash="616f28b116cd4bea9cf27f146c6cbab9"/></dir></dir><file name="Item.php" hash="f780b960e96f4c34c97bd39022e15873"/></dir><file name="Massaction.php" hash="f5aff40aaa61a328abff52f168c7e45a"/><file name="Serializer.php" hash="da9cfdd58247ac453cab384813cb8b5a"/></dir><file name="Grid.php" hash="e23c2b9c0c82a893b426f5911e86a8f8"/><dir name="Tab"><file name="Interface.php" hash="0fb2855258dfe855e95c8221912d8e5b"/></dir><file name="Tabs.php" hash="346d2f6095b8fb3b86b6a6f73fec97ef"/><file name="Tree.php" hash="4ce65e63aaa2bf80fd8f8e842e5dfec7"/><dir name="View"><file name="Container.php" hash="e574a3de99c054135ee6e7fd855d8c6e"/></dir></dir><file name="Widget.php" hash="b53a98a37df81cd59a22d46e1378b2a7"/></dir><dir name="Controller"><file name="Action.php" hash="bf94219e482724386c4434de145575a6"/><dir name="Report"><file name="Abstract.php" hash="59c681a4c331f3a7c68929ebbc8ab01c"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="e8ad721be046e9f225e049b6875d6605"/><file name="Invoice.php" hash="8fe8aee9073c653cf2e553a53f9ed4a1"/><file name="Shipment.php" hash="cff59c4f838e240235869a2a8d7a34d9"/></dir></dir><dir name="controllers"><file name="AjaxController.php" hash="3f015c5b40909f77c4f7eddc1022ca02"/><dir name="Api"><file name="RoleController.php" hash="6e52ef593ffd51bbeb98c0c6a5a2fb10"/><file name="UserController.php" hash="be4782c8750ca0bafd8e25fe57bc5a5e"/></dir><file name="CacheController.php" hash="f2414644d2e1e986473b689643e39551"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="f792b9c468c9d233b8cac2b508434c9c"/></dir><file name="CategoryController.php" hash="e76265ef3d5d6479c0f2965ae418d826"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="61cecb68b01f81a2ffb0eb862e8c4f98"/></dir><file name="AttributeController.php" hash="937bb3acb5b40220f61052acb4ba8dee"/><file name="DatafeedsController.php" hash="5e2b970bb08715347c9f6ce8bae734ef"/><file name="GalleryController.php" hash="06a55db29a85974a392bd8fea4dbd70f"/><file name="GroupController.php" hash="262351333569872d619c149eab13693c"/><file name="ReviewController.php" hash="6f50de1b34410db3b1fa24ec849c4750"/><file name="SetController.php" hash="65c0b6fd63d8f0cdc859dfeea0f04e24"/><file name="WidgetController.php" hash="64b2c72183ae7a649eced8b6643c274f"/></dir><file name="ProductController.php" hash="c52e83c8d0448a1f54da7fd8f037f7c9"/><file name="SearchController.php" hash="814026941f5070a30371ca3858a8fb5b"/></dir><file name="CatalogController.php" hash="ef55e0acdb1e1ed84e9db0419cc93d3b"/><dir name="Checkout"><file name="AgreementController.php" hash="47acc47c5901feeda4fb84db37e5fd21"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="32b37f11ef7b49951c61a420aba4edb1"/></dir><file name="BlockController.php" hash="9984ff7cb60a08e239d1516e776bdf27"/><dir name="Page"><file name="WidgetController.php" hash="2a39dc54a3d48af94df11664cb9366e7"/></dir><file name="PageController.php" hash="96640c497ad01a4aa9e238e3de3beb71"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="ae007ff21751f8e507dfecd4ff178192"/></dir><file name="WysiwygController.php" hash="3116b058088206d28a814dc00daa8e35"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="839f4c8314ed3acf32450850a6b5c2fa"/></dir></dir></dir><file name="ConfigController.php" hash="7e00ffaaaa1a612292f0c494a402501e"/><file name="GroupController.php" hash="01288a334cb45a01e419eb2a06648e21"/><file name="OnlineController.php" hash="21036192b71c5744727ccce2044df0dd"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="c9f4c9efcee0651240c859345c2fbebe"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="bbc5fdb7b811a7da63a70154f1dd27d2"/></dir></dir></dir></dir><file name="CustomerController.php" hash="1fdf362cdf72876544607ffd9cc99726"/><file name="DashboardController.php" hash="bf77cba89919434d31126f5e1577f4a2"/><file name="IndexController.php" hash="9426d51906bd904978760682cad794e9"/><file name="JsonController.php" hash="fb1dd09071491cbccde5bc3d5742ee24"/><dir name="Media"><file name="EditorController.php" hash="7f684964c721a24ae1be2e345a766c5f"/><file name="UploaderController.php" hash="a640d0fa8a2e6acf7b2e9500f2cade4d"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="fff6adbd0bcefbdab32d30981297dd4b"/><file name="QueueController.php" hash="d343633feeedd3d9bad5cdd699c38d78"/><file name="SubscriberController.php" hash="0ee8d4f82926baad2b9e6fe5f0060ecb"/><file name="TemplateController.php" hash="e81a0ea6442ec5edf902b15cf6fb33e9"/></dir><file name="NotificationController.php" hash="cdef5ab915cb9c66bf471878dd0a7a74"/><dir name="Permissions"><file name="RoleController.php" hash="7955143a4ebac8fbe75dd43ad333f176"/><file name="UserController.php" hash="db4848a25ec547511465a6333244fbcf"/></dir><dir name="Poll"><file name="AnswerController.php" hash="cd4f27973bb30db4da8177446bb79527"/></dir><file name="PollController.php" hash="c6918546920a1e4d7cf8597caece5e35"/><dir name="Promo"><file name="CatalogController.php" hash="8492c48930cdc7a42e94f1c8462e7f91"/><file name="QuoteController.php" hash="57158c39c845b844539e62a545d849d9"/><file name="WidgetController.php" hash="271212e499c1ea7f57cd20703a988f2a"/></dir><file name="PromoController.php" hash="ba362e93f841c52849f329183b4512bc"/><file name="RatingController.php" hash="b86decc2995d12b2e5a867e5e7668e2b"/><dir name="Report"><file name="CustomerController.php" hash="ec608e21a92d9da9d7ab412e8f20c694"/><file name="ProductController.php" hash="e937797e8d8796677f44a2a68f61b59a"/><file name="ReviewController.php" hash="e87b929a7a02e9671b495e0dc6206228"/><file name="SalesController.php" hash="1786ea33faf2e4a929b73cfc2595e476"/><file name="ShopcartController.php" hash="658f089c6f66b3f8e88a3fef9c34ca83"/><file name="StatisticsController.php" hash="d121c1ac7639508fce83b192748fc3b5"/><file name="TagController.php" hash="784e31c5eefb07ed713e0b3d207dddf8"/></dir><file name="ReportController.php" hash="3868d26148c9e969eb306454d5e029f8"/><dir name="Rss"><file name="CatalogController.php" hash="d01cc915d43dd5eb3aedd0ed060873c0"/><file name="OrderController.php" hash="619d3de2d334cb897ed6622c5e871609"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="52a3eec0309cc05d340ea327fe260493"/></dir><file name="CreditmemoController.php" hash="03bfd7bb5d837ae96243635fd8b956aa"/><file name="InvoiceController.php" hash="65ccced3c2d242e8de9bcb3c59f9598b"/><dir name="Order"><file name="CreateController.php" hash="f2769391812d1a906b318cd1f5654207"/><file name="CreditmemoController.php" hash="88d652a02108d577f749d89d90932158"/><file name="EditController.php" hash="cfa6e31341e6c7db8b8a348eb0e7a083"/><file name="InvoiceController.php" hash="4a36dfcf0a59e434a5719d6d9430ea1e"/><file name="ShipmentController.php" hash="3117f9ea1f80fda8668645c240f45805"/><file name="StatusController.php" hash="1b4f0d40a53e6afafd7048c17cda2318"/><dir name="View"><file name="GiftmessageController.php" hash="6e9719551a250f5d0a796a4a988c378f"/></dir></dir><file name="OrderController.php" hash="abeca3291ece2395b121e4a53c63aacb"/><dir name="Recurring"><file name="ProfileController.php" hash="25711f1ddcfde83d78bb074911df3ef2"/></dir><file name="ShipmentController.php" hash="30f07910ca5c04373e7496bcc8d7d440"/><file name="TransactionsController.php" hash="973cce2907a88a2c0fdfad5f6d454142"/></dir><file name="SalesController.php" hash="9ea67bd3f2fcd75cda0d656f3da1a7e7"/><file name="SitemapController.php" hash="4a853a5f2c54b4b4c7191df500e5b31a"/><file name="SurveyController.php" hash="d6984b6f6c10ca865b6a6963b77b33e8"/><dir name="System"><file name="AccountController.php" hash="1197e4221ac01d38c279597d569b91c5"/><file name="BackupController.php" hash="63ee579686f94da34bf3078b173b8a4f"/><file name="CacheController.php" hash="c33a3b7f5a903ede232647b67e04335e"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="660ab768b6aa4b428882626126821513"/></dir></dir><file name="ConfigController.php" hash="c1a43ca018972512842ea4bc9a5f91d5"/><dir name="Convert"><file name="GuiController.php" hash="38a6f916eb98e58bef098b457c0c7b87"/><file name="ProfileController.php" hash="de71275d584f5983e23f060f2093e64a"/></dir><file name="CurrencyController.php" hash="b1836d91c88596d3aafae9d4257f3068"/><file name="DesignController.php" hash="93f93e9e90bcd5e950c5af76b3342908"/><dir name="Email"><file name="TemplateController.php" hash="d75f095b2f971a01a988ab76932a4e2c"/></dir><file name="StoreController.php" hash="6931072b6d6884e57dbc5e721ffe28df"/><file name="VariableController.php" hash="56d3e318f274aaae94f518be06a19c8c"/></dir><file name="SystemController.php" hash="4ba17965739f4e86b0383d00de990983"/><file name="TagController.php" hash="80f6963468f63dafe9b68fc5dad8e9b9"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="654a769edf513cb30615d213821275d3"/><file name="ProductController.php" hash="06b424dcad41488eef5641ca55b04ef4"/></dir><file name="ClassController.php" hash="1c696f4a38e3fed2869f88cf85420ae0"/><file name="RateController.php" hash="1d7436a2c82ef4a085d1a8359998bb0c"/><file name="RuleController.php" hash="466c278e887fd4e8dc2e7c367a2e7fee"/></dir><file name="TaxController.php" hash="ace9a98440056b57e57fb9526520d5d2"/><file name="UrlrewriteController.php" hash="98b094e70c4a8fd4bf8cea3580614f97"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0037556b319726d0efead1ad7a1d6cf0"/><file name="config.xml" hash="4159a8c8ea39c5134f9c9271081063a1"/><file name="jstranslator.xml" hash="28ff351540a20a45c4ae734f91d4cb23"/></dir><file name="Exception.php" hash="69d108ee3bd1abefe5bdbc545d3d9f33"/><dir name="Helper"><file name="Addresses.php" hash="bde92caa00a1e1ef6fea6e4c2fbd1a79"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="261174e58c58172849e0288ca11912b2"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="fed567cdfa0fff9a684eedb7b25f66d8"/></dir></dir></dir></dir><file name="Catalog.php" hash="5e98e70f14a850ca5092079c6148703e"/><dir name="Dashboard"><file name="Abstract.php" hash="2c2b8f5183e07c64e561b7d31fee0457"/><file name="Data.php" hash="b9e687f31e617786523d2c0627edc9cb"/><file name="Order.php" hash="aed42e5e47bfe8a41377be241371bf0b"/></dir><file name="Data.php" hash="40f042811e9a6d8cbfb9ba63c49470de"/><file name="Js.php" hash="8282f5d21e76b5b75ab0fd2f5854bda3"/><dir name="Media"><file name="Js.php" hash="d233bf73190efbcbdda7b038250ad58b"/></dir><file name="Rss.php" hash="28ca908c6c739fbd5e7f2b16ade3df59"/><file name="Sales.php" hash="809dda967d34ac01f2507e06649101be"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="fc78e857a6ed892286071cf0b85d7ad1"/></dir><file name="Config.php" hash="52074ba07928ab6b07d372cc474659b7"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="54ea22f5b0f063ab25c809d068005968"/></dir></dir><dir name="Email"><file name="Template.php" hash="e6dc2b4312754a24944f3ea686b664d0"/></dir><file name="Extension.php" hash="e033d92cfe37b6a219e6ea49a677d3ff"/><dir name="Giftmessage"><file name="Save.php" hash="dbf8760ae4c8a0c7519593628977d856"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="e91d93c2d850f40c42ff3e38d7e5aff1"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="c4d306f625f721c5525a18867d48cda5"/></dir></dir><file name="Observer.php" hash="65832c54177e231963266895f9968dc2"/><dir name="Report"><file name="Item.php" hash="bcf980f26e8c0a45e2369215a76ba106"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="1396133fae0fce77501b7215bb4091ca"/><file name="Random.php" hash="44e7477e5a01710ee2cd41f8cda07d16"/></dir><file name="Order.php" hash="4a745e3563a62f6db3f84b353f9676ed"/></dir><dir name="Search"><file name="Catalog.php" hash="7c7582e8324ceb907de74ddb0ae42ecd"/><file name="Customer.php" hash="f1f36d5389447155225ce27f1139b736"/><file name="Order.php" hash="6c938d5565c33dd4c4c38420eb43fe8d"/></dir><dir name="Session"><file name="Quote.php" hash="de3113a5d1a529931db95d5068e54b92"/></dir><file name="Session.php" hash="553fcace1933d96adb0bcc970a5c59d1"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custompath.php" hash="5942309a56bbcb7fd1983f8fa3556b17"/><file name="Custom.php" hash="430667fb816b5e54b50f70d25d7f6321"/><file name="Observer.php" hash="c7892b3be04781d752279fe0a4643c63"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="c111d27bb8f96a7ee95b79fb509e6665"/></dir></dir><file name="Usecustompath.php" hash="a8fc9ab6d911ce3b792f3fa673603581"/><file name="Usecustom.php" hash="0320a50fb472d5177f4cf5079a2febb7"/><file name="Usesecretkey.php" hash="a8a6e3d743ee52feb752d1bc2a87473d"/></dir><file name="Baseurl.php" hash="4b8229a26e622f6b05c4b89a2111d1d3"/><file name="Cache.php" hash="faba159558453c47f1ff8cb9b7c0c99b"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="386bbced868078f229f89c5ca7b0dd2f"/></dir><dir name="Search"><file name="Type.php" hash="25f69a094faca6832a067ced53c95d75"/></dir></dir><file name="Category.php" hash="4a22c1377538d2e3aac58fcc4e3ff505"/><file name="Cookie.php" hash="7f2e830fdb3a65fdc33a4df1e2e2f825"/><dir name="Currency"><file name="Abstract.php" hash="621878f6cb098464011635cd938d3a73"/><file name="Allow.php" hash="7de02afe7ca6b20a8089ec181e90f8a1"/><file name="Base.php" hash="f95ad1c06bcc2e2a317be890b5708d94"/><file name="Cron.php" hash="331f7fa5655edb36a9c36c5c6977f821"/><file name="Default.php" hash="6355a28f04df59520038bbf0b99775de"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="f2f86a1d2c745149dec47540b686142f"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="075ff1ff57cf1fc8597ffb2de563cdbe"/></dir></dir><dir name="Show"><file name="Address.php" hash="c4e6cc0eb67c29c41de9e45d611656ce"/><file name="Customer.php" hash="ffdc8cc46e9aa5de2c66d8a3b5a199c9"/></dir></dir><file name="Datashare.php" hash="c4be86d5d75af0b7b837b4866c5eeb6c"/><dir name="Design"><file name="Exception.php" hash="12ef1288d47309070a56e0ddc8e2d1f3"/><file name="Package.php" hash="0f5bf9bb16f7c9175d6fc93b5f08cf05"/></dir><dir name="Email"><file name="Address.php" hash="06b526b38882c7bf28a0533b95d6ffd5"/><file name="Logo.php" hash="f5326822d8d520583b82466de0879e7a"/><file name="Sender.php" hash="065a8a57815502adef5610b2846a1533"/></dir><file name="Encrypted.php" hash="c37c71c323901bc16ab10e1e0d702f7e"/><file name="Filename.php" hash="5953e5bd17e3e1094d67a0ed49636d2d"/><file name="File.php" hash="dbb99074253f65a73e53b164e56ad7e0"/><dir name="Image"><file name="Favicon.php" hash="1b6adb473d15fe0c0458be72445a7cc1"/><file name="Pdf.php" hash="eedfa1e0d51e95cbd4d425dbd860fbd0"/></dir><file name="Image.php" hash="08b2ff9ce47d4bfc2042f2c9d2f94063"/><dir name="Layer"><file name="Children.php" hash="24507527b224f7bb022f5f916785afdd"/></dir><dir name="Locale"><file name="Timezone.php" hash="40ca91bb8ac2e0d9729dc787c687f351"/></dir><file name="Locale.php" hash="a386e2ebc0a1ef6298ba117cb0fd69b2"/><dir name="Log"><file name="Cron.php" hash="a24f33aa740b960c44d33b39eb7028f7"/></dir><dir name="Price"><file name="Scope.php" hash="18b19a409fb134e026960faa5131bb80"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="27c88d2a4a857ae29de6f1bad60c9b5b"/></dir></dir><file name="Secure.php" hash="4262bf6375d779d6b1788b1c8c6580c2"/><dir name="Seo"><file name="Product.php" hash="f91ae68b2ea4b655db6dd229723766a0"/></dir><dir name="Serialized"><file name="Array.php" hash="f05603ace2c4a884ee55042e7798a646"/></dir><file name="Serialized.php" hash="1f3f3d4addc465d580e15cb3670633bf"/><dir name="Shipping"><file name="Tablerate.php" hash="5a75c810e3a52e37abbfa8356b4e8a7d"/></dir><dir name="Sitemap"><file name="Cron.php" hash="e458eb34cd129ece45d82d146cd9254f"/></dir><file name="Sitemap.php" hash="cbe0c11c58c8fcc7c7c55a8b8462b77f"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="9a205727553c6813645241cf594985e0"/></dir></dir><file name="Store.php" hash="6adebc9bb0beefebb81df2bc87bc7318"/><file name="Translate.php" hash="172246c2719804b26b048cbeae024456"/></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="5daa8ac4983dace294e7615aa2eee6f7"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="f9a0c57db9c272f4cf18c6a8deeae617"/></dir><file name="Allregion.php" hash="ab2f8099ce326cb1fb263b5d2e84216b"/><dir name="Catalog"><file name="GridPerPage.php" hash="d281112f7422328718a1f24ad4dd8439"/><file name="ListMode.php" hash="cfa54a3823ae764782441edb2511b384"/><file name="ListPerPage.php" hash="b366a5917dbaa701f74dc457ca26e724"/><file name="ListSort.php" hash="483b463d3e8a7b234bcf9016202bd295"/><dir name="Search"><file name="Type.php" hash="7eed563a21cd34e2204983afb31bf99f"/></dir><file name="TimeFormat.php" hash="b6e5d76f85d99c72d311c62762b7883e"/></dir><file name="Category.php" hash="e8be2455d37599676e3683a49971daab"/><file name="Checktype.php" hash="ad88f0b215c461362846f5cc6cb8b693"/><dir name="Cms"><file name="Page.php" hash="1bc5df99c611471d2efffe5f158d54a0"/><dir name="Wysiwyg"><file name="Enabled.php" hash="793bdff1fc42bacbe635801940ef8815"/></dir></dir><dir name="Country"><file name="Full.php" hash="26477d2ded04c1cdce70b19af203d389"/></dir><file name="Country.php" hash="a20c5900136e7a57cb17f2a13d9c890a"/><dir name="Cron"><file name="Frequency.php" hash="7684a98dff8855d0101f61017ccb8bbf"/></dir><dir name="Currency"><file name="Service.php" hash="9f55c5675dff6d66e7d2586f83cdcdf9"/></dir><file name="Currency.php" hash="00ec327bdddc1346b4be5b30ad6bec35"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="8f71303d7d65a8199735a6b013d12ea8"/></dir><dir name="Group"><file name="Multiselect.php" hash="83c5c6431652e81244e5dc37a0cea612"/></dir><file name="Group.php" hash="7ba64224f9eadca13829a2c8f8f1c51d"/></dir><dir name="Date"><file name="Short.php" hash="49d896d54154b2ef5cc8e9a598e94cad"/></dir><dir name="Design"><file name="Package.php" hash="fba07b7815732fb98652a7de2f59d061"/><file name="Robots.php" hash="928cb6b78e80f23f56a1b77f9c2e06b3"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="abfbfff2f1696c58b3499de6f4b3bf1b"/></dir><dir name="Email"><file name="Identity.php" hash="03fbedd442d1e2fcc9adf6f0824e8d8c"/><file name="Method.php" hash="b864d853e871e6b3c3859ea6389009de"/><file name="Smtpauth.php" hash="1a259e7cd590dd160abd453ef82b9e06"/><file name="Template.php" hash="3f07eabd2707fe20290d46dce039fba2"/></dir><file name="Enabledisable.php" hash="7cbbb723d4311d348b582d9de5a8be1a"/><file name="Frequency.php" hash="7455078214654c342097336f53240cc3"/><file name="Language.php" hash="d9a2dc84d1deec2504c56a0d77fdc2f1"/><dir name="Locale"><file name="Country.php" hash="03b8d1369cba6dc2fad68d5b9a174e75"/><dir name="Currency"><file name="All.php" hash="98d087b2b6b2e6815f7c838be87107d9"/></dir><file name="Currency.php" hash="9a165c18a5ba4361d35dc28f0ef19737"/><file name="Timezone.php" hash="f69fc68327ce9f94f36892f8f51cbf34"/><file name="Weekdaycodes.php" hash="adc5d102c7ece4e8efee9f576b7b1526"/><file name="Weekdays.php" hash="f5853e71eaee555f697a9f99065ae45f"/></dir><file name="Locale.php" hash="5c32fb7c03f4597e35004fc07ce1ce09"/><file name="Nooptreq.php" hash="4b7fdfd06d7008b6fc1da9f41b0bc442"/><dir name="Notification"><file name="Frequency.php" hash="31152cf1dba8de0845e822436df293c0"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="4aca62dfb10891fa82bf06a68b1f4748"/><file name="Newprocessing.php" hash="c6beb7667d09a698d11a8e1ba72901e7"/><file name="Processing.php" hash="db0eae4039f5e23c6f28080a7a74221b"/></dir><file name="Status.php" hash="af51dc72091bb0371cd18447b8befbe0"/></dir><dir name="Payment"><file name="Allmethods.php" hash="da36ab1c4724d0385de95ec26e32afa6"/><file name="Allowedmethods.php" hash="9ec8978b16fa48692a3fbc1f94def4a0"/><file name="Allspecificcountries.php" hash="3357331e9beb25b8c34f094b05dd9319"/><file name="Cctype.php" hash="71e99f1d3ffc08ebfb3c3ab45c68dd4b"/></dir><dir name="Price"><file name="Scope.php" hash="4dd719340685a5f4562d98a4d3e97326"/><file name="Step.php" hash="ad3154f6ca7bcc004fa2280c51fde745"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="afa82dabfe8f30fd6576e2709739092b"/><file name="Type.php" hash="20b64ff04837819b1536b99fad579d70"/></dir><file name="Thumbnail.php" hash="bc1267f7c8e6b87934333b6ab1eb5abb"/></dir><dir name="Reports"><file name="Scope.php" hash="711afa6dec984311df82ca9afc1741c1"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="f176857c49a6e97ecf646da639a79ea8"/><file name="Allowedmethods.php" hash="22492392525bed28af6d81eb141ef72c"/><file name="Allspecificcountries.php" hash="6eb3ebd0b85d78f03bba20409e8b55b2"/><file name="Flatrate.php" hash="6d7536de960ec439dd70385e583eb2be"/><file name="Tablerate.php" hash="6c439f4d0f9b2deaa3134f5231a02610"/><file name="Taxclass.php" hash="b25b1092a002c9692deb3e1444424a78"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="dde851839f43a997e935b30fe953f04c"/><file name="Storage.php" hash="9a082b13981dead6103a18b6d0845863"/></dir></dir><file name="Store.php" hash="8433d131816c0aa1accdfbed1364ccfd"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="93e776dacc0803f7ef49e407cec37b81"/></dir><file name="Basedon.php" hash="72b88f1c39bd6b8049445ff9cbb3bb91"/><file name="Catalog.php" hash="d946fce1b89d627574c59b9fc54a1bd6"/></dir><dir name="Watermark"><file name="Position.php" hash="d6114250a47a4e690b477b30e2fac6cf"/></dir><dir name="Web"><file name="Protocol.php" hash="087447e01697f12a29971a164c3ada31"/><file name="Redirect.php" hash="8889b88265efa5bb9f51b310a5ed0611"/></dir><file name="Website.php" hash="9961cff233d7cf243d87d5446769130f"/><file name="Yesnocustom.php" hash="621fe7ccca08100c114d7aa29ee635bc"/><file name="Yesno.php" hash="2a033b5968617136021cdd5d631896fd"/></dir></dir><file name="Store.php" hash="245ea02c8e0de759d6c569357d9e0859"/></dir><file name="Url.php" hash="0df084e1de17a1e756f9e5c6a2a1f53c"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="e3901acde204f924baf932a72ba0e27a"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.8.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mage_Core_Adminhtml</name>
|
4 |
+
<version>1.8.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Magento Administration Panel</summary>
|
10 |
<description>Magento Administration Panel</description>
|
11 |
+
<notes>1.8.1.0</notes>
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
+
<date>2013-11-22</date>
|
14 |
+
<time>04:16:49</time>
|
15 |
+
<contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="14cb362bffff27094d5d40a2f8d09c3d"/><dir name="Api"><file name="Buttons.php" hash="b88a052c3abd4c1f99763c8bd909b103"/><file name="Editroles.php" hash="97867ad74f00b1aef797f1433847c8e8"/><file name="Edituser.php" hash="4f93c75a7ec99b0b9499ad35a00fd72f"/><dir name="Grid"><file name="Role.php" hash="d096e114c2796b278a24e5f4569a68c9"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="93d8ad3b7a9e9a8d5ff641e2850b1a75"/></dir></dir><file name="Role.php" hash="15921497cd290df469b2685ac03d47e1"/><file name="Roles.php" hash="406b676e8251e7079ff309a205423bbb"/><dir name="Tab"><file name="Roleinfo.php" hash="43d6a8ec894b233ce09b70354ef7e9c7"/><file name="Rolesedit.php" hash="6609e636c5a2af464ef935bb26e8c0dc"/><file name="Rolesusers.php" hash="f9e75f281e23f4c624ee835f073e7ac6"/><file name="Userroles.php" hash="a0ba48a929493dd39f274a2d4cd94244"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="5c91a2e9761c9613379e22656628f4e1"/><dir name="Tab"><file name="Main.php" hash="4cb3bf33f7398181002643b44a214ffe"/><file name="Roles.php" hash="54734fb27a8191aeb0fdc40d9ae6a9fd"/></dir><file name="Tabs.php" hash="6b5f8af76b6cd621540cea52450b02c8"/></dir><file name="Edit.php" hash="e5140eb1a374c30379ea08cf4ab10413"/><file name="Grid.php" hash="513a97062650b07d5e210382f4c10371"/></dir><file name="User.php" hash="9222ec95b7b0bc69f81ba3f759fad714"/><file name="Users.php" hash="36bde29a13236084d6364435a92b5df7"/></dir><dir name="Backup"><file name="Dialogs.php" hash="6e6f3eaa99c455f3836e1ad514d22035"/><file name="Grid.php" hash="747b811a07a9939e51d81ee87a00049a"/></dir><file name="Backup.php" hash="b69dce7ad1c53e642978ae130bc9ef36"/><dir name="Cache"><file name="Additional.php" hash="c5bc97443fec7b8bbcf4a3e2c929df3a"/><file name="Grid.php" hash="bd1d000f2980b1ebe2d83e4762eb2663"/><file name="Notifications.php" hash="388dda202b693036eec27ce5011bcf93"/></dir><file name="Cache.php" hash="d86cbf0e7c22401890fd2b5bb1bec886"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="1112e6e678d4acd89c0cf37b5b8827e5"/><dir name="Checkboxes"><file name="Tree.php" hash="ccf68799e117733b1e50f494f7597a5b"/></dir><dir name="Edit"><file name="Form.php" hash="b0d6dd61478207b22fad10316e4af4ef"/></dir><file name="Edit.php" hash="38630444c73e55fd5b48bf5c805a0790"/><dir name="Helper"><file name="Image.php" hash="d1b9196f793147820dda51209d872435"/><file name="Pricestep.php" hash="66671a52dcbe6a862942142fa03864b1"/><dir name="Sortby"><file name="Available.php" hash="ad9a6dcc65c192ee1d672328decf4605"/><file name="Default.php" hash="89255ca3c1dbfaf55c7406c1e8927e33"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="b9cdab71a46ac5b106dde1c7cd12f445"/><file name="Design.php" hash="7c3000ef4a17f72e168b8d0df7f65f0c"/><file name="General.php" hash="50b19c7cbd30d43eab9e6c21fb7ce74e"/><file name="Product.php" hash="b8c0e08335fac58a555ad9b28787eef6"/></dir><file name="Tabs.php" hash="9dcfca19cc9da6130cdf5f636a20c907"/><file name="Tree.php" hash="3cefd2f3f2937f152980ede00d0197c3"/><dir name="Widget"><file name="Chooser.php" hash="df9a1c81afe40ba929a49c19a624cfd3"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="c15687f8541d95b4af15ac8cbb426775"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="47d8033c29a49cdec197f71726275793"/><file name="YearRange.php" hash="aa8920d86864f8cac6883482f598ad6e"/></dir><dir name="Fieldset"><file name="Element.php" hash="74abe367d87fbb50b6d8786cda57cc6d"/></dir></dir></dir><file name="Form.php" hash="742e963ac3ce2270b59eb5b0ae716bbe"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="87fffa31b7e03c655c3903e26f14b02e"/></dir><file name="Wysiwyg.php" hash="cf81aea12fbc13652a1910e492a238c7"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="ccc4f15e4252623ae1d27b7b1d935910"/><dir name="Tab"><file name="Front.php" hash="f9c938a6bee0412f0e5af68171bf0022"/><file name="Main.php" hash="7bbb39a9fe16aaa888f4a62439164019"/><file name="Options.php" hash="3a0279d9246383f8c5e85b481fe4f9a7"/><file name="System.php" hash="5c5cb3c429d273cdc31c27f956d99bfc"/></dir><file name="Tabs.php" hash="4a69bc27f06b870c31f18c27cd75f18b"/></dir><file name="Edit.php" hash="22b444febe618045ab9af8dd9baa3b0d"/><file name="Grid.php" hash="ff8f4d30acfa2f309121dd68e5f167a1"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="d5381bcb99a6d22529dec268f81bd806"/><file name="Created.php" hash="a4344992672bf2b191d0cf384af94a8e"/></dir></dir><dir name="Set"><file name="Grid.php" hash="fc522805e635a05d80c491b23f621280"/><dir name="Main"><file name="Formattribute.php" hash="9ec94fcbdb0a7c92219d2521e4b708c0"/><file name="Formgroup.php" hash="37231d6065456106e3f7c8c2cf005aa7"/><file name="Formset.php" hash="1a65bb9afc6dcfd3da3bdbcb9c6f420d"/><dir name="Tree"><file name="Attribute.php" hash="b3408bf680934359ad61fb3a1ff03628"/><file name="Group.php" hash="8821cc1f50c9f329074418e0f3d314b1"/></dir></dir><file name="Main.php" hash="1f3f620ab1dc738cbad6cfb714bfa942"/><dir name="Toolbar"><file name="Add.php" hash="e753748a4339fc8ad2ceeae257adf75b"/><dir name="Main"><file name="Filter.php" hash="d298aca345319fedf1585992b7cc8d86"/></dir><file name="Main.php" hash="30e4186060e3a0b1dca3cf26946126a0"/></dir></dir></dir><file name="Attribute.php" hash="45bf06134deae7923f0a7f4533df0a12"/><dir name="Composite"><file name="Configure.php" hash="0784eb10c936a5414c51f529e51ff331"/><file name="Error.php" hash="945d29ecd1de125d6b4ea5fb0b341832"/><dir name="Fieldset"><file name="Configurable.php" hash="48daa4b8b1f69863e4fc83aa246de919"/><file name="Grouped.php" hash="465bcc1d31eb11821340656034408c67"/><file name="Options.php" hash="1b42181fbd64a1de3681389d43de1b38"/><file name="Qty.php" hash="ef10caf49eb55dfeaeacf8f369ad10cc"/></dir><file name="Fieldset.php" hash="6632839adb08b0e6c97de5cbb5de5eb5"/><dir name="Update"><file name="Result.php" hash="b09291d09fab7535574aacf4fa975b63"/></dir></dir><file name="Created.php" hash="259988d8e38f210e3140051a3d59770c"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="e8b79b8dd9d2893fb19a8b92d8427dc0"/><file name="Inventory.php" hash="1337342385f31ffa5d22e05bb69e411f"/><file name="Websites.php" hash="0182de6100b35b7c0af00d0714dfae08"/></dir><file name="Tabs.php" hash="8f00ecefd9e0104595190f84c7d35787"/></dir><file name="Attribute.php" hash="bd5d105afcf566faaaa25c322d597cf4"/></dir><file name="Js.php" hash="44078b3f7313d60a30bf5dbdfa764dc7"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="1b450f5a5a5f5de1ffd2772791f84e17"/></dir><dir name="Alerts"><file name="Price.php" hash="b363ebcb98f6c5c055c2d1e58db64b82"/><file name="Stock.php" hash="f12d0c7736878e28e62c5808bf38ba79"/></dir><file name="Alerts.php" hash="beb1cf5e9f4ef73752a13ed9526f8447"/><dir name="Attributes"><file name="Create.php" hash="6b294d7a4a969d5c8b716fb7000d8d60"/></dir><file name="Attributes.php" hash="4fb21f67cb10a6cfc431534f52748d53"/><file name="Categories.php" hash="cdae4ae6e52fa305df433b8b10b82eb8"/><file name="Crosssell.php" hash="1a9c5d5023d1630a56a426288b88e85d"/><file name="Inventory.php" hash="4c6d52e12379280cd46c77dd1fe0ec2a"/><dir name="Options"><file name="Option.php" hash="a59987c123bae49aee8f0e6f3332d47c"/><dir name="Type"><file name="Abstract.php" hash="51859dac305b92c5fb12b552db46282c"/><file name="Date.php" hash="5670278435db055b5763011935588aa2"/><file name="File.php" hash="00c30b2d5d4aa7cc22b4e453afb875a2"/><file name="Select.php" hash="54867cdac0116e2c5a852653e69c8a7d"/><file name="Text.php" hash="7fb4f3b46adb5c0ec519533092e6dfce"/></dir></dir><file name="Options.php" hash="448dfbf24cd6fafe6a2a179eb10e2018"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="9cdf699d4570a0c599f8f4f5e1aed799"/></dir><file name="Group.php" hash="c47f46dcb490443a27c17d7403bcd11f"/><file name="Recurring.php" hash="d0472610e4a387493e9c282942bdf6c8"/><file name="Tier.php" hash="a0a282f951884b0b0cf6e813babafb0c"/></dir><file name="Price.php" hash="46f7d20d3e4e00ebeb5228154792505a"/><file name="Related.php" hash="9d228c80b7489b17e448959f15995e47"/><file name="Reviews.php" hash="b8206b11a3a0a875f59c6383fdc4aaeb"/><file name="Settings.php" hash="49d758cf938b859a87ed88e5ca54cd8f"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="ea7cb2f697e8c51beb285492e4a60042"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="955bdd8ce67f3b232e3447e6e3f3f3d2"/><file name="Inventory.php" hash="5b6370ec0ac9682f4ad97eefb10c2524"/></dir></dir><file name="Grid.php" hash="e309831229afdbcf68a6425b476e27b0"/><file name="Simple.php" hash="cb24a075df9ee9c404c71a0cd2ade1ed"/></dir><file name="Config.php" hash="71ff33bcf600fb545d2f27b403cb65d0"/><file name="Group.php" hash="eb57b88bb5a7c09e7b27ccff1105810d"/><file name="Settings.php" hash="abf83b4fa8348b9d1ef470625594c3f6"/></dir><dir name="Tag"><file name="Customer.php" hash="ec07a085255ccdb45c03cc1e9a8dc0f7"/></dir><file name="Tag.php" hash="d02a5da8396370bbac019bdd2bd4e9b6"/><file name="Upsell.php" hash="4fee45193bcc93b46c25510740c938c0"/><file name="Websites.php" hash="8b853e86b29bde0c99811fda3f9a9c4e"/></dir><dir name="Tabs"><file name="Configurable.php" hash="efde18999697c318131f27ca5e572621"/><file name="Grouped.php" hash="7f3439a0ccf81b8a4e7f6ec8b726406b"/></dir><file name="Tabs.php" hash="e28787cb8d8978f351a5e0b5d1b2f022"/></dir><file name="Edit.php" hash="8e83a1b7acfb8fe35d08d9034e21a3e4"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="62b7cb33879e04a77bebccad63ee525a"/></dir></dir><file name="Grid.php" hash="ede4059c6bca26c58e810c52b9ee18c1"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="675987f1d38fce4cb9144c78f117ffa3"/><file name="Boolean.php" hash="c99d1aa6d355e685d184cc108557b80a"/><file name="Config.php" hash="d49b50ee5755e3074fac0f6537419876"/><dir name="Gallery"><file name="Content.php" hash="e1deba14a684451062484a3fae124f1c"/></dir><file name="Gallery.php" hash="fb13d3e1654c33048db19363ae5621a1"/><file name="Image.php" hash="b7a50470db78522f8872710e4af7ed4a"/><dir name="Msrp"><file name="Enabled.php" hash="b45025ff3d16c566cd664d2d9350fd4b"/><file name="Price.php" hash="f4c522fecdd1e565b6c9a87318346d03"/></dir><file name="Price.php" hash="73f7da319d1eb13badea41ddb5bf04de"/><file name="Weight.php" hash="7f39529754ca42688407b5ad0a4f4e80"/></dir></dir><file name="Price.php" hash="a4f2ee075e1086eacb613981e9ee2658"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="5fe5ff2288fed89d37647efe3b372864"/></dir><file name="Chooser.php" hash="c1de913e4d4b6e1a120cdcb349b3d112"/></dir></dir><file name="Product.php" hash="9f690c50a78f178ebf4344904c6c5a92"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="33ec365913b607598ff047c0f337f4c7"/></dir><file name="Edit.php" hash="c26b273a575cf62515e39ae8658faeea"/><file name="Grid.php" hash="0d2026341e706c5e2ff5fe9704525079"/></dir><file name="Search.php" hash="12fd8b56295b279a62e687ddc7f64747"/></dir><file name="Catalog.php" hash="2c8497e22f59c8e804a917d36d5ad977"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="2b0f1e7e7ff642107a4c64ced9c8cc92"/></dir><file name="Edit.php" hash="78ac4bd7b13e7d1ac2cf3cf6ad2b48e0"/><file name="Grid.php" hash="343a879d649448b08d4369068e9c448b"/></dir><file name="Agreement.php" hash="10d76b08239b43c3ef47c2e3c67c7335"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="ffaa5799e9992cc09fe4a678a1badb6c"/></dir><file name="Edit.php" hash="793afd1e9c8f8a6bb946ac6e2f16c767"/><file name="Grid.php" hash="1b5955a1894ae99cb97c9bd658140f83"/><dir name="Widget"><file name="Chooser.php" hash="c88cddd4fa1fc3a46d153b9d37dcb74a"/></dir></dir><file name="Block.php" hash="af60e48d124808aaecf583c807e93b39"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="0b9c963b53dec1b432ecd43bcce23c3c"/><dir name="Tab"><file name="Content.php" hash="4b23915762aae0ff0633ebb194ca7f9c"/><file name="Design.php" hash="b51f81b488a19c6e65251e2da8ffb313"/><file name="Main.php" hash="190ff9649974dfa81159753f5d0b8a2f"/><file name="Meta.php" hash="a1d981ba7dccdcffd177cd987cb970cf"/></dir><file name="Tabs.php" hash="3e9aa8e45f415ed28ecf1028fba18653"/></dir><file name="Edit.php" hash="da702114c7f9ada67916cc30d8bc9796"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="0d36fdbc56100784b74977ae73c1ed7b"/></dir></dir><file name="Grid.php" hash="f7beb17eba61dfcac691942ac274065f"/><dir name="Widget"><file name="Chooser.php" hash="4e703c779233062862a6ba7b9bcac700"/></dir></dir><file name="Page.php" hash="2be7d92a7dd5fddb99370eb9781983ed"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="357f07252b79a0c80a6e6b8f043a825b"/><file name="Newfolder.php" hash="cb6b50354a192e43e079f5af003b00cb"/><file name="Uploader.php" hash="a52b83fa44051cbda35ef49952cc1991"/></dir><file name="Content.php" hash="b72e8c3b9bee8f46fc7c609da85e669f"/><file name="Tree.php" hash="15810fd1150a4ecd88871b436fe003be"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="7163f1239491b5d5451802b0fe26e65e"/><dir name="Renderer"><dir name="Attribute"><file name="Group.php" hash="b4b59b9fbfc18e349200dfbae813caef"/></dir><file name="Newpass.php" hash="bebe934efbb0abdeec30ea5b4290dbe7"/><file name="Region.php" hash="8020a6171db9c85473d97d96d6c048b0"/></dir><dir name="Tab"><file name="Account.php" hash="3e460eb76c82c1a465032ca7d1da3fda"/><file name="Addresses.php" hash="bf7b036437c4d751d52704ced681b186"/><file name="Cart.php" hash="a7a818f2d0793a6b429705411c8be7d0"/><file name="Carts.php" hash="d8473761d22e1c2d360d1d3e0973c7ca"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="403ec26afaaa5d2ee144c7cc2cb87a14"/></dir><dir name="Renderer"><file name="Action.php" hash="b4aa613945bfc4c6f8be7fcbfbbca3b8"/><file name="Status.php" hash="d4d1a2bf5984c09f1faf51688d89102c"/></dir></dir><file name="Grid.php" hash="6da41f1dffe7a8c1955cfcac60ad22a8"/></dir><file name="Newsletter.php" hash="40e1737f72103e67ea4cee7aa62d18aa"/><file name="Orders.php" hash="a7d5ae033fe46990f0719fd96dd9715a"/><file name="Reviews.php" hash="a31fc211d7c6d27d6dda801ea8d0892c"/><file name="Tag.php" hash="51dfc3e50fe857b5b2153c087a171037"/><file name="Tags.php" hash="1bfed4615b2a8f0baa64fe030cf449b9"/><dir name="View"><file name="Accordion.php" hash="2dd9b05b154cea0dabf30a5f6fa8c831"/><file name="Cart.php" hash="6282a3a2ee476d4014de5e24156a663f"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="c1e9329b6a726d92504914687d7171f7"/></dir></dir><file name="Orders.php" hash="e2c7bbdd3e924dae411da352a967b8fe"/><file name="Sales.php" hash="be7d50b2cfa68c5c94c969da9b987ac3"/><file name="Wishlist.php" hash="69e7fb0df89c410daab955f04dd70ac4"/></dir><file name="View.php" hash="d45cc800e0d29164b4a0568e5f200804"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="02931c040a80d0bfe719763f648b7c35"/></dir></dir></dir><file name="Wishlist.php" hash="f50d5b09c0f38ba510fd71bc7e95fc0f"/></dir><file name="Tabs.php" hash="4d248cbcc82b95796dc2078b3753eb14"/></dir><file name="Edit.php" hash="a98f296115c00a2d59d033447709c2b4"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="e6da8b6c3504197a3effe2beda8879d2"/><file name="File.php" hash="938a3345843258f90e74104a954bbfba"/><file name="Image.php" hash="9b88bca33c77eca116c7455e4bffba3e"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="67f2cca4eca2212f80b7b84b7547554f"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="de08e6cd2cf21b78a672ee44c10ede45"/></dir></dir><file name="Grid.php" hash="ca3a015399ffecab96d70572ca3d7525"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="163e3d6542ffc919a8e865660662fcc5"/></dir><file name="Edit.php" hash="9222090ba1539bd872593ba2dd4d7cbd"/><file name="Grid.php" hash="618135a3d0614fe00af29ea9c6f535d4"/></dir><file name="Group.php" hash="b3d390228b5508deae5e61d60754177f"/><dir name="Online"><file name="Filter.php" hash="0088b1768bb5e8f1f2a74877faaf7c22"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="09be79e4961433db4d76d870ea0050d2"/><file name="Type.php" hash="b1b1f709d41bd6d2631be57870c6b4f5"/><file name="Url.php" hash="d92d55396ee11ac29c3637c4b82a96bd"/></dir></dir><file name="Grid.php" hash="8eb99587d67117a30190aad1b52eb311"/></dir><file name="Online.php" hash="121f09da47bec7e5cca6baa14965033f"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="acba77ceb6bffe8c668bec145ba41943"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="f2ed3d595c50354946d6fcf41c71510e"/></dir></dir></dir><file name="Customer.php" hash="6d6d5e87baf467ebda1d267318f4074a"/><dir name="Dashboard"><file name="Abstract.php" hash="a36dc104c3400a56916452ce633c8011"/><file name="Bar.php" hash="1bf3a24629af068f059bb654b7c16eff"/><file name="Diagrams.php" hash="8d0f4c71ae0d2856f145967e2f156fe2"/><file name="Graph.php" hash="8c30fa033cec29ca79d7e79be16b3fa5"/><file name="Grid.php" hash="23aa358c30bc8a6edc36f50986105326"/><file name="Grids.php" hash="24c947c6d70ac5d5f985812ee77bc0bc"/><dir name="Orders"><file name="Grid.php" hash="4ecd91c21006047b8e8c4e92c7238917"/></dir><file name="Sales.php" hash="8fb1120b5b3176865377f2b1d7a00eb3"/><dir name="Searches"><file name="Last.php" hash="3e640538917ea8de44bb76e921a7a0e6"/><dir name="Renderer"><file name="Searchquery.php" hash="a4bf4f1c263a580a0466e0393ed8ed47"/></dir><file name="Top.php" hash="387cb6d3a30fe9e8d369f37b285b2e4f"/></dir><dir name="Tab"><file name="Amounts.php" hash="b06bead5a575bf0f36e2bb2b6b357d74"/><dir name="Customers"><file name="Most.php" hash="51e07baa4e78d9698b59f787df2a9c77"/><file name="Newest.php" hash="2b1dc0a542b5e9f17fd735ea431b43f2"/></dir><file name="Orders.php" hash="ce4d338a75a4396cda3f888be5769d3b"/><dir name="Products"><file name="Ordered.php" hash="cb34feff3a85b39efbad6503d5d0fb36"/><file name="Viewed.php" hash="de39b81a7a7e0f15cbac7d45af9704ef"/></dir></dir><file name="Totals.php" hash="06af3a4eb34ee58e2e0abc8de2d06289"/></dir><file name="Dashboard.php" hash="fb6b29885f8fff4dbb214a25477ce539"/><file name="Denied.php" hash="4fec62f2e6a8058c7a07517e690fd3f9"/><dir name="Html"><file name="Date.php" hash="2f84ad9b99a205a4dc15529cc2e21fe6"/><file name="Select.php" hash="ecbfc8969ba69152c6342e336a10b9a3"/></dir><dir name="Media"><file name="Editor.php" hash="bd8c864a18d0f0132127b40697fb8f94"/><file name="Uploader.php" hash="200c48716d2a34619e43284c37fc6da2"/></dir><file name="Messages.php" hash="0a29c702e281b4de7df1a038a51e390d"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="da7f694ce51e4916dce9d89a630f7760"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="db05e0b64ade0c37fa1163716280a8a1"/></dir></dir><file name="Grid.php" hash="94396e38a63eab9a9f5b099c80dc140c"/></dir><file name="Problem.php" hash="7e5060913521778cc8c400cca198d340"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="2f6f7944479d267334d71681db0236fd"/></dir><file name="Edit.php" hash="7413b36133d3e06137ef8081c44003e2"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="63d1ff52a759c3051c7689af81597cd3"/></dir></dir><file name="Grid.php" hash="3a950bf2f862429fb7fa344c4c087c32"/><dir name="Preview"><file name="Form.php" hash="ea77143e1acf70d5459077bdd3cb1f38"/></dir><file name="Preview.php" hash="4a9e6415bef952f6effc01e1ea9d31ec"/></dir><file name="Queue.php" hash="3dd36b863c30121aa8608fa56b168766"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="4b6e4ed38f3882ea8c1fe70e67dc784f"/><file name="Website.php" hash="0794bd7ebe6eb00347879b7591b72fca"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="ed639b27a8fe8f7caa01a5b3045610ba"/></dir></dir><file name="Grid.php" hash="264b5ae7ca64abb48adb9372cce5e5ba"/></dir><file name="Subscriber.php" hash="413e7c5740af2647c7d87fb16a7cafd6"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="c2502e6ee49d578b7379052b1449100c"/></dir><file name="Edit.php" hash="0ea688d39e042db79823133dfc34d57d"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="f05d436b05872aca71a056957c40214a"/><file name="Sender.php" hash="10094ac7718d48e6082caa3a03f8eeac"/></dir></dir><file name="Grid.php" hash="151e05ba5fd9d782b48f2880680be89c"/><dir name="Preview"><file name="Form.php" hash="c50956932c646bbcce873b5277a499c2"/></dir><file name="Preview.php" hash="de8aed06b3b9d7f84e0baceffb859c8d"/></dir><file name="Template.php" hash="4e87e1680cedec541ab20ee5097d3f8c"/></dir><dir name="Notification"><file name="Baseurl.php" hash="ed669430401d7e99a76ebdea2d73af7e"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="cdbe2a01a1f5dc1404f5096e9629d56c"/><file name="Notice.php" hash="db7c7cc37eae9ed2b51dc64d67f7ee1d"/><file name="Severity.php" hash="8cd84e7f55f25abf0615cdb11713f080"/></dir></dir><file name="Grid.php" hash="7e2906df85f9450a4eff595818f25936"/><file name="Inbox.php" hash="efd6fffbc059667116257e5123da7118"/><file name="Security.php" hash="2a2844968b92349f6db64fa9829b368c"/><file name="Survey.php" hash="4404541e27c4531b80e4a6982b01fd1b"/><file name="Toolbar.php" hash="97abf0069682d6f2930ad6b483701268"/><file name="Window.php" hash="5b9bae6b0d0c261f2bff366c5de8adaa"/></dir><dir name="Page"><file name="Footer.php" hash="e392f1aaa1f61ef43c1e2a4882bf18e6"/><file name="Head.php" hash="9aaff3c4e142619ea3043b0ab9313103"/><file name="Header.php" hash="431f28c73ae1725bb285fdabfa14bb01"/><file name="Menu.php" hash="42ca2782f613336e4d9dc269ea507610"/><file name="Notices.php" hash="96ecf97e216c865366373fc875a90f76"/></dir><file name="Page.php" hash="9e0b034ec13fee581c4383158e6b2fe3"/><dir name="Permissions"><file name="Buttons.php" hash="ecf2014403ac043ab4e75d8a5ce13d6a"/><file name="Editroles.php" hash="c52b46cb6826770ad1cd86552f9436e2"/><file name="Edituser.php" hash="c63a0e2f336a34b719ee7f8e98a43d95"/><dir name="Grid"><file name="Role.php" hash="18a8e32ef7e8756bc53985ba71c7b305"/><file name="User.php" hash="9f00f22ea0dee6457b551365c406152d"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="29d2961cd85be771217b13c6d7994b65"/></dir></dir><file name="Role.php" hash="71d68b364bce13cec8b07b45ed2b45d9"/><file name="Roles.php" hash="40ca7b6cfd4a0b8b52ac350b2f993b3f"/><dir name="Tab"><file name="Roleinfo.php" hash="fb6a692dde5a500b36deef24a309ff40"/><file name="Rolesedit.php" hash="ae1797aa3103efc14a19cf0ca606a23e"/><file name="Rolesusers.php" hash="bcd8644fcacefd8d63d781ed95237d4a"/><file name="Useredit.php" hash="16da77fc23483aa3727cbac8194ed705"/><file name="Userroles.php" hash="b25a1526b328eaec65b56d5d066f0734"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="14a72b79040e7c96a7d78861fca48a26"/><dir name="Tab"><file name="Main.php" hash="9b02a7d52f4fa832ed9397a87887c7a0"/><file name="Roles.php" hash="0c6a68836763efd4a3567223b5264465"/></dir><file name="Tabs.php" hash="594015aafd5b4c43e1ef38355638c6f0"/></dir><file name="Edit.php" hash="62c908fad037ac02689ab4a1fa8f3fed"/><file name="Grid.php" hash="96782741949a6b5b71107615eaa399fa"/></dir><file name="User.php" hash="075580423ad9317288648f46d8e4dbcb"/><file name="Usernroles.php" hash="d10a1612394b106e1e162a985939a54b"/><file name="Users.php" hash="aa22bace6247915ed3bef9df1f7ee6d7"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="9a540c458f849f9f8a1c5f1216d1bb1f"/></dir><file name="Edit.php" hash="564f062fd0538a86e6742d7f49e90708"/></dir><dir name="Edit"><file name="Form.php" hash="978eb9aadd8408502eeb89864ae875f3"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="1bc8dffb03fda161ecfe02202c622cae"/><file name="Grid.php" hash="ea340816c6505d1172142d666d39315e"/><file name="List.php" hash="2e854f8f725b372e57318eaa57ff59ae"/></dir><file name="Answers.php" hash="926e09cf27de1291fb95c1bf7fb5df68"/><file name="Form.php" hash="68ff275b1fa52e7c40ae19dc51d0d10e"/></dir><file name="Tabs.php" hash="57dbf9318b9d695bf14d679b88c89933"/></dir><file name="Edit.php" hash="db220c4c513edc1a1a71077b057db253"/><file name="Grid.php" hash="085dd44aed93cd1a4e6cd25d26be1169"/><file name="Poll.php" hash="02b909547f48814624ecd10b3c791813"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="ef420b8b7a63d7c63b1cfb03424568c8"/><file name="Js.php" hash="d864a4d0feee20c815e861a1d5ae0824"/><dir name="Tab"><file name="Actions.php" hash="07b9a6ed88b76faf7bfc797ee3058082"/><file name="Conditions.php" hash="5520f7fad26b32c9b43ef61c9cf3e553"/><file name="Main.php" hash="ce0c35fe91b7076ba845589ecd91e1eb"/></dir><file name="Tabs.php" hash="b66c0a1928f4651a9b217752cb636e6c"/></dir><file name="Edit.php" hash="74730b4f241f98c6cd42e15d72ea3d03"/><file name="Grid.php" hash="efa2ad1c81ad569a40f3ef5f745f39c3"/></dir><file name="Catalog.php" hash="57bfb7a27d987bc2628e21f915fe0f07"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="f6864f70badbad2ee38fd7491d1825d4"/><dir name="Tab"><file name="Actions.php" hash="9aa7da2f6c5a1c8b4b20b2df422cb045"/><file name="Conditions.php" hash="7fb38c723f410065058f53dd057d1833"/><dir name="Coupons"><file name="Form.php" hash="546d893cf82faa870f8b25846e43979a"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="88cfb7fe30734b3db14196cc441bc6f8"/></dir></dir></dir><file name="Grid.php" hash="19787770d519f7ef91a403265f00e8cd"/></dir><file name="Coupons.php" hash="ea2aa8ed16ab2ebafdeee8bf410f3756"/><file name="Labels.php" hash="977dd120bf6ac8e6b01e5e5b3c1e75c2"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="20dc7c993a2adbd905b1527d92334cce"/></dir></dir><file name="Main.php" hash="96e4d03680f8db8f6667ab834c145bf6"/></dir><file name="Tabs.php" hash="69dccedaa48caaed4d06a61a3c9698a7"/></dir><file name="Edit.php" hash="5b3b3f86eb275bb4ff32d6d1444d58ab"/><file name="Grid.php" hash="35dd1fc3dd29c441d2cb51910474ea39"/></dir><file name="Quote.php" hash="97971c68e20338d3a3a24e6a81fb0e95"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="577c34b3b1339bfdffcfd0f782758bea"/><file name="Sku.php" hash="94889cdaae2a6fb79c5058c085518d53"/></dir><file name="Chooser.php" hash="1f009ebd37b1a62cfbc9e63a82c53f90"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="430121d5ed0eb10ae6323f10f16ecf1e"/><dir name="Tab"><file name="Form.php" hash="1f5e43627940d5b893d13471a5e9bbec"/><file name="Options.php" hash="090a7dd0e0ab742e8c18552089b5245c"/></dir><file name="Tabs.php" hash="e256cb896c3f975e06eb3696e660494f"/></dir><file name="Edit.php" hash="01298c0d33ea52ef7f18335126dbcb30"/><file name="Grid.php" hash="70acebd0de58b5abc2feb70c14469152"/><file name="Rating.php" hash="fde8997d4eef64d0e505bead4b2b859d"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="44f27dfadbdc65aca58662c9cfbd7bf4"/><file name="YtdStart.php" hash="f181c04a401a981abb3f76c9fd097c32"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="3f003382d54451bbebe9b17749264b12"/></dir><file name="Accounts.php" hash="c7a860194ab322bfee42156f03bfff5b"/><dir name="Orders"><file name="Grid.php" hash="1d927e20db8ee28c68d86acc16d97244"/></dir><file name="Orders.php" hash="e1f3092b2e08fbcfff3d338c64da6c8c"/><dir name="Totals"><file name="Grid.php" hash="fa9ca8d598493c86c3c324d905bdbce3"/></dir><file name="Totals.php" hash="40d2ce448285c3838a799137c3399bbb"/></dir><dir name="Filter"><file name="Form.php" hash="62fe6c9667c81dd6b5fa51eae4bd0f08"/></dir><dir name="Grid"><file name="Abstract.php" hash="95bbf048dd79b7d3e44045aa902c082f"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="debf137c7adf1b62ae716c6251aa5bf4"/><file name="Currency.php" hash="cc408af6e96cfd241bdb43420a2371a8"/><file name="Customer.php" hash="4cd1282a9ccadf4b947c7e8db0a64a28"/><file name="Product.php" hash="a61575514229da9c22908bb27a310b28"/></dir></dir><file name="Shopcart.php" hash="bd3c7a8b5dcc1d829649b711b9a63773"/></dir><file name="Grid.php" hash="7ef17e39ad8115cdd6c43308325b63c5"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="f67179386a2798d4996045d16e0cb4ba"/><dir name="Renderer"><file name="Purchases.php" hash="1179574d3f272078af71e89a16d54cc4"/></dir></dir><file name="Downloads.php" hash="5cffca76e018bf7b11db69a951357466"/><file name="Grid.php" hash="e191dd17a1f14c390f58749ae5cf070f"/><dir name="Lowstock"><file name="Grid.php" hash="6778017c010cc9f79e9c7c53a94408bd"/></dir><file name="Lowstock.php" hash="164ba3126eb226f26c1f712873a8af2d"/><dir name="Ordered"><file name="Grid.php" hash="3ce0dac7257356f978152453db5d04f5"/></dir><file name="Ordered.php" hash="3017610110ea5d7621cf2bdcf9db81e4"/><dir name="Sold"><file name="Grid.php" hash="8516b82102d49da16fb6947cdb1171f8"/></dir><file name="Sold.php" hash="3c30831e84f811ae84963156cf9953bf"/><dir name="Viewed"><file name="Grid.php" hash="181ed980ec96072f52dcb775c45e894c"/></dir><file name="Viewed.php" hash="272d6ed097974db758c389d082a53286"/></dir><file name="Product.php" hash="8fd09b2628eebb2c354f0ba16d49ba91"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="e8f4227a66117f0659fbcb39129dac09"/></dir><file name="Statistics.php" hash="404ba5b889697e4781275ead89beb1c5"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="32847c1a51df06bd55da6ef8038ee2d2"/></dir><file name="Customer.php" hash="a1c8daf984a870daa61e93b303c9c971"/><dir name="Detail"><file name="Grid.php" hash="96798ccd432c60de49e952e38e1255a4"/></dir><file name="Detail.php" hash="e1079aa0c7fc23917efeca7bfbf92772"/><dir name="Product"><file name="Grid.php" hash="bcd96fb23bb3a46b79c95e402c103250"/></dir><file name="Product.php" hash="9c96863d2ecac7b97bb51c9e690d2a6f"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="6da7947e5d4bbdc3231b5dfa4fa384c5"/></dir><file name="Bestsellers.php" hash="0eb48b01584454b645bc85910d8252b9"/><dir name="Coupons"><file name="Grid.php" hash="133ba4ace7598339ae336379dc2c43e7"/></dir><file name="Coupons.php" hash="409bb4ff9e83b09666c8d756c488dc5c"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="927cb353a3528ebe1db09dd7e51eaa9a"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="d0e8ebb2a05b444ed91756fd8ed7bc2b"/></dir><file name="Invoiced.php" hash="51bdc596c652873d82e5e005f21af65b"/><dir name="Refunded"><file name="Grid.php" hash="892eec6453923f4526bc462c115a3d19"/></dir><file name="Refunded.php" hash="8eabd6bd8495ad2e64114cbd9891785a"/><dir name="Sales"><file name="Grid.php" hash="7bd6cd702f50888d1685568b62fab707"/></dir><file name="Sales.php" hash="77bb1a42e11aa46700544e036b1d35ea"/><dir name="Shipping"><file name="Grid.php" hash="dd774bbb4a3458afb40e8eb5fd651e87"/></dir><file name="Shipping.php" hash="0c86a66f6f87f69bc64b9e813284be78"/><dir name="Tax"><file name="Grid.php" hash="4c324ae338298c65c06c62500ace762a"/></dir><file name="Tax.php" hash="201b9e0e1c7a3a4edfe65b1d901189be"/></dir><dir name="Search"><file name="Grid.php" hash="c26ec785a1e350bc1450daba4d538f46"/></dir><file name="Search.php" hash="07be064721f7ac978c1fb1c299dbe9c2"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="bd4ae49600d0efabda1b0ebffba3286d"/></dir><file name="Abandoned.php" hash="ca00120c7eada02d16024e7f1e05c177"/><dir name="Customer"><file name="Grid.php" hash="26c05e5cd6278f90715aab8bc23a3007"/></dir><file name="Customer.php" hash="600f168aec42adaf952c192262bd0920"/><dir name="Product"><file name="Grid.php" hash="dd226d7e189873c0eaa730a1c87ebf26"/></dir><file name="Product.php" hash="e028e99a7aaa222caf3c55083b66ae4a"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="b974045ed1560194cca1b14e49910dad"/></dir><file name="Detail.php" hash="5dd18c4c984e8381b50d8fc8c1e8c4af"/><file name="Grid.php" hash="bf553cc6bf6b62b750417f3675054164"/></dir><file name="Customer.php" hash="12750f521d729ffff5b8f4a20e5644b4"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="b8ca4e406bb5a7f0270b5373e67aefba"/></dir><file name="Detail.php" hash="3de19477e41a514f30d8f55b6ead9fa9"/><file name="Grid.php" hash="c9c3f36fff6025b39c2f1e6901264573"/></dir><file name="Popular.php" hash="174f00f41bbb895ff51a475d0fb992de"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="621974317f3703a2bdeace084c90e9e3"/></dir><file name="Detail.php" hash="b1441fe912c951295154d9049d2041ea"/><file name="Grid.php" hash="470b8a360f3c3a12cc39a5448784480e"/></dir><file name="Product.php" hash="9f42acb7cdb9ff5570366531d4eda76f"/></dir><dir name="Wishlist"><file name="Grid.php" hash="ca98a205f7bf889357ed448f8c34f0dc"/></dir><file name="Wishlist.php" hash="a7bf6cbea34d3b466756318bfa3663c1"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="bf4e0963b93994a4ea31225b22edf2c6"/></dir><file name="Add.php" hash="16b8c9cdde11db0ab72b892f8f7606f4"/><dir name="Edit"><file name="Form.php" hash="3f5074f9bcd6082953ab1b68c101c3e3"/></dir><file name="Edit.php" hash="9cd5afee2dd01e7a2a4bc7f29c8d2b45"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="387b73dcecb38a4a347eecb07e448585"/></dir><dir name="Renderer"><file name="Type.php" hash="84dc97e3885d4df68b35ef7a3abe9001"/></dir></dir><file name="Grid.php" hash="cb254d7bce58d7990f13b2e238526b27"/><file name="Main.php" hash="1579e82e9a27cfd2cc5caa5ca4e8de88"/><dir name="Product"><file name="Grid.php" hash="1a9447b2465999bc2223ad9485dd5694"/></dir><dir name="Rating"><file name="Detailed.php" hash="39982b106c3088ddb7d81ce1ef131e82"/><file name="Summary.php" hash="6186544ce23c9584688a93246db67316"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="dc61484b0588009d332f7c4a3b800841"/></dir><file name="Creditmemo.php" hash="ffe836b370a615ea01397bddf01f11c5"/><dir name="Invoice"><file name="Grid.php" hash="656819e8fc696410454cd0f2a4c1b409"/></dir><file name="Invoice.php" hash="5975815d6b56700822ca0e12d5454f57"/><dir name="Items"><file name="Abstract.php" hash="d570fa035c4cdf8d63f81524b5e9e083"/><dir name="Column"><file name="Default.php" hash="61ea8aa52392cec5de9f33798ce295a6"/><dir name="Name"><file name="Grouped.php" hash="3d87444eed40e68d9ad189d409b3e4ee"/></dir><file name="Name.php" hash="974129ef40a57fed70f53680b7078ec5"/><file name="Qty.php" hash="ccac172ac7e2d81cc96b85708dc5c49e"/></dir><dir name="Renderer"><file name="Configurable.php" hash="9ea19d9bee45a483ceac6f0699e9b06b"/><file name="Default.php" hash="ccc7a9994a62c6021a8156ad86df9c4b"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="ec2c96e71b4c4de477b9ed9da8edd7a6"/><dir name="Address"><file name="Form.php" hash="32b4be23563bdaa58134cf578996c43a"/></dir><file name="Address.php" hash="0779f4b970daf3e147cba8d0910db5a4"/><dir name="Comments"><file name="View.php" hash="14c698dc1e4d42ae70690fe753ea8e4d"/></dir><dir name="Create"><file name="Abstract.php" hash="74ae162e8cee0a7cc92d17cf8d56866d"/><dir name="Billing"><file name="Address.php" hash="22283077b3d10f5c472899b3de3f1249"/><dir name="Method"><file name="Form.php" hash="ab8b309840407ffe9d962f5cfc6f53b1"/></dir><file name="Method.php" hash="93a8d7566b24d082cfdd094ae2474501"/></dir><file name="Comment.php" hash="dca3b9934829f4e888de3f6d94c2aa6d"/><dir name="Coupons"><file name="Form.php" hash="1fca56321fc5ab2dfd60170963d5885d"/></dir><file name="Coupons.php" hash="9e2a86f46919a8e1d2109dcf554c2259"/><dir name="Customer"><file name="Grid.php" hash="572a672850a0ef6fa457391bab514069"/></dir><file name="Customer.php" hash="126e1e675d3e0e55fa1534d8d80bb158"/><file name="Data.php" hash="14a6a084c95e113d4970f9b692c95bc5"/><dir name="Form"><file name="Abstract.php" hash="54111d57141c005fdc6c8e47eaa719d4"/><file name="Account.php" hash="3edb9d85ee53623af6a9afd2404cee9a"/><file name="Address.php" hash="b8741a14578949121e888b29c4135e6f"/></dir><file name="Form.php" hash="f4a35158033fff56c9b91a202b0c3f77"/><dir name="Giftmessage"><file name="Form.php" hash="dfcb7a46124ef3f2a84ecfdd34c71c91"/></dir><file name="Giftmessage.php" hash="da0a10fc1e8ebf61ecf6fe99620b8b26"/><file name="Header.php" hash="87958e201a91352c465236f683f6797c"/><dir name="Items"><file name="Grid.php" hash="3210710ee0b82dec43e6553f2519a60e"/></dir><file name="Items.php" hash="0c1a43756a7fabdc6d58f7b6ebf4274e"/><file name="Load.php" hash="c33d51c647b7dfb331b40d2e9555ced5"/><file name="Messages.php" hash="d49f5057d43621acf58652e7987df918"/><dir name="Newsletter"><file name="Form.php" hash="7fafc7311e15204f092a3cac1f727ae1"/></dir><file name="Newsletter.php" hash="db41296072cbc669f9a818c18aad274b"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="b5065591ca844c05b6cb2ea66d0c8293"/><file name="Price.php" hash="5c3a94df24c5ff39ba28924886894fda"/><file name="Product.php" hash="392ca6ca4bdba0a557b00b7347513bc2"/><file name="Qty.php" hash="9785a0f427454b315212dc5457d960d1"/></dir></dir><file name="Grid.php" hash="84d400c7a85e3f7507616331a068f476"/></dir><file name="Search.php" hash="9ac6c1aa7e483ff674b29da4035a51b5"/><dir name="Shipping"><file name="Address.php" hash="61400acd6e41214eec61928b912d65a6"/><dir name="Method"><file name="Form.php" hash="f4c5754c60e197e9cc569d507f99d72f"/></dir><file name="Method.php" hash="b429f731ec978249ae7ffd8e59a5ed7f"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="1b6f499476d6103436872cc550d2eaa2"/><file name="Cart.php" hash="02139a25c44fec341ff2eae5fe520219"/><file name="Compared.php" hash="de3024f552a88e1879ee74fe87eb9dd0"/><file name="Pcompared.php" hash="513db20edddcc2200739b54255216f9d"/><file name="Pviewed.php" hash="0e04980589a260ca2b1062aeafb9d194"/><file name="Reorder.php" hash="bf5aba74de2816b4618f0b7951ca7f30"/><file name="Viewed.php" hash="22c4239f794de4257defa80782c8ce40"/><file name="Wishlist.php" hash="51450a4b61f032579233b5d27a8cc272"/></dir><file name="Sidebar.php" hash="15b49562996b9b039eeac76a9cff81c2"/><dir name="Store"><file name="Select.php" hash="bfe4f1e4cba4137f0d0fa3152fa55d37"/></dir><file name="Store.php" hash="bb350449eab4b7a3ffcfa2fa0fb2da5a"/><dir name="Totals"><file name="Default.php" hash="b94afd742cf2c094240182a43d775ce6"/><file name="Discount.php" hash="2b50452d43af4d9de68c3550a37ed68a"/><file name="Grandtotal.php" hash="7d16fa944c1967492cc4082c6909cedb"/><file name="Shipping.php" hash="3f8657fc5c427d3e061131abe15b1e5b"/><file name="Subtotal.php" hash="b15890486227f4f8ce001286da22a4e4"/><file name="Table.php" hash="ebfd101bb8eca71b3606a9c2f0c2e82e"/><file name="Tax.php" hash="a26e7b4283cdc06537268e5ffda2607b"/></dir><file name="Totals.php" hash="05edfdd8711a652b5e5142ae4225388f"/></dir><file name="Create.php" hash="25cbe19ece2c2e9eb41588d554faf14f"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="3b75b612da964c93ca9e0debb5875174"/><file name="Form.php" hash="b4e307769236c78e31b1d9ed6c6d7370"/><file name="Items.php" hash="3dd0fdc8c89a4933d3634d0aa8b4a992"/></dir><file name="Create.php" hash="74f4760b643b3d8f3c09b4a9c646a499"/><file name="Totals.php" hash="a9495571f47fb4e8e5d2a56f6769f22e"/><dir name="View"><file name="Comments.php" hash="caa3c8b88ee140d67f0d685a8aa88c98"/><file name="Form.php" hash="df301b49df326116ffb73b44a645a598"/><file name="Items.php" hash="46dfc949f036509879cba13dd87f57c6"/></dir><file name="View.php" hash="2026006cc97994480ec9473cffd35ff6"/></dir><file name="Grid.php" hash="61a4cec7446fc8d71b1dd86118738f9f"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="bff70cce5ab6a54d83e804585ba89c39"/><file name="Items.php" hash="8c7655890c21ec11e4f0bb1684cf6449"/><file name="Tracking.php" hash="c5580d9bb29137a58aa3d5b9c0c7d42f"/></dir><file name="Create.php" hash="ddd2c9a11e35256f84cabb7e77409b62"/><file name="Totals.php" hash="d6ecac385c53c66d50d93c26794142ea"/><dir name="View"><file name="Comments.php" hash="31507034121df9afd8c2b646b4e6ed37"/><file name="Form.php" hash="d1d49356e7816a7dcf47527047ce3586"/><file name="Items.php" hash="baf269b2293f4b73b2c6bb093bb1a604"/></dir><file name="View.php" hash="eb6070e356348f4f8c480ab32784f19a"/></dir><file name="Payment.php" hash="68de123264c2bb2913ef6cc2b7458fc1"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="7d39ccdcd23bf1620e8d7a4040864742"/><file name="Items.php" hash="5a6781a034e4357b3e8c7baceb860498"/><file name="Tracking.php" hash="3a9cbabe93c8199b6875dae459458c79"/></dir><file name="Create.php" hash="2a6b77e5e41be0f008e6a7be50ff43ac"/><dir name="Packaging"><file name="Grid.php" hash="1122801249db45983e439d2184cad4a5"/></dir><file name="Packaging.php" hash="eca49fd770f11107b68b759bded1abf5"/><dir name="Tracking"><file name="Info.php" hash="4c1c9120054a59438250ea221cb01ca8"/></dir><dir name="View"><file name="Comments.php" hash="8a15344a9b5d886409f08b46288bc2d1"/><file name="Form.php" hash="7257cfbb71101ad0deb7e40d97150999"/><file name="Items.php" hash="f5f890b726951384772112a729566029"/><file name="Tracking.php" hash="4dbcd29f5bfc80ed06ca12df15c7ec46"/></dir><file name="View.php" hash="22e74725c79838f580e11d0f6cab1f5d"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="ccfb44485437a53f80ae4342b3a52e3b"/></dir><file name="Assign.php" hash="bc065040c3bef24cfaf98d39c61a7060"/><dir name="Edit"><file name="Form.php" hash="485d3db49d79b1598b2864401a3b53e2"/></dir><file name="Edit.php" hash="2a67a4d2e31b79cd1ebb2d5edc34c35a"/><file name="Grid.php" hash="3575a1a06a0dfc29cf0573a48287916b"/><dir name="New"><file name="Form.php" hash="756999ffd438e2bcd2d1dbf802048e2d"/></dir><file name="New.php" hash="189284878ab4ad3fd5bf45f9bfe85b06"/></dir><file name="Status.php" hash="ddc0a661f02c854bba3963b476b6a011"/><file name="Totalbar.php" hash="d5387ee3f481eb0a9fa94e33f44adadb"/><dir name="Totals"><file name="Item.php" hash="c42d13f149e316dc87a8773b1ab020cc"/><file name="Tax.php" hash="193dd7fb0c216706c63c00768383d0e0"/></dir><file name="Totals.php" hash="0086df18a48e9494f041024b8862ecae"/><dir name="View"><file name="Form.php" hash="21c65ef7813259def8b8ebff5aba9138"/><file name="Giftmessage.php" hash="d975b54fd78f7190927188f238310977"/><file name="History.php" hash="0f7d3ebda74b3b93c5aae03f7b68ea2b"/><file name="Info.php" hash="3c39d3bab29827dfbf156955a9a89c05"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="7b165f0bf36757ec989ce939771484d4"/></dir></dir><file name="Items.php" hash="9616fabdbd3aef41dc936cfda0a3e44e"/><file name="Messages.php" hash="df16c071516d176dd562aa8ab9811132"/><dir name="Tab"><file name="Creditmemos.php" hash="a4ac2eda83c00ecadfe92ed0affdfe25"/><file name="History.php" hash="83bcbedc3834f0667114eedad60adca6"/><file name="Info.php" hash="bee5dd720fbedb805eb8b4c5f3f9a643"/><file name="Invoices.php" hash="c71df05848f4c2b4d3badf3517d28bfb"/><file name="Shipments.php" hash="a9f7b5f9ae62b09c40b02503cf3df391"/><file name="Transactions.php" hash="d8e6d40ce09acd50075f154568c3d9e6"/></dir><file name="Tabs.php" hash="ff134b80984fd3f4659b3e8defb7b889"/></dir><file name="View.php" hash="8328b940ecd7827d05cc2a1c520fc372"/></dir><file name="Order.php" hash="8f79dadc6952acd640988b5056e769c1"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="f61432c0aae12bde34d3217b760b8979"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="234c145d5b84642ebbfb19aa980e5810"/></dir><file name="Shipment.php" hash="a732151690df6da90dead1bf094b0541"/><file name="Totals.php" hash="2d5e88b5201ee57f7853a66f60e60d8b"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="a1f6b53c090c9264beb8e21def4c1384"/></dir><dir name="Detail"><file name="Grid.php" hash="5355b2a8b49d22f9f4241da40f9cd32b"/></dir><file name="Detail.php" hash="d3561017f86fb542c85f42b96e7c7d4d"/><file name="Grid.php" hash="e33628560f021a4459c2767f5db92112"/></dir><file name="Transactions.php" hash="77b62bbb585b281d3787973efcfd4259"/></dir><file name="Sales.php" hash="358f5e19c76f75f8508e08dbbad7007f"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="35eaaebb42b61d4bbf9a59042e8404c8"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="2854bee962e3b9e9e20e8e41f89b6e12"/></dir><file name="Edit.php" hash="9b911253680077f4f34ccbde7aca2861"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="4b5f1379762971b29c2ec75a0a61807c"/><file name="Link.php" hash="c2d737275e4a75b75cf95e02eae39288"/><file name="Time.php" hash="bd2953078214ddeca384e844cdfd124a"/></dir></dir><file name="Grid.php" hash="6ea041ce2e32a3dd33fe821af7915b32"/></dir><file name="Sitemap.php" hash="d250d04cd3e80762998839cc37fc149c"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="ec646aef0e422b97de57008fe9a75f7c"/></dir><file name="Fieldset.php" hash="49379e33d4881ce32553e0dbe8d55b05"/></dir></dir></dir><file name="Switcher.php" hash="84bd47070917a33b9cc6e8c892ae01bd"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="ddccb6c88d84af45c623c511f2dcb44a"/></dir><file name="Edit.php" hash="d8dd0f9b978baabcb90652f8936235ba"/></dir><dir name="Cache"><file name="Edit.php" hash="630b9bbc66915705886476fa25f74b4c"/><file name="Form.php" hash="06344dd249f05f2c5e396d6a2ddcec5b"/></dir><dir name="Config"><file name="Dwstree.php" hash="61cf3485186d02128d078ba7b90bdfe1"/><file name="Edit.php" hash="75c383cf92c973718200d0b9716ba93f"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="4e1f7b0165d18b34c903ab6f2aed6821"/></dir><file name="Datetime.php" hash="a423c05c7a5dae1514d649bf012af581"/><file name="Export.php" hash="0dc1a515631a57ec70805df6849d29ee"/><file name="File.php" hash="c83352c3aa973adf77cc9704abc35e4b"/><file name="Heading.php" hash="eaa165a4f20d7bca565ae797bd88efbb"/><file name="Image.php" hash="af252eb046916be7a50fbc47168b4839"/><file name="Import.php" hash="7ba70bbf225858238a3fecc3f78b544e"/><file name="Notification.php" hash="9090787cab58913816cd49b4e099b5d3"/><file name="Regexceptions.php" hash="68ee2ae38e9c6e82bf0061f5ab52bbbe"/><dir name="Select"><file name="Allowspecific.php" hash="33ee4a2188fb0e5687d0d98a41768fe7"/><file name="Flatcatalog.php" hash="65f3813a3ef3794f88abb4321a7c0c48"/><file name="Flatproduct.php" hash="9a4676e6655fa12298b30c8264cfb41e"/></dir></dir><file name="Field.php" hash="ef2603567f5da732fdbae9c82e0cef03"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="2cf27298c5ad07fbd6ebafdf1a4dae13"/></dir><dir name="Order"><file name="Statuses.php" hash="1691d8b45b3e3ec9f6d8b7794e9b6cae"/></dir></dir><file name="Fieldset.php" hash="a2d9e48719d127539d96082d8a8b4490"/></dir><file name="Form.php" hash="da889a27baeb5ef9198682eeffc73a68"/><file name="Switcher.php" hash="5494a491d8176bc571ac7e53d9f86261"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="acdf1c0133e57f6db36e961bb204e4ef"/></dir></dir></dir><file name="Tabs.php" hash="4b861023efd9b83492302be2f5b25de9"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="b7bda9dcbe61d810994b58a7d8d29c49"/><dir name="Tab"><file name="Upload.php" hash="c5b176ae1a905666fedc96bd36cca857"/><file name="View.php" hash="822318577616588146d5e6a59ce1b632"/><file name="Wizard.php" hash="8badd54921f747ea85b06244cf11d861"/></dir><file name="Tabs.php" hash="07c10d61e013b4bb7e7925db43f680ab"/></dir><file name="Edit.php" hash="f3a5e98a5a43082725c942be20916fc8"/><file name="Grid.php" hash="018cd347d41f0a9eb9bd029c6a987825"/></dir><file name="Gui.php" hash="3906c646051d78b72021a76c14aff173"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="b8a37a8186f25a270143b14757dc5e72"/></dir><file name="Form.php" hash="3694af72af22ca40ddc5c7c83ace7d22"/><dir name="Renderer"><file name="Action.php" hash="638f92c2fd37833bbf01d815ddaf17b7"/></dir><dir name="Tab"><file name="Edit.php" hash="6f7457d1ff0fdc7641d45e81a168b124"/><file name="History.php" hash="c6efd7ca8c34ebd138a051ada7666586"/><file name="Run.php" hash="0eb5ebf1d2dd17f5e7fd3d697a1a48cf"/></dir><file name="Tabs.php" hash="e293ec12fc8e25073737c049bb647122"/></dir><file name="Edit.php" hash="49b37bd1c9c798637f324b04e24b13ed"/><file name="Grid.php" hash="58aeab2a1473ea7356d5322eb7c64a11"/><file name="Run.php" hash="f3ccb0381da6e38990880be27e8b8925"/></dir><file name="Profile.php" hash="c93fdb3c066ce2b9946b24863ab8c197"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="3c92834e9dd3a8f026c1bad90b0b71a6"/><dir name="Tab"><file name="Main.php" hash="22954e10e2aae7a7a3aab3181955b887"/><file name="Rates.php" hash="f325044ce396fe08780b5989cbf80745"/></dir><file name="Tabs.php" hash="1188422957863ed1e9463710ff73c6d5"/></dir><dir name="Rate"><file name="Matrix.php" hash="36764666ad710f9a33890beb567b8df0"/><file name="Services.php" hash="f9770c48561ec29b207c5fa97ff425db"/></dir></dir><file name="Currency.php" hash="4817d79131d14541fef9d75450a9d9b9"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="58c447ee8977cec3598a47ade7206464"/></dir><file name="Tabs.php" hash="33a9e8fe3d29f35ae5567551a8a769f0"/></dir><file name="Edit.php" hash="d593e84aef95c95bfb2d8e06bf6a0e34"/><file name="Grid.php" hash="98c96d732e2323b629bca3be406dc285"/></dir><file name="Design.php" hash="9b0dc56ab7dc9c17f78b0b0784ca2a7c"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="78c55e5de0ddd340f87e9d2f7fb6c693"/></dir><file name="Edit.php" hash="a809018608ff3a4764bbe61b3e2b1989"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="320095e4873cb25b6c27e08c66c601a9"/></dir><dir name="Renderer"><file name="Action.php" hash="daead924a364b4970f67c38e9ee3939c"/><file name="Sender.php" hash="65b7b2b11dafebaae01be28cf6cc8d19"/><file name="Type.php" hash="36397fc14119ca57375cf3295579bc9b"/></dir></dir><file name="Grid.php" hash="02b4ea9ef2e48a37b1daa3fd4566f3a3"/><file name="Preview.php" hash="97dcd17cafe97fe98b7dacc12b0c7fe3"/></dir><file name="Template.php" hash="fd5c789dfef5f117f9bde21a929c0e65"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="ad804555f02e82cd2f5987223d391297"/><file name="Group.php" hash="187341ff388195eb76a0a1762fd29865"/><file name="Website.php" hash="97202e675e85c88e59a8f21706e73a13"/></dir><file name="Delete.php" hash="68721974bb804f94eea65284846a4623"/><dir name="Edit"><file name="Form.php" hash="bbd2fd5a01db0b83cb1a3c8408b2f928"/></dir><file name="Edit.php" hash="19bbece1a9051a52f73958d6cc44bd61"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="a558429fe6d3c0e8dd406d68cc1e5a24"/><file name="Store.php" hash="0ee3e6eb4072f0bc3d3e7c29b4dbeb33"/><file name="Website.php" hash="a62fa95b6d3a31301fd1f58f24fa5455"/></dir></dir><file name="Grid.php" hash="e3ac2e64df4f1f8cfe443f425168d952"/><file name="Store.php" hash="7622cfa54286be63b11fbcfa6d84566f"/><file name="Tree.php" hash="55212400d7fb7fd4bf4df9932c05fde9"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="189bf98ee9d32aceaa34945715a4d97d"/></dir><file name="Edit.php" hash="2ef0ee3aab94be340d99cd756178ba22"/><file name="Grid.php" hash="ae79e80557ea72e1962d64e8d6ac1366"/></dir><file name="Variable.php" hash="22ffd92cfe537f85db91cc187cfc937e"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="262395a487d3f7ac507f6b06645c64b7"/></dir><dir name="Customer"><file name="Grid.php" hash="cdbe009dd128a2bcd56c9a0c182dec05"/></dir><file name="Customer.php" hash="e7851969a3ab6c75738a851750df4106"/><dir name="Edit"><file name="Accordion.php" hash="5a8325f5532f9907d3760e37b549edab"/><file name="Assigned.php" hash="ba3f13448771ca6601c6590b295cd086"/><file name="Form.php" hash="a1bc371fc437a77db046608f49a66b33"/></dir><file name="Edit.php" hash="926a1c11b55a81ef96b64721bc12cc0b"/><dir name="Grid"><file name="All.php" hash="890803b30098d8fe753d0d3218864f35"/><file name="Customers.php" hash="eacde2cd0e12d59f1e8722533b09581f"/><file name="Pending.php" hash="279b4b7ab758abd80a63716e178f22b2"/><file name="Products.php" hash="bf7a26134368853c24e5dec098d1d4e3"/></dir><file name="Pending.php" hash="f778cc501f1c760a775cd7eb1ea39d08"/><dir name="Product"><file name="Grid.php" hash="b409865d955963c939811a294d39739d"/></dir><file name="Product.php" hash="fe7e9a0d935c77fa09af56e4715b03fc"/><dir name="Store"><file name="Switcher.php" hash="55e0ff589d171fe58186e61da96c3b82"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="dd20a8c7f77f8314c2fc2e9a5fe49852"/></dir><file name="Edit.php" hash="5a5ead13178fd076d1cd9e5978592092"/><file name="Grid.php" hash="a1f47bb9aac9221c2e15ee2a2cf851dc"/></dir><file name="Tag.php" hash="4678ce75018fe4b62f4add4a60f5984e"/></dir><file name="Tag.php" hash="b4250808c5eb762658a12044166f6279"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="24255303a1912cb300b4baf3ec42974a"/></dir><file name="Edit.php" hash="1f61ceaf1830a1e5c95d5aa962117194"/><file name="Grid.php" hash="01663b0fd59fa591dbc97feaa1dc34c0"/></dir><file name="Class.php" hash="87b324633ef3be76a7c80643c972ff34"/><dir name="Rate"><file name="Form.php" hash="b36feca887a351474b875835c634fc61"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="3e81c3816f0967f960134ccef70f54cf"/><file name="Data.php" hash="57b6050de5b66b66fd71b5e859adb99b"/></dir></dir><file name="Grid.php" hash="f4bc5d1f4e2053b01fc29cf19a9d4742"/><file name="ImportExport.php" hash="6f9ee869e72cdd12fdd8c339c84ebf76"/><dir name="Title"><file name="Fieldset.php" hash="e88c086dbd03c3fc2bf49eba58cb51c2"/></dir><file name="Title.php" hash="b14c33d6c4eb3e29576b0230c2d2003a"/><dir name="Toolbar"><file name="Add.php" hash="17d4fee12cdc093fef720a85e430bcb1"/><file name="Save.php" hash="4993895140e075506dbca66ab2d2511b"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="b4a45f1cd91a2bf5ec66c54e938a5979"/></dir><file name="Edit.php" hash="f098612c60c106c7ad3e1a60b4dd30c0"/><file name="Grid.php" hash="40f407ae8f3aaf8efe3f1d7317a06837"/></dir><file name="Rule.php" hash="ffb863d9f8d16baf2e577a0bfb5b7082"/></dir><file name="Template.php" hash="4dd0e902ac10071214bef7a28bb98af3"/><dir name="Text"><file name="List.php" hash="b6c9d4d2fff4129a1bd8cb511f8cb904"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="fa67719ac38a8fdb0542eb480e180839"/></dir><dir name="Edit"><file name="Form.php" hash="b20d4a8b28c2c5de23d72c5d3c660bc9"/></dir><file name="Edit.php" hash="3f40b0906145e893c8343e7993bdeac2"/><file name="Grid.php" hash="c8f8161d9621414a8a43032c930cebf1"/><file name="Link.php" hash="f08633ff8c568810e608e659b6c06003"/><dir name="Product"><file name="Grid.php" hash="411121e2f3c07e76fd433a58da852eb4"/></dir><file name="Selector.php" hash="b1b01a7f0c62b3be33bb850e19f7e31e"/></dir><file name="Urlrewrite.php" hash="dc559873b7552bc0fda08de7fa4abe38"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="6b58d4d76483dd9b7b863811474f342c"/></dir><file name="Accordion.php" hash="0eab591ae6ba8b0a06b05d6e3c261a5a"/><file name="Breadcrumbs.php" hash="0fd744f39a7eb5172822c70901931f98"/><file name="Button.php" hash="155d4b66796fddf105302cf16b870c43"/><file name="Container.php" hash="2413ce89359b559eb085829c27266092"/><dir name="Form"><file name="Container.php" hash="e0122e68119ad1a0f5da9097e59ea39f"/><dir name="Element"><file name="Dependence.php" hash="45cdfa039cb621525225dbbd68d8d2e4"/><file name="Gallery.php" hash="45ee8119965fcb57b8073b933e3d0d99"/></dir><file name="Element.php" hash="258128802e370e43a153352bf106c03f"/><dir name="Renderer"><file name="Element.php" hash="6949759fa3ca9e45577a61402458dc68"/><dir name="Fieldset"><file name="Element.php" hash="fe5faccf4487000daa5385d45ae229b0"/></dir><file name="Fieldset.php" hash="436daed1f5a9ca5b29feacade9f960c1"/></dir></dir><file name="Form.php" hash="c3c10bef2950534c2891f0f87767c1ec"/><dir name="Grid"><file name="Block.php" hash="ff6e2dfbb4227ea6b9238bdbdd8552a0"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="0cebe4fc6aad7f61590b9881b2ac89bc"/><file name="Checkbox.php" hash="61cc780e91dbcb48b39e5161b094da44"/><file name="Country.php" hash="f65c07fa36d513421a0239c05ebdd1b3"/><file name="Date.php" hash="807f7c8f6727823886f2d0c153a25c51"/><file name="Datetime.php" hash="f1b480d9c3a6d7bb74e2f52ef1a55af8"/><file name="Interface.php" hash="56c239edde3c3de6c92e887ad61f7166"/><file name="Massaction.php" hash="c372fc3ce9e2fbcd12e2ed13d5513f51"/><file name="Price.php" hash="2f344bc359d47aaf5b942048bb2c8f9a"/><file name="Radio.php" hash="e63b2168fda1b749e84bfa26dd19a5a2"/><file name="Range.php" hash="cc0074d8cad4820f0e590892e1dcc73b"/><file name="Select.php" hash="b45f339f95dfacf8d4a72dfede4674a6"/><file name="Store.php" hash="1361dc52620fb9950bfb5d1a533c49b9"/><file name="Text.php" hash="d5aac85a05b584b39e488f2c56f143e4"/><file name="Theme.php" hash="14d8cc304489af9bda62b61b44b6c881"/></dir><dir name="Renderer"><file name="Abstract.php" hash="8071d47fe61369ab03cb30dfc9615fe4"/><file name="Action.php" hash="0c92eec9fb6af714c83e411a031d2b58"/><file name="Checkbox.php" hash="a9ac9dcbcff71919755e45a33f0618b8"/><file name="Concat.php" hash="b2c2bec4f98b9c98430dba83f31b32f4"/><file name="Country.php" hash="fd0598714e3124e43b2bb361bd2fe22e"/><file name="Currency.php" hash="cfeae94739fff049453c2e84e80c7e7d"/><file name="Date.php" hash="1dd03b0df3e2ab3fd74df96aeff60f71"/><file name="Datetime.php" hash="427b1930cd06b20bbb9fd5e3a3c02841"/><file name="Input.php" hash="6fab4f8f4584b082a86ca95749d8f79e"/><file name="Interface.php" hash="ea1f36c3051cee7dc52ee49703698bf8"/><file name="Ip.php" hash="f73383e45f92babe678fd44b5b095ad3"/><file name="Longtext.php" hash="7a8fd3b7135190ec675f1f510765a416"/><file name="Massaction.php" hash="f6035b737df2aa2290f641d1adeb7aee"/><file name="Number.php" hash="d52c5fea7b3861b76d3387add42289f7"/><file name="Options.php" hash="84144f05bbaf987578fe18cda34afa4d"/><file name="Price.php" hash="ac1e9032f003921b06aec655dc0e612f"/><file name="Radio.php" hash="da70c1bfda67c98651fe866923649b3e"/><file name="Select.php" hash="57b462763e2c9dd3ca3b16f1838cd733"/><file name="Store.php" hash="0370b51504c3047221c5fee90862eff1"/><file name="Text.php" hash="3314430d7ab112c6e5574ab6a955fc0a"/><file name="Theme.php" hash="0762a4162f2c0b9c3451678f0dff8e54"/><file name="Wrapline.php" hash="07ff85eb753ba17294ef561325dc60d1"/></dir></dir><file name="Column.php" hash="cdeb777b461a422b8a0d06b9612a4cc0"/><file name="Container.php" hash="9e54a2951f538c5139f1092b57ff77ba"/><dir name="Massaction"><file name="Abstract.php" hash="ba0b70af51d74a2ef74fc9f389681ef8"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="6dbeb432da25149d2f2aa059290cd0d2"/><file name="Interface.php" hash="616f28b116cd4bea9cf27f146c6cbab9"/></dir></dir><file name="Item.php" hash="f780b960e96f4c34c97bd39022e15873"/></dir><file name="Massaction.php" hash="f5aff40aaa61a328abff52f168c7e45a"/><file name="Serializer.php" hash="da9cfdd58247ac453cab384813cb8b5a"/></dir><file name="Grid.php" hash="e23c2b9c0c82a893b426f5911e86a8f8"/><dir name="Tab"><file name="Interface.php" hash="0fb2855258dfe855e95c8221912d8e5b"/></dir><file name="Tabs.php" hash="346d2f6095b8fb3b86b6a6f73fec97ef"/><file name="Tree.php" hash="4ce65e63aaa2bf80fd8f8e842e5dfec7"/><dir name="View"><file name="Container.php" hash="e574a3de99c054135ee6e7fd855d8c6e"/></dir></dir><file name="Widget.php" hash="b53a98a37df81cd59a22d46e1378b2a7"/></dir><dir name="Controller"><file name="Action.php" hash="bf94219e482724386c4434de145575a6"/><dir name="Report"><file name="Abstract.php" hash="59c681a4c331f3a7c68929ebbc8ab01c"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="e8ad721be046e9f225e049b6875d6605"/><file name="Invoice.php" hash="8fe8aee9073c653cf2e553a53f9ed4a1"/><file name="Shipment.php" hash="cff59c4f838e240235869a2a8d7a34d9"/></dir></dir><file name="Exception.php" hash="69d108ee3bd1abefe5bdbc545d3d9f33"/><dir name="Helper"><file name="Addresses.php" hash="bde92caa00a1e1ef6fea6e4c2fbd1a79"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="261174e58c58172849e0288ca11912b2"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="fed567cdfa0fff9a684eedb7b25f66d8"/></dir></dir></dir></dir><file name="Catalog.php" hash="5e98e70f14a850ca5092079c6148703e"/><dir name="Dashboard"><file name="Abstract.php" hash="2c2b8f5183e07c64e561b7d31fee0457"/><file name="Data.php" hash="b9e687f31e617786523d2c0627edc9cb"/><file name="Order.php" hash="aed42e5e47bfe8a41377be241371bf0b"/></dir><file name="Data.php" hash="40f042811e9a6d8cbfb9ba63c49470de"/><file name="Js.php" hash="8282f5d21e76b5b75ab0fd2f5854bda3"/><dir name="Media"><file name="Js.php" hash="d233bf73190efbcbdda7b038250ad58b"/></dir><file name="Rss.php" hash="28ca908c6c739fbd5e7f2b16ade3df59"/><file name="Sales.php" hash="809dda967d34ac01f2507e06649101be"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="fc78e857a6ed892286071cf0b85d7ad1"/></dir><file name="Config.php" hash="52074ba07928ab6b07d372cc474659b7"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="af0c475b05f130bd1ba83eb9e650e08c"/></dir></dir><dir name="Email"><file name="Template.php" hash="ca2a10b6cd2b53f77ac55b1e14b0eee0"/></dir><file name="Extension.php" hash="e033d92cfe37b6a219e6ea49a677d3ff"/><dir name="Giftmessage"><file name="Save.php" hash="dbf8760ae4c8a0c7519593628977d856"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="e91d93c2d850f40c42ff3e38d7e5aff1"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="c4d306f625f721c5525a18867d48cda5"/></dir></dir><file name="Observer.php" hash="65832c54177e231963266895f9968dc2"/><dir name="Report"><file name="Item.php" hash="bcf980f26e8c0a45e2369215a76ba106"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="62021047b1aa3d3f97c28d08f2cf27cf"/><file name="Random.php" hash="44e7477e5a01710ee2cd41f8cda07d16"/></dir><file name="Order.php" hash="4a745e3563a62f6db3f84b353f9676ed"/></dir><dir name="Search"><file name="Catalog.php" hash="7c7582e8324ceb907de74ddb0ae42ecd"/><file name="Customer.php" hash="f1f36d5389447155225ce27f1139b736"/><file name="Order.php" hash="6c938d5565c33dd4c4c38420eb43fe8d"/></dir><dir name="Session"><file name="Quote.php" hash="de3113a5d1a529931db95d5068e54b92"/></dir><file name="Session.php" hash="553fcace1933d96adb0bcc970a5c59d1"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="430667fb816b5e54b50f70d25d7f6321"/><file name="Custompath.php" hash="5942309a56bbcb7fd1983f8fa3556b17"/><file name="Observer.php" hash="c7892b3be04781d752279fe0a4643c63"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="c111d27bb8f96a7ee95b79fb509e6665"/></dir></dir><file name="Usecustom.php" hash="0320a50fb472d5177f4cf5079a2febb7"/><file name="Usecustompath.php" hash="a8fc9ab6d911ce3b792f3fa673603581"/><file name="Usesecretkey.php" hash="a8a6e3d743ee52feb752d1bc2a87473d"/></dir><file name="Baseurl.php" hash="4b8229a26e622f6b05c4b89a2111d1d3"/><file name="Cache.php" hash="faba159558453c47f1ff8cb9b7c0c99b"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="386bbced868078f229f89c5ca7b0dd2f"/></dir><dir name="Search"><file name="Type.php" hash="25f69a094faca6832a067ced53c95d75"/></dir></dir><file name="Category.php" hash="4a22c1377538d2e3aac58fcc4e3ff505"/><file name="Cookie.php" hash="7f2e830fdb3a65fdc33a4df1e2e2f825"/><dir name="Currency"><file name="Abstract.php" hash="621878f6cb098464011635cd938d3a73"/><file name="Allow.php" hash="7de02afe7ca6b20a8089ec181e90f8a1"/><file name="Base.php" hash="f95ad1c06bcc2e2a317be890b5708d94"/><file name="Cron.php" hash="331f7fa5655edb36a9c36c5c6977f821"/><file name="Default.php" hash="6355a28f04df59520038bbf0b99775de"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="f2f86a1d2c745149dec47540b686142f"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="075ff1ff57cf1fc8597ffb2de563cdbe"/></dir></dir><dir name="Show"><file name="Address.php" hash="c4e6cc0eb67c29c41de9e45d611656ce"/><file name="Customer.php" hash="ffdc8cc46e9aa5de2c66d8a3b5a199c9"/></dir></dir><file name="Datashare.php" hash="c4be86d5d75af0b7b837b4866c5eeb6c"/><dir name="Design"><file name="Exception.php" hash="12ef1288d47309070a56e0ddc8e2d1f3"/><file name="Package.php" hash="0f5bf9bb16f7c9175d6fc93b5f08cf05"/></dir><dir name="Email"><file name="Address.php" hash="06b526b38882c7bf28a0533b95d6ffd5"/><file name="Logo.php" hash="f5326822d8d520583b82466de0879e7a"/><file name="Sender.php" hash="065a8a57815502adef5610b2846a1533"/></dir><file name="Encrypted.php" hash="c37c71c323901bc16ab10e1e0d702f7e"/><file name="File.php" hash="dbb99074253f65a73e53b164e56ad7e0"/><file name="Filename.php" hash="5953e5bd17e3e1094d67a0ed49636d2d"/><dir name="Image"><file name="Favicon.php" hash="1b6adb473d15fe0c0458be72445a7cc1"/><file name="Pdf.php" hash="eedfa1e0d51e95cbd4d425dbd860fbd0"/></dir><file name="Image.php" hash="08b2ff9ce47d4bfc2042f2c9d2f94063"/><dir name="Layer"><file name="Children.php" hash="24507527b224f7bb022f5f916785afdd"/></dir><dir name="Locale"><file name="Timezone.php" hash="40ca91bb8ac2e0d9729dc787c687f351"/></dir><file name="Locale.php" hash="a386e2ebc0a1ef6298ba117cb0fd69b2"/><dir name="Log"><file name="Cron.php" hash="a24f33aa740b960c44d33b39eb7028f7"/></dir><dir name="Price"><file name="Scope.php" hash="18b19a409fb134e026960faa5131bb80"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="27c88d2a4a857ae29de6f1bad60c9b5b"/></dir></dir><file name="Secure.php" hash="4262bf6375d779d6b1788b1c8c6580c2"/><dir name="Seo"><file name="Product.php" hash="f91ae68b2ea4b655db6dd229723766a0"/></dir><dir name="Serialized"><file name="Array.php" hash="f05603ace2c4a884ee55042e7798a646"/></dir><file name="Serialized.php" hash="1f3f3d4addc465d580e15cb3670633bf"/><dir name="Shipping"><file name="Tablerate.php" hash="5a75c810e3a52e37abbfa8356b4e8a7d"/></dir><dir name="Sitemap"><file name="Cron.php" hash="e458eb34cd129ece45d82d146cd9254f"/></dir><file name="Sitemap.php" hash="cbe0c11c58c8fcc7c7c55a8b8462b77f"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="9a205727553c6813645241cf594985e0"/></dir></dir><file name="Store.php" hash="6adebc9bb0beefebb81df2bc87bc7318"/><file name="Translate.php" hash="172246c2719804b26b048cbeae024456"/></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="5daa8ac4983dace294e7615aa2eee6f7"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="f9a0c57db9c272f4cf18c6a8deeae617"/></dir><file name="Allregion.php" hash="ab2f8099ce326cb1fb263b5d2e84216b"/><dir name="Catalog"><file name="GridPerPage.php" hash="d281112f7422328718a1f24ad4dd8439"/><file name="ListMode.php" hash="cfa54a3823ae764782441edb2511b384"/><file name="ListPerPage.php" hash="b366a5917dbaa701f74dc457ca26e724"/><file name="ListSort.php" hash="483b463d3e8a7b234bcf9016202bd295"/><dir name="Search"><file name="Type.php" hash="7eed563a21cd34e2204983afb31bf99f"/></dir><file name="TimeFormat.php" hash="b6e5d76f85d99c72d311c62762b7883e"/></dir><file name="Category.php" hash="e8be2455d37599676e3683a49971daab"/><file name="Checktype.php" hash="ad88f0b215c461362846f5cc6cb8b693"/><dir name="Cms"><file name="Page.php" hash="1bc5df99c611471d2efffe5f158d54a0"/><dir name="Wysiwyg"><file name="Enabled.php" hash="793bdff1fc42bacbe635801940ef8815"/></dir></dir><dir name="Country"><file name="Full.php" hash="26477d2ded04c1cdce70b19af203d389"/></dir><file name="Country.php" hash="a20c5900136e7a57cb17f2a13d9c890a"/><dir name="Cron"><file name="Frequency.php" hash="7684a98dff8855d0101f61017ccb8bbf"/></dir><dir name="Currency"><file name="Service.php" hash="9f55c5675dff6d66e7d2586f83cdcdf9"/></dir><file name="Currency.php" hash="00ec327bdddc1346b4be5b30ad6bec35"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="8f71303d7d65a8199735a6b013d12ea8"/></dir><dir name="Group"><file name="Multiselect.php" hash="83c5c6431652e81244e5dc37a0cea612"/></dir><file name="Group.php" hash="7ba64224f9eadca13829a2c8f8f1c51d"/></dir><dir name="Date"><file name="Short.php" hash="49d896d54154b2ef5cc8e9a598e94cad"/></dir><dir name="Design"><file name="Package.php" hash="fba07b7815732fb98652a7de2f59d061"/><file name="Robots.php" hash="928cb6b78e80f23f56a1b77f9c2e06b3"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="abfbfff2f1696c58b3499de6f4b3bf1b"/></dir><dir name="Email"><file name="Identity.php" hash="03fbedd442d1e2fcc9adf6f0824e8d8c"/><file name="Method.php" hash="b864d853e871e6b3c3859ea6389009de"/><file name="Smtpauth.php" hash="1a259e7cd590dd160abd453ef82b9e06"/><file name="Template.php" hash="3f07eabd2707fe20290d46dce039fba2"/></dir><file name="Enabledisable.php" hash="7cbbb723d4311d348b582d9de5a8be1a"/><file name="Frequency.php" hash="7455078214654c342097336f53240cc3"/><file name="Language.php" hash="d9a2dc84d1deec2504c56a0d77fdc2f1"/><dir name="Locale"><file name="Country.php" hash="03b8d1369cba6dc2fad68d5b9a174e75"/><dir name="Currency"><file name="All.php" hash="98d087b2b6b2e6815f7c838be87107d9"/></dir><file name="Currency.php" hash="9a165c18a5ba4361d35dc28f0ef19737"/><file name="Timezone.php" hash="f69fc68327ce9f94f36892f8f51cbf34"/><file name="Weekdaycodes.php" hash="adc5d102c7ece4e8efee9f576b7b1526"/><file name="Weekdays.php" hash="f5853e71eaee555f697a9f99065ae45f"/></dir><file name="Locale.php" hash="5c32fb7c03f4597e35004fc07ce1ce09"/><file name="Nooptreq.php" hash="4b7fdfd06d7008b6fc1da9f41b0bc442"/><dir name="Notification"><file name="Frequency.php" hash="31152cf1dba8de0845e822436df293c0"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="4aca62dfb10891fa82bf06a68b1f4748"/><file name="Newprocessing.php" hash="c6beb7667d09a698d11a8e1ba72901e7"/><file name="Processing.php" hash="db0eae4039f5e23c6f28080a7a74221b"/></dir><file name="Status.php" hash="af51dc72091bb0371cd18447b8befbe0"/></dir><dir name="Payment"><file name="Allmethods.php" hash="da36ab1c4724d0385de95ec26e32afa6"/><file name="Allowedmethods.php" hash="9ec8978b16fa48692a3fbc1f94def4a0"/><file name="Allspecificcountries.php" hash="3357331e9beb25b8c34f094b05dd9319"/><file name="Cctype.php" hash="71e99f1d3ffc08ebfb3c3ab45c68dd4b"/></dir><dir name="Price"><file name="Scope.php" hash="4dd719340685a5f4562d98a4d3e97326"/><file name="Step.php" hash="ad3154f6ca7bcc004fa2280c51fde745"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="afa82dabfe8f30fd6576e2709739092b"/><file name="Type.php" hash="20b64ff04837819b1536b99fad579d70"/></dir><file name="Thumbnail.php" hash="bc1267f7c8e6b87934333b6ab1eb5abb"/></dir><dir name="Reports"><file name="Scope.php" hash="711afa6dec984311df82ca9afc1741c1"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="f176857c49a6e97ecf646da639a79ea8"/><file name="Allowedmethods.php" hash="22492392525bed28af6d81eb141ef72c"/><file name="Allspecificcountries.php" hash="6eb3ebd0b85d78f03bba20409e8b55b2"/><file name="Flatrate.php" hash="6d7536de960ec439dd70385e583eb2be"/><file name="Tablerate.php" hash="6c439f4d0f9b2deaa3134f5231a02610"/><file name="Taxclass.php" hash="b25b1092a002c9692deb3e1444424a78"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="dde851839f43a997e935b30fe953f04c"/><file name="Storage.php" hash="9a082b13981dead6103a18b6d0845863"/></dir></dir><file name="Store.php" hash="8433d131816c0aa1accdfbed1364ccfd"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="93e776dacc0803f7ef49e407cec37b81"/></dir><file name="Basedon.php" hash="72b88f1c39bd6b8049445ff9cbb3bb91"/><file name="Catalog.php" hash="d946fce1b89d627574c59b9fc54a1bd6"/></dir><dir name="Watermark"><file name="Position.php" hash="d6114250a47a4e690b477b30e2fac6cf"/></dir><dir name="Web"><file name="Protocol.php" hash="087447e01697f12a29971a164c3ada31"/><file name="Redirect.php" hash="8889b88265efa5bb9f51b310a5ed0611"/></dir><file name="Website.php" hash="9961cff233d7cf243d87d5446769130f"/><file name="Yesno.php" hash="2a033b5968617136021cdd5d631896fd"/><file name="Yesnocustom.php" hash="621fe7ccca08100c114d7aa29ee635bc"/></dir></dir><file name="Store.php" hash="245ea02c8e0de759d6c569357d9e0859"/></dir><file name="Url.php" hash="0df084e1de17a1e756f9e5c6a2a1f53c"/></dir><dir name="controllers"><file name="AjaxController.php" hash="3f015c5b40909f77c4f7eddc1022ca02"/><dir name="Api"><file name="RoleController.php" hash="6e52ef593ffd51bbeb98c0c6a5a2fb10"/><file name="UserController.php" hash="be4782c8750ca0bafd8e25fe57bc5a5e"/></dir><file name="CacheController.php" hash="f2414644d2e1e986473b689643e39551"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="f792b9c468c9d233b8cac2b508434c9c"/></dir><file name="CategoryController.php" hash="e76265ef3d5d6479c0f2965ae418d826"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="61cecb68b01f81a2ffb0eb862e8c4f98"/></dir><file name="AttributeController.php" hash="937bb3acb5b40220f61052acb4ba8dee"/><file name="DatafeedsController.php" hash="5e2b970bb08715347c9f6ce8bae734ef"/><file name="GalleryController.php" hash="06a55db29a85974a392bd8fea4dbd70f"/><file name="GroupController.php" hash="262351333569872d619c149eab13693c"/><file name="ReviewController.php" hash="6f50de1b34410db3b1fa24ec849c4750"/><file name="SetController.php" hash="65c0b6fd63d8f0cdc859dfeea0f04e24"/><file name="WidgetController.php" hash="64b2c72183ae7a649eced8b6643c274f"/></dir><file name="ProductController.php" hash="7e66265c9e683e79f027445076cbd9fe"/><file name="SearchController.php" hash="814026941f5070a30371ca3858a8fb5b"/></dir><file name="CatalogController.php" hash="ef55e0acdb1e1ed84e9db0419cc93d3b"/><dir name="Checkout"><file name="AgreementController.php" hash="47acc47c5901feeda4fb84db37e5fd21"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="32b37f11ef7b49951c61a420aba4edb1"/></dir><file name="BlockController.php" hash="9984ff7cb60a08e239d1516e776bdf27"/><dir name="Page"><file name="WidgetController.php" hash="2a39dc54a3d48af94df11664cb9366e7"/></dir><file name="PageController.php" hash="96640c497ad01a4aa9e238e3de3beb71"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="ae007ff21751f8e507dfecd4ff178192"/></dir><file name="WysiwygController.php" hash="3116b058088206d28a814dc00daa8e35"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="9609d9714ffb3a0e09ef946018b89365"/></dir></dir></dir><file name="ConfigController.php" hash="7e00ffaaaa1a612292f0c494a402501e"/><file name="GroupController.php" hash="01288a334cb45a01e419eb2a06648e21"/><file name="OnlineController.php" hash="21036192b71c5744727ccce2044df0dd"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="c9f4c9efcee0651240c859345c2fbebe"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="e355b2d2c661023ea5612b51abfe4129"/></dir></dir></dir></dir><file name="CustomerController.php" hash="1fdf362cdf72876544607ffd9cc99726"/><file name="DashboardController.php" hash="bf77cba89919434d31126f5e1577f4a2"/><file name="IndexController.php" hash="9426d51906bd904978760682cad794e9"/><file name="JsonController.php" hash="fb1dd09071491cbccde5bc3d5742ee24"/><dir name="Media"><file name="EditorController.php" hash="7f684964c721a24ae1be2e345a766c5f"/><file name="UploaderController.php" hash="a640d0fa8a2e6acf7b2e9500f2cade4d"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="fff6adbd0bcefbdab32d30981297dd4b"/><file name="QueueController.php" hash="d343633feeedd3d9bad5cdd699c38d78"/><file name="SubscriberController.php" hash="0ee8d4f82926baad2b9e6fe5f0060ecb"/><file name="TemplateController.php" hash="e81a0ea6442ec5edf902b15cf6fb33e9"/></dir><file name="NotificationController.php" hash="cdef5ab915cb9c66bf471878dd0a7a74"/><dir name="Permissions"><file name="RoleController.php" hash="7955143a4ebac8fbe75dd43ad333f176"/><file name="UserController.php" hash="db4848a25ec547511465a6333244fbcf"/></dir><dir name="Poll"><file name="AnswerController.php" hash="cd4f27973bb30db4da8177446bb79527"/></dir><file name="PollController.php" hash="c6918546920a1e4d7cf8597caece5e35"/><dir name="Promo"><file name="CatalogController.php" hash="8492c48930cdc7a42e94f1c8462e7f91"/><file name="QuoteController.php" hash="57158c39c845b844539e62a545d849d9"/><file name="WidgetController.php" hash="271212e499c1ea7f57cd20703a988f2a"/></dir><file name="PromoController.php" hash="ba362e93f841c52849f329183b4512bc"/><file name="RatingController.php" hash="b86decc2995d12b2e5a867e5e7668e2b"/><dir name="Report"><file name="CustomerController.php" hash="ec608e21a92d9da9d7ab412e8f20c694"/><file name="ProductController.php" hash="e937797e8d8796677f44a2a68f61b59a"/><file name="ReviewController.php" hash="e87b929a7a02e9671b495e0dc6206228"/><file name="SalesController.php" hash="1786ea33faf2e4a929b73cfc2595e476"/><file name="ShopcartController.php" hash="658f089c6f66b3f8e88a3fef9c34ca83"/><file name="StatisticsController.php" hash="d121c1ac7639508fce83b192748fc3b5"/><file name="TagController.php" hash="784e31c5eefb07ed713e0b3d207dddf8"/></dir><file name="ReportController.php" hash="3868d26148c9e969eb306454d5e029f8"/><dir name="Rss"><file name="CatalogController.php" hash="d01cc915d43dd5eb3aedd0ed060873c0"/><file name="OrderController.php" hash="619d3de2d334cb897ed6622c5e871609"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="52a3eec0309cc05d340ea327fe260493"/></dir><file name="CreditmemoController.php" hash="03bfd7bb5d837ae96243635fd8b956aa"/><file name="InvoiceController.php" hash="65ccced3c2d242e8de9bcb3c59f9598b"/><dir name="Order"><file name="CreateController.php" hash="6fa95f37527f83bf6984fae55f498691"/><file name="CreditmemoController.php" hash="88d652a02108d577f749d89d90932158"/><file name="EditController.php" hash="cfa6e31341e6c7db8b8a348eb0e7a083"/><file name="InvoiceController.php" hash="4a36dfcf0a59e434a5719d6d9430ea1e"/><file name="ShipmentController.php" hash="3117f9ea1f80fda8668645c240f45805"/><file name="StatusController.php" hash="3d303e719fc84587ec94c83e622fa25f"/><dir name="View"><file name="GiftmessageController.php" hash="6e9719551a250f5d0a796a4a988c378f"/></dir></dir><file name="OrderController.php" hash="ae7a903e0968de8500923873213aca99"/><dir name="Recurring"><file name="ProfileController.php" hash="25711f1ddcfde83d78bb074911df3ef2"/></dir><file name="ShipmentController.php" hash="30f07910ca5c04373e7496bcc8d7d440"/><file name="TransactionsController.php" hash="973cce2907a88a2c0fdfad5f6d454142"/></dir><file name="SalesController.php" hash="9ea67bd3f2fcd75cda0d656f3da1a7e7"/><file name="SitemapController.php" hash="4a853a5f2c54b4b4c7191df500e5b31a"/><file name="SurveyController.php" hash="d6984b6f6c10ca865b6a6963b77b33e8"/><dir name="System"><file name="AccountController.php" hash="1197e4221ac01d38c279597d569b91c5"/><file name="BackupController.php" hash="63ee579686f94da34bf3078b173b8a4f"/><file name="CacheController.php" hash="c33a3b7f5a903ede232647b67e04335e"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="660ab768b6aa4b428882626126821513"/></dir></dir><file name="ConfigController.php" hash="c1a43ca018972512842ea4bc9a5f91d5"/><dir name="Convert"><file name="GuiController.php" hash="38a6f916eb98e58bef098b457c0c7b87"/><file name="ProfileController.php" hash="de71275d584f5983e23f060f2093e64a"/></dir><file name="CurrencyController.php" hash="b1836d91c88596d3aafae9d4257f3068"/><file name="DesignController.php" hash="d440f4c22f280b27cf0d46046a5c4e11"/><dir name="Email"><file name="TemplateController.php" hash="d75f095b2f971a01a988ab76932a4e2c"/></dir><file name="StoreController.php" hash="6931072b6d6884e57dbc5e721ffe28df"/><file name="VariableController.php" hash="56d3e318f274aaae94f518be06a19c8c"/></dir><file name="SystemController.php" hash="4ba17965739f4e86b0383d00de990983"/><file name="TagController.php" hash="80f6963468f63dafe9b68fc5dad8e9b9"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="654a769edf513cb30615d213821275d3"/><file name="ProductController.php" hash="06b424dcad41488eef5641ca55b04ef4"/></dir><file name="ClassController.php" hash="1c696f4a38e3fed2869f88cf85420ae0"/><file name="RateController.php" hash="1d7436a2c82ef4a085d1a8359998bb0c"/><file name="RuleController.php" hash="7ee8edcea384d92b3ca21080a23b450d"/></dir><file name="TaxController.php" hash="ace9a98440056b57e57fb9526520d5d2"/><file name="UrlrewriteController.php" hash="98b094e70c4a8fd4bf8cea3580614f97"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0037556b319726d0efead1ad7a1d6cf0"/><file name="config.xml" hash="4159a8c8ea39c5134f9c9271081063a1"/><file name="jstranslator.xml" hash="28ff351540a20a45c4ae734f91d4cb23"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="aba0f88f88f727c94e8e5368453c88cb"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.8.1.0</min><max>1.9.0.0</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.1</min><max>1.52</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.7.0.0</min><max>1.8.0.0</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.1</min><max>2.9.0.0</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.4.7.0</min><max>3.5.0.0</max></package></required></dependencies>
|
18 |
</package>
|