Mage_Core_Adminhtml - Version 1.7.0.1

Version Notes

1.7.0.1

Download this release

Release Info

Developer Magento Core Team
Extension Mage_Core_Adminhtml
Version 1.7.0.1
Comparing to
See all releases


Code changes from version 1.7.0.0 to 1.7.0.1

app/code/core/Mage/Adminhtml/Block/System/Config/Form.php CHANGED
@@ -116,13 +116,9 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
116
  */
117
  protected function _initObjects()
118
  {
119
- $this->_configRoot = Mage::getConfig()->getNode(null, $this->getScope(), $this->getScopeCode());
120
-
121
- $this->_configDataObject = Mage::getModel('adminhtml/config_data')
122
- ->setSection($this->getSectionCode())
123
- ->setWebsite($this->getWebsiteCode())
124
- ->setStore($this->getStoreCode());
125
-
126
  $this->_configData = $this->_configDataObject->load();
127
 
128
  $this->_configFields = Mage::getSingleton('adminhtml/config');
@@ -157,7 +153,6 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
157
  continue;
158
  }
159
  foreach ($section->groups as $groups){
160
-
161
  $groups = (array)$groups;
162
  usort($groups, array($this, '_sortForm'));
163
 
@@ -166,59 +161,74 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
166
  if (!$this->_canShowField($group)) {
167
  continue;
168
  }
 
 
 
 
169
 
170
- if ($group->frontend_model) {
171
- $fieldsetRenderer = Mage::getBlockSingleton((string)$group->frontend_model);
172
- } else {
173
- $fieldsetRenderer = $this->_defaultFieldsetRenderer;
174
- }
175
 
176
- $fieldsetRenderer->setForm($this);
177
- $fieldsetRenderer->setConfigData($this->_configData);
178
- $fieldsetRenderer->setGroup($group);
 
 
 
 
 
 
 
 
 
 
 
 
179
 
180
- if ($this->_configFields->hasChildren($group, $this->getWebsiteCode(), $this->getStoreCode())) {
 
181
 
182
- $helperName = $this->_configFields->getAttributeModule($section, $group);
 
 
 
 
 
 
 
 
183
 
184
- $fieldsetConfig = array('legend' => Mage::helper($helperName)->__((string)$group->label));
185
- if (!empty($group->comment)) {
186
- $fieldsetConfig['comment'] = Mage::helper($helperName)->__((string)$group->comment);
187
- }
188
- if (!empty($group->expanded)) {
189
- $fieldsetConfig['expanded'] = (bool)$group->expanded;
190
- }
191
 
192
- $fieldset = $form->addFieldset(
193
- $section->getName() . '_' . $group->getName(), $fieldsetConfig)
194
- ->setRenderer($fieldsetRenderer);
195
- $this->_prepareFieldOriginalData($fieldset, $group);
196
- $this->_addElementTypes($fieldset);
 
197
 
198
- if ($group->clone_fields) {
199
- if ($group->clone_model) {
200
- $cloneModel = Mage::getModel((string)$group->clone_model);
201
- } else {
202
- Mage::throwException(
203
- 'Config form fieldset clone model required to be able to clone fields'
204
- );
205
- }
206
- foreach ($cloneModel->getPrefixes() as $prefix) {
207
- $this->initFields($fieldset, $group, $section, $prefix['field'], $prefix['label']);
208
- }
209
- } else {
210
- $this->initFields($fieldset, $group, $section);
211
- }
212
 
213
- $this->_fieldsets[$group->getName()] = $fieldset;
214
 
215
- }
 
 
 
 
216
  }
 
 
 
 
 
217
  }
218
  }
219
-
220
- $this->setForm($form);
221
- return $this;
222
  }
223
 
224
  /**
@@ -255,28 +265,33 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
255
  $configDataAdditionalGroups = array();
256
 
257
  foreach ($group->fields as $elements) {
258
-
259
  $elements = (array)$elements;
260
  // sort either by sort_order or by child node values bypassing the sort_order
261
  if ($group->sort_fields && $group->sort_fields->by) {
262
- $fieldset->setSortElementsByAttribute((string)$group->sort_fields->by,
263
- ($group->sort_fields->direction_desc ? SORT_DESC : SORT_ASC)
 
264
  );
265
  } else {
266
  usort($elements, array($this, '_sortForm'));
267
  }
268
 
269
- foreach ($elements as $e) {
270
- if (!$this->_canShowField($e)) {
 
 
 
 
 
271
  continue;
272
  }
273
 
274
  /**
275
  * Look for custom defined field path
276
  */
277
- $path = (string)$e->config_path;
278
  if (empty($path)) {
279
- $path = $section->getName() . '/' . $group->getName() . '/' . $fieldPrefix . $e->getName();
280
  } elseif (strrpos($path, '/') > 0) {
281
  // Extend config data with new section group
282
  $groupPath = substr($path, 0, strrpos($path, '/'));
@@ -290,17 +305,9 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
290
  }
291
  }
292
 
293
- $id = $section->getName() . '_' . $group->getName() . '_' . $fieldPrefix . $e->getName();
294
-
295
- if (isset($this->_configData[$path])) {
296
- $data = $this->_configData[$path];
297
- $inherit = false;
298
- } else {
299
- $data = $this->_configRoot->descend($path);
300
- $inherit = true;
301
- }
302
- if ($e->frontend_model) {
303
- $fieldRenderer = Mage::getBlockSingleton((string)$e->frontend_model);
304
  } else {
305
  $fieldRenderer = $this->_defaultFieldRenderer;
306
  }
@@ -308,16 +315,17 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
308
  $fieldRenderer->setForm($this);
309
  $fieldRenderer->setConfigData($this->_configData);
310
 
311
- $helperName = $this->_configFields->getAttributeModule($section, $group, $e);
312
- $fieldType = (string)$e->frontend_type ? (string)$e->frontend_type : 'text';
313
- $name = 'groups['.$group->getName().'][fields]['.$fieldPrefix.$e->getName().'][value]';
314
- $label = Mage::helper($helperName)->__($labelPrefix).' '.Mage::helper($helperName)->__((string)$e->label);
315
- $hint = (string)$e->hint ? Mage::helper($helperName)->__((string)$e->hint) : '';
 
316
 
317
- if ($e->backend_model) {
318
- $model = Mage::getModel((string)$e->backend_model);
319
  if (!$model instanceof Mage_Core_Model_Config_Data) {
320
- Mage::throwException('Invalid config field backend model: '.(string)$e->backend_model);
321
  }
322
  $model->setPath($path)
323
  ->setValue($data)
@@ -327,23 +335,39 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
327
  $data = $model->getValue();
328
  }
329
 
330
- $comment = $this->_prepareFieldComment($e, $helperName, $data);
331
- $tooltip = $this->_prepareFieldTooltip($e, $helperName);
 
332
 
333
- if ($e->depends) {
334
- foreach ($e->depends->children() as $dependent) {
335
  /* @var $dependent Mage_Core_Model_Config_Element */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  $dependentId = $section->getName()
337
- . '_' . $group->getName()
338
  . '_' . $fieldPrefix
339
- . $dependent->getName();
340
  $shouldBeAddedDependence = true;
341
- $dependentValue = (string) $dependent;
342
  if (isset($dependent['separator'])) {
343
  $dependentValue = explode((string)$dependent['separator'], $dependentValue);
344
  }
345
- $dependentFieldName = $fieldPrefix . $dependent->getName();
346
- $dependentField = $group->fields->$dependentFieldName;
347
  /*
348
  * If dependent field can't be shown in current scope and real dependent config value
349
  * is not equal to preferred one, then hide dependence fields by adding dependence
@@ -351,7 +375,7 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
351
  */
352
  if (!$this->_canShowField($dependentField)) {
353
  $dependentFullPath = $section->getName()
354
- . '/' . $group->getName()
355
  . '/' . $fieldPrefix
356
  . $dependent->getName();
357
  $dependentValueInStore = Mage::getStoreConfig($dependentFullPath, $this->getStoreCode());
@@ -361,7 +385,7 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
361
  $shouldBeAddedDependence = $dependentValue != $dependentValueInStore;
362
  }
363
  }
364
- if($shouldBeAddedDependence) {
365
  $this->_getDependence()
366
  ->addFieldMap($id, $id)
367
  ->addFieldMap($dependentId, $dependentId)
@@ -369,6 +393,18 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
369
  }
370
  }
371
  }
 
 
 
 
 
 
 
 
 
 
 
 
372
 
373
  $field = $fieldset->addField($id, $fieldType, array(
374
  'name' => $name,
@@ -378,32 +414,32 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
378
  'hint' => $hint,
379
  'value' => $data,
380
  'inherit' => $inherit,
381
- 'class' => $e->frontend_class,
382
- 'field_config' => $e,
383
  'scope' => $this->getScope(),
384
  'scope_id' => $this->getScopeId(),
385
- 'scope_label' => $this->getScopeLabel($e),
386
- 'can_use_default_value' => $this->canUseDefaultValue((int)$e->show_in_default),
387
- 'can_use_website_value' => $this->canUseWebsiteValue((int)$e->show_in_website),
388
  ));
389
- $this->_prepareFieldOriginalData($field, $e);
390
 
391
- if (isset($e->validate)) {
392
- $field->addClass($e->validate);
393
  }
394
 
395
- if (isset($e->frontend_type)
396
- && 'multiselect' === (string)$e->frontend_type
397
- && isset($e->can_be_empty)
398
  ) {
399
  $field->setCanBeEmpty(true);
400
  }
401
 
402
  $field->setRenderer($fieldRenderer);
403
 
404
- if ($e->source_model) {
405
  // determine callback for the source model
406
- $factoryName = (string)$e->source_model;
407
  $method = false;
408
  if (preg_match('/^([^:]+?)::([^:]+?)$/', $factoryName, $matches)) {
409
  array_shift($matches);
@@ -441,7 +477,7 @@ class Mage_Adminhtml_Block_System_Config_Form extends Mage_Adminhtml_Block_Widge
441
  public function getConfigRoot()
442
  {
443
  if (empty($this->_configRoot)) {
444
- $this->_configRoot = Mage::getConfig()->getNode(null, $this->getScope(), $this->getScopeCode());
445
  }
446
  return $this->_configRoot;
447
  }
116
  */
117
  protected function _initObjects()
118
  {
119
+ /** @var $_configDataObject Mage_Adminhtml_Model_Config_Data */
120
+ $this->_configDataObject = Mage::getSingleton('adminhtml/config_data');
121
+ $this->_configRoot = $this->_configDataObject->getConfigRoot();
 
 
 
 
122
  $this->_configData = $this->_configDataObject->load();
123
 
124
  $this->_configFields = Mage::getSingleton('adminhtml/config');
153
  continue;
154
  }
155
  foreach ($section->groups as $groups){
 
156
  $groups = (array)$groups;
157
  usort($groups, array($this, '_sortForm'));
158
 
161
  if (!$this->_canShowField($group)) {
162
  continue;
163
  }
164
+ $this->_initGroup($form, $group, $section);
165
+ }
166
+ }
167
+ }
168
 
169
+ $this->setForm($form);
170
+ return $this;
171
+ }
 
 
172
 
173
+ /**
174
+ * Init config group
175
+ *
176
+ * @param Varien_Data_Form $form
177
+ * @param Varien_Simplexml_Element $group
178
+ * @param Varien_Simplexml_Element $section
179
+ * @param Varien_Data_Form_Element_Fieldset|null $parentElement
180
+ */
181
+ protected function _initGroup($form, $group, $section, $parentElement = null)
182
+ {
183
+ if ($group->frontend_model) {
184
+ $fieldsetRenderer = Mage::getBlockSingleton((string)$group->frontend_model);
185
+ } else {
186
+ $fieldsetRenderer = $this->_defaultFieldsetRenderer;
187
+ }
188
 
189
+ $fieldsetRenderer->setForm($this)
190
+ ->setConfigData($this->_configData);
191
 
192
+ if ($this->_configFields->hasChildren($group, $this->getWebsiteCode(), $this->getStoreCode())) {
193
+ $helperName = $this->_configFields->getAttributeModule($section, $group);
194
+ $fieldsetConfig = array('legend' => Mage::helper($helperName)->__((string)$group->label));
195
+ if (!empty($group->comment)) {
196
+ $fieldsetConfig['comment'] = Mage::helper($helperName)->__((string)$group->comment);
197
+ }
198
+ if (!empty($group->expanded)) {
199
+ $fieldsetConfig['expanded'] = (bool)$group->expanded;
200
+ }
201
 
202
+ $fieldset = new Varien_Data_Form_Element_Fieldset($fieldsetConfig);
203
+ $fieldset->setId($section->getName() . '_' . $group->getName())
204
+ ->setRenderer($fieldsetRenderer)
205
+ ->setGroup($group);
 
 
 
206
 
207
+ if ($parentElement) {
208
+ $fieldset->setIsNested(true);
209
+ $parentElement->addElement($fieldset);
210
+ } else {
211
+ $form->addElement($fieldset);
212
+ }
213
 
214
+ $this->_prepareFieldOriginalData($fieldset, $group);
215
+ $this->_addElementTypes($fieldset);
 
 
 
 
 
 
 
 
 
 
 
 
216
 
217
+ $this->_fieldsets[$group->getName()] = $fieldset;
218
 
219
+ if ($group->clone_fields) {
220
+ if ($group->clone_model) {
221
+ $cloneModel = Mage::getModel((string)$group->clone_model);
222
+ } else {
223
+ Mage::throwException($this->__('Config form fieldset clone model required to be able to clone fields'));
224
  }
225
+ foreach ($cloneModel->getPrefixes() as $prefix) {
226
+ $this->initFields($fieldset, $group, $section, $prefix['field'], $prefix['label']);
227
+ }
228
+ } else {
229
+ $this->initFields($fieldset, $group, $section);
230
  }
231
  }
 
 
 
232
  }
233
 
234
  /**
265
  $configDataAdditionalGroups = array();
266
 
267
  foreach ($group->fields as $elements) {
 
268
  $elements = (array)$elements;
269
  // sort either by sort_order or by child node values bypassing the sort_order
270
  if ($group->sort_fields && $group->sort_fields->by) {
271
+ $fieldset->setSortElementsByAttribute(
272
+ (string)$group->sort_fields->by,
273
+ $group->sort_fields->direction_desc ? SORT_DESC : SORT_ASC
274
  );
275
  } else {
276
  usort($elements, array($this, '_sortForm'));
277
  }
278
 
279
+ foreach ($elements as $element) {
280
+ if (!$this->_canShowField($element)) {
281
+ continue;
282
+ }
283
+
284
+ if ((string)$element->getAttribute('type') == 'group') {
285
+ $this->_initGroup($fieldset->getForm(), $element, $section, $fieldset);
286
  continue;
287
  }
288
 
289
  /**
290
  * Look for custom defined field path
291
  */
292
+ $path = (string)$element->config_path;
293
  if (empty($path)) {
294
+ $path = $section->getName() . '/' . $group->getName() . '/' . $fieldPrefix . $element->getName();
295
  } elseif (strrpos($path, '/') > 0) {
296
  // Extend config data with new section group
297
  $groupPath = substr($path, 0, strrpos($path, '/'));
305
  }
306
  }
307
 
308
+ $data = $this->_configDataObject->getConfigDataValue($path, $inherit, $this->_configData);
309
+ if ($element->frontend_model) {
310
+ $fieldRenderer = Mage::getBlockSingleton((string)$element->frontend_model);
 
 
 
 
 
 
 
 
311
  } else {
312
  $fieldRenderer = $this->_defaultFieldRenderer;
313
  }
315
  $fieldRenderer->setForm($this);
316
  $fieldRenderer->setConfigData($this->_configData);
317
 
318
+ $helperName = $this->_configFields->getAttributeModule($section, $group, $element);
319
+ $fieldType = (string)$element->frontend_type ? (string)$element->frontend_type : 'text';
320
+ $name = 'groups[' . $group->getName() . '][fields][' . $fieldPrefix.$element->getName() . '][value]';
321
+ $label = Mage::helper($helperName)->__($labelPrefix) . ' '
322
+ . Mage::helper($helperName)->__((string)$element->label);
323
+ $hint = (string)$element->hint ? Mage::helper($helperName)->__((string)$element->hint) : '';
324
 
325
+ if ($element->backend_model) {
326
+ $model = Mage::getModel((string)$element->backend_model);
327
  if (!$model instanceof Mage_Core_Model_Config_Data) {
328
+ Mage::throwException('Invalid config field backend model: '.(string)$element->backend_model);
329
  }
330
  $model->setPath($path)
331
  ->setValue($data)
335
  $data = $model->getValue();
336
  }
337
 
338
+ $comment = $this->_prepareFieldComment($element, $helperName, $data);
339
+ $tooltip = $this->_prepareFieldTooltip($element, $helperName);
340
+ $id = $section->getName() . '_' . $group->getName() . '_' . $fieldPrefix . $element->getName();
341
 
342
+ if ($element->depends) {
343
+ foreach ($element->depends->children() as $dependent) {
344
  /* @var $dependent Mage_Core_Model_Config_Element */
345
+
346
+ if (isset($dependent->fieldset)) {
347
+ $dependentFieldGroupName = (string)$dependent->fieldset;
348
+ if (!isset($this->_fieldsets[$dependentFieldGroupName])) {
349
+ $dependentFieldGroupName = $group->getName();
350
+ }
351
+ } else {
352
+ $dependentFieldGroupName = $group->getName();
353
+ }
354
+
355
+ $dependentFieldNameValue = $dependent->getName();
356
+ $dependentFieldGroup = $dependentFieldGroupName == $group->getName()
357
+ ? $group
358
+ : $this->_fieldsets[$dependentFieldGroupName]->getGroup();
359
+
360
  $dependentId = $section->getName()
361
+ . '_' . $dependentFieldGroupName
362
  . '_' . $fieldPrefix
363
+ . $dependentFieldNameValue;
364
  $shouldBeAddedDependence = true;
365
+ $dependentValue = (string)(isset($dependent->value) ? $dependent->value : $dependent);
366
  if (isset($dependent['separator'])) {
367
  $dependentValue = explode((string)$dependent['separator'], $dependentValue);
368
  }
369
+ $dependentFieldName = $fieldPrefix . $dependent->getName();
370
+ $dependentField = $dependentFieldGroup->fields->$dependentFieldName;
371
  /*
372
  * If dependent field can't be shown in current scope and real dependent config value
373
  * is not equal to preferred one, then hide dependence fields by adding dependence
375
  */
376
  if (!$this->_canShowField($dependentField)) {
377
  $dependentFullPath = $section->getName()
378
+ . '/' . $dependentFieldGroupName
379
  . '/' . $fieldPrefix
380
  . $dependent->getName();
381
  $dependentValueInStore = Mage::getStoreConfig($dependentFullPath, $this->getStoreCode());
385
  $shouldBeAddedDependence = $dependentValue != $dependentValueInStore;
386
  }
387
  }
388
+ if ($shouldBeAddedDependence) {
389
  $this->_getDependence()
390
  ->addFieldMap($id, $id)
391
  ->addFieldMap($dependentId, $dependentId)
393
  }
394
  }
395
  }
396
+ $sharedClass = '';
397
+ if ($element->shared && $element->config_path) {
398
+ $sharedClass = ' shared shared-' . str_replace('/', '-', $element->config_path);
399
+ }
400
+
401
+ $requiresClass = '';
402
+ if ($element->requires) {
403
+ $requiresClass = ' requires';
404
+ foreach (explode(',', $element->requires) as $groupName) {
405
+ $requiresClass .= ' requires-' . $section->getName() . '_' . $groupName;
406
+ }
407
+ }
408
 
409
  $field = $fieldset->addField($id, $fieldType, array(
410
  'name' => $name,
414
  'hint' => $hint,
415
  'value' => $data,
416
  'inherit' => $inherit,
417
+ 'class' => $element->frontend_class . $sharedClass . $requiresClass,
418
+ 'field_config' => $element,
419
  'scope' => $this->getScope(),
420
  'scope_id' => $this->getScopeId(),
421
+ 'scope_label' => $this->getScopeLabel($element),
422
+ 'can_use_default_value' => $this->canUseDefaultValue((int)$element->show_in_default),
423
+ 'can_use_website_value' => $this->canUseWebsiteValue((int)$element->show_in_website),
424
  ));
425
+ $this->_prepareFieldOriginalData($field, $element);
426
 
427
+ if (isset($element->validate)) {
428
+ $field->addClass($element->validate);
429
  }
430
 
431
+ if (isset($element->frontend_type)
432
+ && 'multiselect' === (string)$element->frontend_type
433
+ && isset($element->can_be_empty)
434
  ) {
435
  $field->setCanBeEmpty(true);
436
  }
437
 
438
  $field->setRenderer($fieldRenderer);
439
 
440
+ if ($element->source_model) {
441
  // determine callback for the source model
442
+ $factoryName = (string)$element->source_model;
443
  $method = false;
444
  if (preg_match('/^([^:]+?)::([^:]+?)$/', $factoryName, $matches)) {
445
  array_shift($matches);
477
  public function getConfigRoot()
478
  {
479
  if (empty($this->_configRoot)) {
480
+ $this->_configRoot = Mage::getSingleton('adminhtml/config_data')->getConfigRoot();
481
  }
482
  return $this->_configRoot;
483
  }
app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field.php CHANGED
@@ -58,9 +58,7 @@ class Mage_Adminhtml_Block_System_Config_Form_Field
58
  {
59
  $id = $element->getHtmlId();
60
 
61
- $useContainerId = $element->getData('use_container_id');
62
- $html = '<tr id="row_' . $id . '">'
63
- . '<td class="label"><label for="'.$id.'">'.$element->getLabel().'</label></td>';
64
 
65
  //$isDefault = !$this->getRequest()->getParam('website') && !$this->getRequest()->getParam('store');
66
  $isMultiple = $element->getExtType()==='multiple';
@@ -87,8 +85,14 @@ class Mage_Adminhtml_Block_System_Config_Form_Field
87
  }
88
  }
89
 
90
- $html.= '<td class="value">';
91
- $html.= $this->_getElementHtml($element);
 
 
 
 
 
 
92
  if ($element->getComment()) {
93
  $html.= '<p class="note"><span>'.$element->getComment().'</span></p>';
94
  }
@@ -134,8 +138,18 @@ class Mage_Adminhtml_Block_System_Config_Form_Field
134
  }
135
  $html.= '</td>';
136
 
137
- $html.= '</tr>';
138
- return $html;
139
  }
140
 
 
 
 
 
 
 
 
 
 
 
 
141
  }
58
  {
59
  $id = $element->getHtmlId();
60
 
61
+ $html = '<td class="label"><label for="'.$id.'">'.$element->getLabel().'</label></td>';
 
 
62
 
63
  //$isDefault = !$this->getRequest()->getParam('website') && !$this->getRequest()->getParam('store');
64
  $isMultiple = $element->getExtType()==='multiple';
85
  }
86
  }
87
 
88
+ if ($element->getTooltip()) {
89
+ $html .= '<td class="value with-tooltip">';
90
+ $html .= $this->_getElementHtml($element);
91
+ $html .= '<div class="field-tooltip"><div>' . $element->getTooltip() . '</div></div>';
92
+ } else {
93
+ $html .= '<td class="value">';
94
+ $html .= $this->_getElementHtml($element);
95
+ };
96
  if ($element->getComment()) {
97
  $html.= '<p class="note"><span>'.$element->getComment().'</span></p>';
98
  }
138
  }
139
  $html.= '</td>';
140
 
141
+ return $this->_decorateRowHtml($element, $html);
 
142
  }
143
 
144
+ /**
145
+ * Decorate field row html
146
+ *
147
+ * @param Varien_Data_Form_Element_Abstract $element
148
+ * @param string $html
149
+ * @return string
150
+ */
151
+ protected function _decorateRowHtml($element, $html)
152
+ {
153
+ return '<tr id="row_' . $element->getHtmlId() . '">' . $html . '</tr>';
154
+ }
155
  }
app/code/core/Mage/Adminhtml/Block/System/Config/Form/Fieldset.php CHANGED
@@ -45,6 +45,7 @@ class Mage_Adminhtml_Block_System_Config_Form_Fieldset
45
  */
46
  public function render(Varien_Data_Form_Element_Abstract $element)
47
  {
 
48
  $html = $this->_getHeaderHtml($element);
49
 
50
  foreach ($element->getSortedElements() as $field) {
@@ -64,22 +65,24 @@ class Mage_Adminhtml_Block_System_Config_Form_Fieldset
64
  */
65
  protected function _getHeaderHtml($element)
66
  {
67
- $default = !$this->getRequest()->getParam('website') && !$this->getRequest()->getParam('store');
 
 
 
 
 
 
68
 
69
- $html = '<div class="entry-edit-head collapseable" ><a id="' . $element->getHtmlId()
70
- . '-head" href="#" onclick="Fieldset.toggleCollapse(\'' . $element->getHtmlId() . '\', \''
71
- . $this->getUrl('*/*/state') . '\'); return false;">' . $element->getLegend() . '</a></div>';
72
  $html .= '<input id="'.$element->getHtmlId() . '-state" name="config_state[' . $element->getId()
73
  . ']" type="hidden" value="' . (int)$this->_getCollapseState($element) . '" />';
74
- $html .= '<fieldset class="' . $this->_getFieldsetCss() . '" id="' . $element->getHtmlId() . '">';
75
  $html .= '<legend>' . $element->getLegend() . '</legend>';
76
 
77
- if ($element->getComment()) {
78
- $html .= '<span class="comment" style="display: block;">' . $element->getComment() . '</span>';
79
- }
80
  // field label column
81
  $html .= '<table cellspacing="0" class="form-list"><colgroup class="label" /><colgroup class="value" />';
82
- if (!$default) {
83
  $html .= '<colgroup class="use-default" />';
84
  }
85
  $html .= '<colgroup class="scope-label" /><colgroup class="" /><tbody>';
@@ -87,15 +90,72 @@ class Mage_Adminhtml_Block_System_Config_Form_Fieldset
87
  return $html;
88
  }
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  /**
91
  * Return full css class name for form fieldset
92
  *
 
93
  * @return string
94
  */
95
- protected function _getFieldsetCss()
96
  {
97
- $configCss = (string)$this->getGroup()->fieldset_css;
98
- return 'config collapseable'.($configCss ? ' ' . $configCss : '');
99
  }
100
 
101
  /**
@@ -109,15 +169,13 @@ class Mage_Adminhtml_Block_System_Config_Form_Fieldset
109
  {
110
  $tooltipsExist = false;
111
  $html = '</tbody></table>';
112
- foreach ($element->getSortedElements() as $field) {
113
- if ($field->getTooltip()) {
114
- $tooltipsExist = true;
115
- $html .= sprintf('<div id="row_%s_comment" class="system-tooltip-box" style="display:none;">%s</div>',
116
- $field->getId(), $field->getTooltip()
117
- );
118
- }
119
- }
120
  $html .= '</fieldset>' . $this->_getExtraJs($element, $tooltipsExist);
 
 
 
 
 
 
121
  return $html;
122
  }
123
 
@@ -134,54 +192,6 @@ class Mage_Adminhtml_Block_System_Config_Form_Fieldset
134
  {
135
  $id = $element->getHtmlId();
136
  $js = "Fieldset.applyCollapse('{$id}');";
137
- if ($tooltipsExist) {
138
- $js.= "$$('#{$id} table')[0].addClassName('system-tooltip-wrap');
139
- $$('#{$id} table tbody tr').each(function(tr) {
140
- Event.observe(tr, 'mouseover', function (event) {
141
- var relatedTarget = $(event.relatedTarget || event.fromElement);
142
- if(relatedTarget && (relatedTarget == this || relatedTarget.descendantOf(this))) {
143
- return;
144
- }
145
- showTooltip(event);
146
- });
147
- Event.observe(tr, 'mouseout', function (event) {
148
- var relatedTarget = $(event.relatedTarget || event.toElement);
149
- if(relatedTarget && (relatedTarget == this || relatedTarget.childOf(this))) {
150
- return;
151
- }
152
- hideTooltip(event);
153
- });
154
- });
155
- $$('#{$id} table')[0].select('input','select').each(function(field) {
156
- Event.observe(field, 'focus', function (event) {
157
- showTooltip(event);
158
- });
159
- Event.observe(field, 'blur', function (event) {
160
- hideTooltip(event);
161
- });
162
- });
163
- function showTooltip(event) {
164
- var tableHeight = Event.findElement(event, 'table').getStyle('height');
165
- var tr = Event.findElement(event, 'tr');
166
- var id = tr.id + '_comment';
167
- $$('div.system-tooltip-box').invoke('hide');
168
- if ($(id)) {
169
- $(id).show().setStyle({height : tableHeight});
170
- if(document.viewport.getWidth() < 1200) {
171
- $(id).addClassName('system-tooltip-small').setStyle({height : 'auto'});
172
- } else {
173
- $(id).removeClassName('system-tooltip-small');
174
- }
175
- }
176
- };
177
- function hideTooltip(event) {
178
- var tr = Event.findElement(event, 'tr');
179
- var id = tr.id + '_comment';
180
- if ($(id)) {
181
- setTimeout(function() { $(id).hide(); }, 1);
182
- }
183
- };";
184
- }
185
  return Mage::helper('adminhtml/js')->getScript($js);
186
  }
187
 
45
  */
46
  public function render(Varien_Data_Form_Element_Abstract $element)
47
  {
48
+ $this->setElement($element);
49
  $html = $this->_getHeaderHtml($element);
50
 
51
  foreach ($element->getSortedElements() as $field) {
65
  */
66
  protected function _getHeaderHtml($element)
67
  {
68
+ if ($element->getIsNested()) {
69
+ $html = '<tr class="nested"><td colspan="4"><div class="' . $this->_getFrontendClass($element) . '">';
70
+ } else {
71
+ $html = '<div class="' . $this->_getFrontendClass($element) . '">';
72
+ }
73
+
74
+ $html .= $this->_getHeaderTitleHtml($element);
75
 
 
 
 
76
  $html .= '<input id="'.$element->getHtmlId() . '-state" name="config_state[' . $element->getId()
77
  . ']" type="hidden" value="' . (int)$this->_getCollapseState($element) . '" />';
78
+ $html .= '<fieldset class="' . $this->_getFieldsetCss($element) . '" id="' . $element->getHtmlId() . '">';
79
  $html .= '<legend>' . $element->getLegend() . '</legend>';
80
 
81
+ $html .= $this->_getHeaderCommentHtml($element);
82
+
 
83
  // field label column
84
  $html .= '<table cellspacing="0" class="form-list"><colgroup class="label" /><colgroup class="value" />';
85
+ if ($this->getRequest()->getParam('website') || $this->getRequest()->getParam('store')) {
86
  $html .= '<colgroup class="use-default" />';
87
  }
88
  $html .= '<colgroup class="scope-label" /><colgroup class="" /><tbody>';
90
  return $html;
91
  }
92
 
93
+ /**
94
+ * Get frontend class
95
+ *
96
+ * @param Varien_Data_Form_Element_Abstract $element
97
+ * @return string
98
+ */
99
+ protected function _getFrontendClass($element)
100
+ {
101
+ $frontendClass = (string)$this->getGroup($element)->frontend_class;
102
+ return 'section-config' . (empty($frontendClass) ? '' : (' ' . $frontendClass));
103
+ }
104
+
105
+ /**
106
+ * Get group xml data of the element
107
+ *
108
+ * @param null|Varien_Data_Form_Element_Abstract $element
109
+ * @return Mage_Core_Model_Config_Element
110
+ */
111
+ public function getGroup($element = null)
112
+ {
113
+ if (is_null($element)) {
114
+ $element = $this->getElement();
115
+ }
116
+ if ($element && $element->getGroup() instanceof Mage_Core_Model_Config_Element) {
117
+ return $element->getGroup();
118
+ }
119
+
120
+ return new Mage_Core_Model_Config_Element('<config/>');
121
+ }
122
+
123
+ /**
124
+ * Return header title part of html for fieldset
125
+ *
126
+ * @param Varien_Data_Form_Element_Abstract $element
127
+ * @return string
128
+ */
129
+ protected function _getHeaderTitleHtml($element)
130
+ {
131
+ return '<div class="entry-edit-head collapseable" ><a id="' . $element->getHtmlId()
132
+ . '-head" href="#" onclick="Fieldset.toggleCollapse(\'' . $element->getHtmlId() . '\', \''
133
+ . $this->getUrl('*/*/state') . '\'); return false;">' . $element->getLegend() . '</a></div>';
134
+ }
135
+
136
+ /**
137
+ * Return header comment part of html for fieldset
138
+ *
139
+ * @param Varien_Data_Form_Element_Abstract $element
140
+ * @return string
141
+ */
142
+ protected function _getHeaderCommentHtml($element)
143
+ {
144
+ return $element->getComment()
145
+ ? '<div class="comment">' . $element->getComment() . '</div>'
146
+ : '';
147
+ }
148
+
149
  /**
150
  * Return full css class name for form fieldset
151
  *
152
+ * @param null|Varien_Data_Form_Element_Abstract $element
153
  * @return string
154
  */
155
+ protected function _getFieldsetCss($element = null)
156
  {
157
+ $configCss = (string)$this->getGroup($element)->fieldset_css;
158
+ return 'config collapseable' . ($configCss ? ' ' . $configCss : '');
159
  }
160
 
161
  /**
169
  {
170
  $tooltipsExist = false;
171
  $html = '</tbody></table>';
 
 
 
 
 
 
 
 
172
  $html .= '</fieldset>' . $this->_getExtraJs($element, $tooltipsExist);
173
+
174
+ if ($element->getIsNested()) {
175
+ $html .= '</div></td></tr>';
176
+ } else {
177
+ $html .= '</div>';
178
+ }
179
  return $html;
180
  }
181
 
192
  {
193
  $id = $element->getHtmlId();
194
  $js = "Fieldset.applyCollapse('{$id}');";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  return Mage::helper('adminhtml/js')->getScript($js);
196
  }
197
 
app/code/core/Mage/Adminhtml/Model/Config.php CHANGED
@@ -67,7 +67,7 @@ class Mage_Adminhtml_Model_Config extends Varien_Simplexml_Config
67
  }
68
 
69
  /**
70
- * Retrive tabs
71
  *
72
  * @return Varien_Simplexml_Element
73
  */
@@ -80,19 +80,21 @@ class Mage_Adminhtml_Model_Config extends Varien_Simplexml_Config
80
  return $this->_tabs;
81
  }
82
 
 
 
 
 
 
83
  protected function _initSectionsAndTabs()
84
  {
85
- $mergeConfig = Mage::getModel('core/config_base');
86
-
87
- $config = Mage::getConfig()->loadModulesConfiguration('system.xml');
88
 
 
89
  $this->_sections = $config->getNode('sections');
90
-
91
  $this->_tabs = $config->getNode('tabs');
92
  }
93
 
94
-
95
-
96
  /**
97
  * Enter description here...
98
  *
@@ -103,7 +105,6 @@ class Mage_Adminhtml_Model_Config extends Varien_Simplexml_Config
103
  */
104
  public function getSection($sectionCode=null, $websiteCode=null, $storeCode=null)
105
  {
106
-
107
  if ($sectionCode){
108
  return $this->getSections()->$sectionCode;
109
  } elseif ($websiteCode) {
@@ -131,7 +132,7 @@ class Mage_Adminhtml_Model_Config extends Varien_Simplexml_Config
131
  $showTab=true;
132
  }
133
  }
134
- }elseif ($websiteCode) {
135
  if (isset($node->show_in_website)) {
136
  if ((int)$node->show_in_website) {
137
  $showTab=true;
@@ -162,7 +163,6 @@ class Mage_Adminhtml_Model_Config extends Varien_Simplexml_Config
162
  }
163
  }
164
  return false;
165
-
166
  }
167
 
168
  /**
67
  }
68
 
69
  /**
70
+ * Retrieve tabs
71
  *
72
  * @return Varien_Simplexml_Element
73
  */
80
  return $this->_tabs;
81
  }
82
 
83
+ /**
84
+ * Init modules configuration
85
+ *
86
+ * @return void
87
+ */
88
  protected function _initSectionsAndTabs()
89
  {
90
+ $config = Mage::getConfig()->loadModulesConfiguration('system.xml')
91
+ ->applyExtends();
 
92
 
93
+ Mage::dispatchEvent('adminhtml_init_system_config', array('config' => $config));
94
  $this->_sections = $config->getNode('sections');
 
95
  $this->_tabs = $config->getNode('tabs');
96
  }
97
 
 
 
98
  /**
99
  * Enter description here...
100
  *
105
  */
106
  public function getSection($sectionCode=null, $websiteCode=null, $storeCode=null)
107
  {
 
108
  if ($sectionCode){
109
  return $this->getSections()->$sectionCode;
110
  } elseif ($websiteCode) {
132
  $showTab=true;
133
  }
134
  }
135
+ } elseif ($websiteCode) {
136
  if (isset($node->show_in_website)) {
137
  if ((int)$node->show_in_website) {
138
  $showTab=true;
163
  }
164
  }
165
  return false;
 
166
  }
167
 
168
  /**
app/code/core/Mage/Adminhtml/Model/Config/Data.php CHANGED
@@ -34,6 +34,20 @@
34
 
35
  class Mage_Adminhtml_Model_Config_Data extends Varien_Object
36
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  /**
38
  * Save config section
39
  * Require set: section, website, store and groups
@@ -72,7 +86,6 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
72
  $oldConfigAdditionalGroups = array();
73
 
74
  foreach ($groups as $group => $groupData) {
75
-
76
  /**
77
  * Map field names if they were cloned
78
  */
@@ -104,28 +117,31 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
104
  }
105
 
106
  foreach ($groupData['fields'] as $field => $fieldData) {
 
 
 
 
 
 
 
 
 
 
 
107
 
108
  /**
109
  * Get field backend model
110
  */
111
- $backendClass = $sections->descend($section.'/groups/'.$group.'/fields/'.$field.'/backend_model');
112
- if (!$backendClass && $clonedFields && isset($mappedFields[$field])) {
113
- $backendClass = $sections->descend($section.'/groups/'.$group.'/fields/'.$mappedFields[$field].'/backend_model');
114
- }
115
  if (!$backendClass) {
116
  $backendClass = 'core/config_data';
117
  }
118
 
 
119
  $dataObject = Mage::getModel($backendClass);
120
  if (!$dataObject instanceof Mage_Core_Model_Config_Data) {
121
  Mage::throwException('Invalid config field backend model: '.$backendClass);
122
  }
123
- /* @var $dataObject Mage_Core_Model_Config_Data */
124
-
125
- $fieldConfig = $sections->descend($section.'/groups/'.$group.'/fields/'.$field);
126
- if (!$fieldConfig && $clonedFields && isset($mappedFields[$field])) {
127
- $fieldConfig = $sections->descend($section.'/groups/'.$group.'/fields/'.$mappedFields[$field]);
128
- }
129
 
130
  $dataObject
131
  ->setField($field)
@@ -143,11 +159,7 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
143
  $fieldData['value'] = null;
144
  }
145
 
146
- /*if (is_array($fieldData['value'])) {
147
- $fieldData['value'] = join(',', $fieldData['value']);
148
- }*/
149
-
150
- $path = $section.'/'.$group.'/'.$field;
151
 
152
  /**
153
  * Look for custom defined field path
@@ -188,7 +200,6 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
188
  $saveTransaction->addObject($dataObject);
189
  }
190
  }
191
-
192
  }
193
 
194
  $deleteTransaction->delete();
@@ -204,10 +215,12 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
204
  */
205
  public function load()
206
  {
207
- $this->_validate();
208
- $this->_getScope();
209
-
210
- return $this->_getConfig(false);
 
 
211
  }
212
 
213
  /**
@@ -253,15 +266,19 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
253
  if ($this->getStore()) {
254
  $scope = 'stores';
255
  $scopeId = (int)Mage::getConfig()->getNode('stores/' . $this->getStore() . '/system/store/id');
 
256
  } elseif ($this->getWebsite()) {
257
  $scope = 'websites';
258
  $scopeId = (int)Mage::getConfig()->getNode('websites/' . $this->getWebsite() . '/system/website/id');
 
259
  } else {
260
  $scope = 'default';
261
  $scopeId = 0;
 
262
  }
263
  $this->setScope($scope);
264
  $this->setScopeId($scopeId);
 
265
  }
266
 
267
  /**
@@ -303,4 +320,43 @@ class Mage_Adminhtml_Model_Config_Data extends Varien_Object
303
  }
304
  return $config;
305
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  }
34
 
35
  class Mage_Adminhtml_Model_Config_Data extends Varien_Object
36
  {
37
+ /**
38
+ * Config data for sections
39
+ *
40
+ * @var array
41
+ */
42
+ protected $_configData;
43
+
44
+ /**
45
+ * Root config node
46
+ *
47
+ * @var Mage_Core_Model_Config_Element
48
+ */
49
+ protected $_configRoot;
50
+
51
  /**
52
  * Save config section
53
  * Require set: section, website, store and groups
86
  $oldConfigAdditionalGroups = array();
87
 
88
  foreach ($groups as $group => $groupData) {
 
89
  /**
90
  * Map field names if they were cloned
91
  */
117
  }
118
 
119
  foreach ($groupData['fields'] as $field => $fieldData) {
120
+ $fieldConfig = $sections->descend($section . '/groups/' . $group . '/fields/' . $field);
121
+ if (!$fieldConfig && $clonedFields && isset($mappedFields[$field])) {
122
+ $fieldConfig = $sections->descend($section . '/groups/' . $group . '/fields/'
123
+ . $mappedFields[$field]);
124
+ }
125
+ if (!$fieldConfig) {
126
+ $node = $sections->xpath($section .'//' . $group . '[@type="group"]/fields/' . $field);
127
+ if ($node) {
128
+ $fieldConfig = $node[0];
129
+ }
130
+ }
131
 
132
  /**
133
  * Get field backend model
134
  */
135
+ $backendClass = $fieldConfig->backend_model;
 
 
 
136
  if (!$backendClass) {
137
  $backendClass = 'core/config_data';
138
  }
139
 
140
+ /** @var $dataObject Mage_Core_Model_Config_Data */
141
  $dataObject = Mage::getModel($backendClass);
142
  if (!$dataObject instanceof Mage_Core_Model_Config_Data) {
143
  Mage::throwException('Invalid config field backend model: '.$backendClass);
144
  }
 
 
 
 
 
 
145
 
146
  $dataObject
147
  ->setField($field)
159
  $fieldData['value'] = null;
160
  }
161
 
162
+ $path = $section . '/' . $group . '/' . $field;
 
 
 
 
163
 
164
  /**
165
  * Look for custom defined field path
200
  $saveTransaction->addObject($dataObject);
201
  }
202
  }
 
203
  }
204
 
205
  $deleteTransaction->delete();
215
  */
216
  public function load()
217
  {
218
+ if (is_null($this->_configData)) {
219
+ $this->_validate();
220
+ $this->_getScope();
221
+ $this->_configData = $this->_getConfig(false);
222
+ }
223
+ return $this->_configData;
224
  }
225
 
226
  /**
266
  if ($this->getStore()) {
267
  $scope = 'stores';
268
  $scopeId = (int)Mage::getConfig()->getNode('stores/' . $this->getStore() . '/system/store/id');
269
+ $scopeCode = $this->getStore();
270
  } elseif ($this->getWebsite()) {
271
  $scope = 'websites';
272
  $scopeId = (int)Mage::getConfig()->getNode('websites/' . $this->getWebsite() . '/system/website/id');
273
+ $scopeCode = $this->getWebsite();
274
  } else {
275
  $scope = 'default';
276
  $scopeId = 0;
277
+ $scopeCode = '';
278
  }
279
  $this->setScope($scope);
280
  $this->setScopeId($scopeId);
281
+ $this->setScopeCode($scopeCode);
282
  }
283
 
284
  /**
320
  }
321
  return $config;
322
  }
323
+
324
+ /**
325
+ * Get config data value
326
+ *
327
+ * @param string $path
328
+ * @param null|bool $inherit
329
+ * @param null|array $configData
330
+ * @return Varien_Simplexml_Element
331
+ */
332
+ public function getConfigDataValue($path, &$inherit = null, $configData = null)
333
+ {
334
+ $this->load();
335
+ if (is_null($configData)) {
336
+ $configData = $this->_configData;
337
+ }
338
+ if (isset($configData[$path])) {
339
+ $data = $configData[$path];
340
+ $inherit = false;
341
+ } else {
342
+ $data = $this->getConfigRoot()->descend($path);
343
+ $inherit = true;
344
+ }
345
+
346
+ return $data;
347
+ }
348
+
349
+ /**
350
+ * Get config root node for current scope
351
+ *
352
+ * @return Mage_Core_Model_Config_Element
353
+ */
354
+ public function getConfigRoot()
355
+ {
356
+ if (is_null($this->_configRoot)) {
357
+ $this->load();
358
+ $this->_configRoot = Mage::getConfig()->getNode(null, $this->getScope(), $this->getScopeCode());
359
+ }
360
+ return $this->_configRoot;
361
+ }
362
  }
app/code/core/Mage/Adminhtml/controllers/System/ConfigController.php CHANGED
@@ -78,6 +78,11 @@ class Mage_Adminhtml_System_ConfigController extends Mage_Adminhtml_Controller_A
78
  $website = $this->getRequest()->getParam('website');
79
  $store = $this->getRequest()->getParam('store');
80
 
 
 
 
 
 
81
  $configFields = Mage::getSingleton('adminhtml/config');
82
 
83
  $sections = $configFields->getSections($current);
@@ -152,7 +157,7 @@ class Mage_Adminhtml_System_ConfigController extends Mage_Adminhtml_Controller_A
152
  $section = $this->getRequest()->getParam('section');
153
  $website = $this->getRequest()->getParam('website');
154
  $store = $this->getRequest()->getParam('store');
155
- Mage::getModel('adminhtml/config_data')
156
  ->setSection($section)
157
  ->setWebsite($website)
158
  ->setStore($store)
78
  $website = $this->getRequest()->getParam('website');
79
  $store = $this->getRequest()->getParam('store');
80
 
81
+ Mage::getSingleton('adminhtml/config_data')
82
+ ->setSection($current)
83
+ ->setWebsite($website)
84
+ ->setStore($store);
85
+
86
  $configFields = Mage::getSingleton('adminhtml/config');
87
 
88
  $sections = $configFields->getSections($current);
157
  $section = $this->getRequest()->getParam('section');
158
  $website = $this->getRequest()->getParam('website');
159
  $store = $this->getRequest()->getParam('store');
160
+ Mage::getSingleton('adminhtml/config_data')
161
  ->setSection($section)
162
  ->setWebsite($website)
163
  ->setStore($store)
app/locale/en_US/Mage_Adminhtml.csv CHANGED
@@ -1,9 +1,6 @@
1
  " The customer does not exist in the system anymore."," The customer does not exist in the system anymore."
2
- " You will need to navigate to your "," You will need to navigate to your "
3
  " [deleted]"," [deleted]"
4
  " and "," and "
5
- " and go to the "," and go to the "
6
- " sections for your Hosted Checkout Pages."," sections for your Hosted Checkout Pages."
7
  "%s (Default Template from Locale)","%s (Default Template from Locale)"
8
  "%s cache type(s) disabled.","%s cache type(s) disabled."
9
  "%s cache type(s) enabled.","%s cache type(s) enabled."
@@ -33,11 +30,9 @@
33
  "-- Please select --","-- Please select --"
34
  "--Please Select--","--Please Select--"
35
  "1 Hour","1 Hour"
36
- "1. set up","1. set up"
37
  "12 Hours","12 Hours"
38
  "12h AM/PM","12h AM/PM"
39
  "2 Hours","2 Hours"
40
- "2. customize","2. customize"
41
  "24 Hours","24 Hours"
42
  "24h","24h"
43
  "2YTD","2YTD"
@@ -218,6 +213,7 @@
218
  "Close","Close"
219
  "Comment text field cannot be empty.","Comment text field cannot be empty."
220
  "Complete","Complete"
 
221
  "Configuration","Configuration"
222
  "Confirm New Password","Confirm New Password"
223
  "Confirm token authorization Pop Up for admin","Confirm token authorization Pop Up for admin"
@@ -616,6 +612,8 @@
616
  "OAuth authorization simple for admin","OAuth authorization simple for admin"
617
  "OK","OK"
618
  "Old rate:","Old rate:"
 
 
619
  "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details."
620
  "One or more of the Cache Types are invalidated:","One or more of the Cache Types are invalidated:"
621
  "Online Customers","Online Customers"
@@ -648,7 +646,6 @@
648
  "Password must include both numeric and alphabetic characters.","Password must include both numeric and alphabetic characters."
649
  "Password:","Password:"
650
  "Path:","Path:"
651
- "PayPal Manager","PayPal Manager"
652
  "Payment method instance is not available.","Payment method instance is not available."
653
  "Payment method is not available.","Payment method is not available."
654
  "Payment method must be specified.","Payment method must be specified."
@@ -854,8 +851,6 @@
854
  "Self-assigned roles cannot be deleted.","Self-assigned roles cannot be deleted."
855
  "Sender","Sender"
856
  "Separate Email","Separate Email"
857
- "Service Settings","Service Settings"
858
- "Set up & Customize","Set up & Customize"
859
  "Shipment #%s comment added","Shipment #%s comment added"
860
  "Shipment #%s created","Shipment #%s created"
861
  "Shipment Comments","Shipment Comments"
@@ -1021,8 +1016,8 @@
1021
  "Timeout limit for response from synchronize process was reached.","Timeout limit for response from synchronize process was reached."
1022
  "To","To"
1023
  "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel."
1024
- "To use PayPal Payflow Link you must configure some settings in your Payflow account by logging into","To use PayPal Payflow Link you must configure some settings in your Payflow account by logging into"
1025
- "To use PayPal Payments Advanced you must configure some settings in your PayPal Payments Advanced account by logging into","To use PayPal Payments Advanced you must configure some settings in your PayPal Payments Advanced account by logging into"
1026
  "Toggle Editor","Toggle Editor"
1027
  "Tools","Tools"
1028
  "Top 5 Search Terms","Top 5 Search Terms"
1
  " The customer does not exist in the system anymore."," The customer does not exist in the system anymore."
 
2
  " [deleted]"," [deleted]"
3
  " and "," and "
 
 
4
  "%s (Default Template from Locale)","%s (Default Template from Locale)"
5
  "%s cache type(s) disabled.","%s cache type(s) disabled."
6
  "%s cache type(s) enabled.","%s cache type(s) enabled."
30
  "-- Please select --","-- Please select --"
31
  "--Please Select--","--Please Select--"
32
  "1 Hour","1 Hour"
 
33
  "12 Hours","12 Hours"
34
  "12h AM/PM","12h AM/PM"
35
  "2 Hours","2 Hours"
 
36
  "24 Hours","24 Hours"
37
  "24h","24h"
38
  "2YTD","2YTD"
213
  "Close","Close"
214
  "Comment text field cannot be empty.","Comment text field cannot be empty."
215
  "Complete","Complete"
216
+ "Config form fieldset clone model required to be able to clone fields","Config form fieldset clone model required to be able to clone fields"
217
  "Configuration","Configuration"
218
  "Confirm New Password","Confirm New Password"
219
  "Confirm token authorization Pop Up for admin","Confirm token authorization Pop Up for admin"
612
  "OAuth authorization simple for admin","OAuth authorization simple for admin"
613
  "OK","OK"
614
  "Old rate:","Old rate:"
615
+ "Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
616
+ "Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
617
  "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details."
618
  "One or more of the Cache Types are invalidated:","One or more of the Cache Types are invalidated:"
619
  "Online Customers","Online Customers"
646
  "Password must include both numeric and alphabetic characters.","Password must include both numeric and alphabetic characters."
647
  "Password:","Password:"
648
  "Path:","Path:"
 
649
  "Payment method instance is not available.","Payment method instance is not available."
650
  "Payment method is not available.","Payment method is not available."
651
  "Payment method must be specified.","Payment method must be specified."
851
  "Self-assigned roles cannot be deleted.","Self-assigned roles cannot be deleted."
852
  "Sender","Sender"
853
  "Separate Email","Separate Email"
 
 
854
  "Shipment #%s comment added","Shipment #%s comment added"
855
  "Shipment #%s created","Shipment #%s created"
856
  "Shipment Comments","Shipment Comments"
1016
  "Timeout limit for response from synchronize process was reached.","Timeout limit for response from synchronize process was reached."
1017
  "To","To"
1018
  "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel."
1019
+ "To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website.","To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website."
1020
+ "To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.","To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website."
1021
  "Toggle Editor","Toggle Editor"
1022
  "Tools","Tools"
1023
  "Top 5 Search Terms","Top 5 Search Terms"
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
- <version>1.7.0.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.7.0.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2012-04-23</date>
14
- <time>13:48:02</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="53b42a69d31aef2d705eb2907ac4096f"/><dir name="Api"><file name="Buttons.php" hash="115dd77ba94468b3d80e556eaf4e2a28"/><file name="Editroles.php" hash="735a5daa8cdffcb7b3f4329091e8dd8a"/><file name="Edituser.php" hash="d8678e64c378e9e35370eef3bd884660"/><dir name="Grid"><file name="Role.php" hash="a2a9b30b00399ac2f16eef7d8d4e2de2"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="0211c7e077b4fee9f86ea48c024bfbb3"/></dir></dir><file name="Role.php" hash="961dad9e56d008082734c5d7038dd499"/><file name="Roles.php" hash="29d49d57a9242aee1544708681ad243f"/><dir name="Tab"><file name="Roleinfo.php" hash="c71d4cea8adc4a87c6a0b02234da0681"/><file name="Rolesedit.php" hash="dc56eb3840e413940998552ccf692bba"/><file name="Rolesusers.php" hash="fe667b2b4f640fa44c88b8b0ca20c06f"/><file name="Userroles.php" hash="809407afa1c0a41698aeca3e0d0982ba"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="5864b3fab1808fa3e5b2e8579115a7a7"/><dir name="Tab"><file name="Main.php" hash="f2a603eba2643105c2d10c50c71214c8"/><file name="Roles.php" hash="48db546936de7c14ac65aea67ef30342"/></dir><file name="Tabs.php" hash="a868cb54e325e382d13eb2b0e6087c06"/></dir><file name="Edit.php" hash="2f67d4e2a556ced20da960f4206996b2"/><file name="Grid.php" hash="53580953a3931d127f9e3639b2ae3738"/></dir><file name="User.php" hash="d20415fbd7fdc525dc0a18891d120033"/><file name="Users.php" hash="71209efcbc122fe629cbb23a300f8d68"/></dir><dir name="Backup"><file name="Dialogs.php" hash="f2c15eead546c2ec7f2fb70921d1b157"/><file name="Grid.php" hash="255cbcfe274247d8326781e817e817ee"/></dir><file name="Backup.php" hash="87db0bbc532771b4319544766267daee"/><dir name="Cache"><file name="Additional.php" hash="8d6b760e1eae392db3043fc608ce5b1b"/><file name="Grid.php" hash="2760c6c5a65d550dc1215dfbdec7e757"/><file name="Notifications.php" hash="a90f6926a5c2126d5328799613721695"/></dir><file name="Cache.php" hash="65c921b80d2c94d10aa7de682ec58e7f"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="0c978c5e415938620e6f01bf4b1e8655"/><dir name="Checkboxes"><file name="Tree.php" hash="ce785862f5b0e786f54ee6da18618343"/></dir><dir name="Edit"><file name="Form.php" hash="944afdb0d8d4e4b513d4c71dcbd25363"/></dir><file name="Edit.php" hash="c07e26e39044d965e8e4141d15a96e8a"/><dir name="Helper"><file name="Image.php" hash="17f391d259497efa8877b59f870f2c08"/><file name="Pricestep.php" hash="2ce3b639995f85f18f6961a4ab66f83a"/><dir name="Sortby"><file name="Available.php" hash="54a9d288d0705832da8ab1db9d66ff2c"/><file name="Default.php" hash="5fa1bd1388e912be8cadbb3ca915fe6e"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="a8ce9ee8bde0fe798d2a981e49a286de"/><file name="Design.php" hash="fb0c2b67d547ba1b7e1f6bd4f27cfa09"/><file name="General.php" hash="d24f1b5a7fb2dbc246dd5a796dffd6f5"/><file name="Product.php" hash="3e5405c0e568429499d2ace4737dda1a"/></dir><file name="Tabs.php" hash="d177c39d04e834ae27672a356f4bb9f6"/><file name="Tree.php" hash="d3fcfe3158c1ff8d17ebf30db9367473"/><dir name="Widget"><file name="Chooser.php" hash="90b2ea626a6fec8b89af3e0446b90e61"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="d3a6dad8d004f59cb7d6481c6389b745"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="20b4000b60254aae8022c70fe502b447"/><file name="YearRange.php" hash="24f6b6ec3031143ca7f3121eabcdee74"/></dir><dir name="Fieldset"><file name="Element.php" hash="c6580590cb5f17d469d39498ebbe6c17"/></dir></dir></dir><file name="Form.php" hash="5e1aadbb6b445fa824996bbd9c26fa4f"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="4b1e9946d22bdd8f354b7a094b80ec91"/></dir><file name="Wysiwyg.php" hash="e05c5aadda1c25161ca89ce7dec3abcd"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="b2a5ee97b15776dbf0b3df76c7b61695"/><dir name="Tab"><file name="Front.php" hash="816118c6aac436833d88e807e517e28b"/><file name="Main.php" hash="3f7c56ee2bc12306daabdd2169612ded"/><file name="Options.php" hash="8320337e8404b988cdc0c023030a3e19"/><file name="System.php" hash="b00ff96aa183a27b5870b1f79774d38a"/></dir><file name="Tabs.php" hash="ea82087fb3941a943b4e6f781d396a34"/></dir><file name="Edit.php" hash="11893ab0100c8081cae56588c11e7ab2"/><file name="Grid.php" hash="4e64920e9a1387fa5cc774cb5c9569f5"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="8199aee9c651eda7eee9d92d31895881"/><file name="Created.php" hash="5bb3cc15a7965f5be2cced4a293d5e42"/></dir></dir><dir name="Set"><file name="Grid.php" hash="f821944a710e581fb1c0d4444e6e52b5"/><dir name="Main"><file name="Formattribute.php" hash="0e9daadc70323784563d8e5b48c0434d"/><file name="Formgroup.php" hash="2ceb67da9e4711744b89b02ee48d1cdd"/><file name="Formset.php" hash="b9f37c657ff0183d1b0b0e9ec03307c4"/><dir name="Tree"><file name="Attribute.php" hash="a847eed55ec642070174116ed2afc704"/><file name="Group.php" hash="9749af82a07c60ffad4bf346f9527bd9"/></dir></dir><file name="Main.php" hash="2640bac615d5fe3a532b57e2b8192605"/><dir name="Toolbar"><file name="Add.php" hash="d2fc89ab8956eb14aabcf585e3882608"/><dir name="Main"><file name="Filter.php" hash="71b12f3246ce2b71284edf9dd8109ef0"/></dir><file name="Main.php" hash="1b36255e6d3cd91ce27c2a5a077ee473"/></dir></dir></dir><file name="Attribute.php" hash="457cdcffc8af95ec2fff16ee7b5df3f5"/><dir name="Composite"><file name="Configure.php" hash="db8712677adce784037e008c331b7622"/><file name="Error.php" hash="e68bd05438739df588a71a1dc7adb945"/><dir name="Fieldset"><file name="Configurable.php" hash="c1ef7fe7bf30835dbb1ef5f1a7c53b22"/><file name="Grouped.php" hash="436fd607a122629f4b3cc7dfb9ffedf0"/><file name="Options.php" hash="eeede9c876ad971e28c52066ca9ced8a"/><file name="Qty.php" hash="fb860b4d54e75101507a8d3a1df2235f"/></dir><file name="Fieldset.php" hash="5c232092ec09b2fb2c2bf778b48b6790"/><dir name="Update"><file name="Result.php" hash="ee1dfb3d9286477f96e9d2f38a93d886"/></dir></dir><file name="Created.php" hash="ac18043088c35e3b189e7e7e597cc143"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="1913cabb608987933e87ba8a40217294"/><file name="Inventory.php" hash="6eb2c129a07e65ac4d4c7cf84557ab70"/><file name="Websites.php" hash="8c40cca484c458e32a2f8e1e0fa86c9f"/></dir><file name="Tabs.php" hash="fcc683092220c4513592cc7c80959561"/></dir><file name="Attribute.php" hash="266783048cba204adf2da18b11895f36"/></dir><file name="Js.php" hash="ab78eeff7389412259c3f87dcfe3501c"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="05e4a011165b2bd03a16e46db9d92f9d"/></dir><dir name="Alerts"><file name="Price.php" hash="bca8f08f497b8ea9a69fb081ea04d787"/><file name="Stock.php" hash="a96ba525284da2d53256c09b5f275195"/></dir><file name="Alerts.php" hash="9821422b1e68b6974ab9d3922f7c45b5"/><dir name="Attributes"><file name="Create.php" hash="bd57a3cb7149d165242c12f3b80216d2"/></dir><file name="Attributes.php" hash="11d4aac6bb245604b612735b7ab8c1c7"/><file name="Categories.php" hash="205acdfb85c9a2e3d7b4bf39148131f1"/><file name="Crosssell.php" hash="b8adf4f8f894895d5206f13704b50b0f"/><file name="Inventory.php" hash="86358e59722cfb27960ea0d0754004a1"/><dir name="Options"><file name="Option.php" hash="84b969376a404bb13784a17874fa971e"/><dir name="Type"><file name="Abstract.php" hash="fa334da8ecf1fc97ac963eeaa5a523de"/><file name="Date.php" hash="74c9ffd6fc308569190d4eccea6ddae0"/><file name="File.php" hash="3a814a81c69972bd7f3650cc39472d78"/><file name="Select.php" hash="7175096d087a60a005375556733b7a03"/><file name="Text.php" hash="d031f4c8dab63eb03c5ea03febaea058"/></dir></dir><file name="Options.php" hash="260d85140dbe93984dc5ad12714cee9b"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="a9363539050bd206b9dbd7d14148bbc6"/></dir><file name="Group.php" hash="84e704ff56ef7bca0ca1a5bc2d6cf967"/><file name="Recurring.php" hash="79b6d81201aed60ef6a3bd8128d46839"/><file name="Tier.php" hash="b48b0d43bd65d3eee65820701c732679"/></dir><file name="Price.php" hash="41e7a39ddd584e168772f904aeadbcb5"/><file name="Related.php" hash="2c4678c2cd1acf4f94f46eddc292e30a"/><file name="Reviews.php" hash="2a2d335f924dc4761cbd07f944aa40de"/><file name="Settings.php" hash="8e9f72e22c7c4751074c21d5ba398816"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="7c249fe9b56ff41b672b338d17f33346"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="de7dfc952ba306d9d4c3a445fe5be52b"/><file name="Inventory.php" hash="bf57717f6a09fb2ae986356bfea6f9b0"/></dir></dir><file name="Grid.php" hash="6f9e7b4767da9df1928397660945c7c4"/><file name="Simple.php" hash="7774d32e74cfd797178ec3b60d04ae9f"/></dir><file name="Config.php" hash="de6ec0b2d5335cdae3495b06cbce36ff"/><file name="Group.php" hash="2785336fb72c8161f850f5c55073492d"/><file name="Settings.php" hash="4fe9619abf262e8c88adafafd62f6a68"/></dir><dir name="Tag"><file name="Customer.php" hash="c3cdfd983887631b074751631c031081"/></dir><file name="Tag.php" hash="c84b9a3de382b41f6b95404bb4ef0f0e"/><file name="Upsell.php" hash="d0f1d868084b9749e5fcddffde81ba18"/><file name="Websites.php" hash="e9a8f9d9a0105c368d2d7018b1a7a761"/></dir><dir name="Tabs"><file name="Configurable.php" hash="79af35153959f94a78b59e7049407b5b"/><file name="Grouped.php" hash="516d6963a1d127edddce283789cb7278"/></dir><file name="Tabs.php" hash="589efabfc8118d88b2aaf85448644fdd"/></dir><file name="Edit.php" hash="b989b8b6160a6183ff72de9b20a2bf2b"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="1e8811286bfcec762d47fef09128d7c9"/></dir></dir><file name="Grid.php" hash="f9257851e0e767daafc2cb62b905c7b7"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="c3b58dcf89042c0bd95c5d7e52f57dec"/><file name="Boolean.php" hash="a5ae66b43dd5e05c1f6a1de852011ce2"/><file name="Config.php" hash="4edf2bf935d92453dfe42a6684ce791f"/><dir name="Gallery"><file name="Content.php" hash="b154bfd5bae2e1d421332c94678dba2b"/></dir><file name="Gallery.php" hash="34deb18e36b5f4da936cadc75d3c46e9"/><file name="Image.php" hash="8b923f3a3f11778002f7682ef99e36ab"/><dir name="Msrp"><file name="Enabled.php" hash="134d299c4db7620d13062b2d0b363880"/><file name="Price.php" hash="77e540c231d67a27677489f0bc8b2fc9"/></dir><file name="Price.php" hash="e52dff647d4334f31a01500beb9492a8"/><file name="Weight.php" hash="b79b915dfd0fbfe84472c89ad345f286"/></dir></dir><file name="Price.php" hash="5649a48a8158cbb30cd94f0ffcd89516"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="1dfb7a93f7f796b73a2514206dec84ad"/></dir><file name="Chooser.php" hash="b5bc36040e0525aeaa6a8021c9fa44b5"/></dir></dir><file name="Product.php" hash="8773e35cadb4e8859d9be56ba4a3db93"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="4e03e0ecbee0cf55b821249467842711"/></dir><file name="Edit.php" hash="96e19dcc7749ab9029f56715b50673ba"/><file name="Grid.php" hash="c2ba6e5b2522e2c437ff349e8d1b0ab7"/></dir><file name="Search.php" hash="275774b584978b7bc882437e12cb0553"/></dir><file name="Catalog.php" hash="fe3dac6e1e774aa7e2177df0212fac51"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="5b042386fcb0b04dd8da70ec79fa0242"/></dir><file name="Edit.php" hash="dfbc214b1c71bc235b7da68fb0ccf8ed"/><file name="Grid.php" hash="e33a3be50fdddb81817b9a1603531dc7"/></dir><file name="Agreement.php" hash="8beb26e27ad662e806e2322e0b433d10"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="b5d957fa7d9c934307c8eb9a305e617b"/></dir><file name="Edit.php" hash="d64fc9f41327a466908c9ce317ce0ac7"/><file name="Grid.php" hash="d7a11ee1f569d55d31ad1cbaae40944a"/><dir name="Widget"><file name="Chooser.php" hash="85690edac9ed87f2cc138b7823e4064e"/></dir></dir><file name="Block.php" hash="2d313ebc18f48ee0b19fc91776e9f141"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="40c12421162d14007d6970951a9afdaa"/><dir name="Tab"><file name="Content.php" hash="fbaa5d542cd960631cd49e801c0442fb"/><file name="Design.php" hash="d19fe21766db10836daa8c9bc2c0ebea"/><file name="Main.php" hash="06b7a2b9b36d03c3d1ba018d25c45563"/><file name="Meta.php" hash="d85cfdc972fb7e13e12e5ac0d628bee7"/></dir><file name="Tabs.php" hash="8e1e208deaeb6b7fe9a0b35147543299"/></dir><file name="Edit.php" hash="b713e134c027fbfe6f3becaa7b6aa489"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="1ffe1c276d333534ed41ad0ced78b907"/></dir></dir><file name="Grid.php" hash="dc977013d61157a74a1b16d333363fbc"/><dir name="Widget"><file name="Chooser.php" hash="2bc2583c77f14ef84aa576db93cac153"/></dir></dir><file name="Page.php" hash="541ee026b0fe64f2507928d7b06d23b6"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="96ba466e162a5b304e05581a1b9981c2"/><file name="Newfolder.php" hash="e53addca9a2a2a705e97bd493c57833c"/><file name="Uploader.php" hash="d46965540d2986ff74f9c2c030f2dbb4"/></dir><file name="Content.php" hash="fa97cc6ae723a62eeb137dcb23851225"/><file name="Tree.php" hash="6de3fa85978962413118cfc15b5f8f82"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="1f67c823a7d95c05e6d12dbeb7f1d8a8"/><dir name="Renderer"><dir name="Attribute"><file name="Group.php" hash="f9b1d5a51d30447a7d9f7071586ee877"/></dir><file name="Newpass.php" hash="ac4fa9dc5051438082627e92ea7c0a2c"/><file name="Region.php" hash="935c7de8fa4e2c1163618797c2ab38bc"/></dir><dir name="Tab"><file name="Account.php" hash="d4c9799e34518b5c5289668365c93659"/><file name="Addresses.php" hash="e4121c55eab7cbb0c6af0e84d1f88372"/><file name="Cart.php" hash="704f6094406649bfbedbd39c7890e9ec"/><file name="Carts.php" hash="5b9ae5af7979e6ad450582586c53ce53"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="404518e659f008dc468a7a1dbe040ade"/></dir><dir name="Renderer"><file name="Action.php" hash="ca18c1b4906525ab2e3e5a269ae1dcb4"/><file name="Status.php" hash="d8645cd46eb22ea70d4d82378e0963a9"/></dir></dir><file name="Grid.php" hash="25367c8354688f0847b88bf550f83909"/></dir><file name="Newsletter.php" hash="4882fc412b8937f9067d697f6faf1b23"/><file name="Orders.php" hash="bdde89330eb08260b1379983e7321e4f"/><file name="Reviews.php" hash="5e1b838e3ff6ac5d56690cf6dbb64c21"/><file name="Tag.php" hash="b79a5b5aa7c3b8cd3b65a2e30ae1469c"/><file name="Tags.php" hash="8d1c6dc24d4a37d1682da0325d38a3f4"/><dir name="View"><file name="Accordion.php" hash="a2c3d532cd50646f5e815f9caabd5656"/><file name="Cart.php" hash="2aa9e930c24e676b27d5fd50474023e3"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="c988a1a9a991a134ea1a5fbe6d68276a"/></dir></dir><file name="Orders.php" hash="7672de0cdc21ef105996c16ee644309a"/><file name="Sales.php" hash="6d0a1b107cf09d6764c6f8fd78808210"/><file name="Wishlist.php" hash="364912121436991e7d1c9398037fbb42"/></dir><file name="View.php" hash="41c5ae6f7bbdfa16eaef03e91e706cdd"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="1bf1fc06f45f416d170f9bcc261e52bc"/></dir></dir></dir><file name="Wishlist.php" hash="e59f38cc4235c7a830b6b2334dcbc335"/></dir><file name="Tabs.php" hash="6ba18346d8e0520459e55d58495e36f3"/></dir><file name="Edit.php" hash="2fca97b88871844d210e351c3b5742cf"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="c3eba0cf0a275acfce2955d2c9ffab4b"/><file name="File.php" hash="57c6d939785f37f9be36b949584ad8a3"/><file name="Image.php" hash="8e30e22534e84f2e3722003eba8a42af"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="2360da5365a2a664995303ed085883b8"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="c391f8801220e72f76481478b31b8a91"/></dir></dir><file name="Grid.php" hash="4518e5afc4473eb08e973dedd2ec1edf"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="1f1df0e6c5a584d2b7301fb219b09b50"/></dir><file name="Edit.php" hash="b67d188206333589523601a4c1d219aa"/><file name="Grid.php" hash="ec763fd7ce236348758b45b29b20d796"/></dir><file name="Group.php" hash="b3755d0f4366a676f03a4887faf4d3d6"/><dir name="Online"><file name="Filter.php" hash="b2bd25737e4727ba8310c5dc2d1dbb12"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="97ee5727f0ad75a5b40d9a6caeecc833"/><file name="Type.php" hash="eaf4a19cfcaf4bb30c93c67c051223f6"/><file name="Url.php" hash="f3a4d5a5b4d5098c5e0b73ccaed8ac6c"/></dir></dir><file name="Grid.php" hash="3f19e5385ef5cb69f43e15aeef74173f"/></dir><file name="Online.php" hash="0787792efbe234fc4e2df613808900a2"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="01aaf14152ac06217a8400356649ba87"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="5aaf00eb2cca3dfeec1b3665f0316727"/></dir></dir></dir><file name="Customer.php" hash="32ab30684b2aabf842f967f1683d4b18"/><dir name="Dashboard"><file name="Abstract.php" hash="2c253435cce388df5a197eab1d77d928"/><file name="Bar.php" hash="1dff629a9b97f824147d6b30701e6ea8"/><file name="Diagrams.php" hash="95eff5c8e043737184875c12ea87cbc6"/><file name="Graph.php" hash="684420eadfcf98899d03f561c87fa49c"/><file name="Grid.php" hash="11c613cca8bba7999771235cab393375"/><file name="Grids.php" hash="bc6b072d69b344f994e2559ad5c6449d"/><dir name="Orders"><file name="Grid.php" hash="f5622dcc2a518544b998cf777e715891"/></dir><file name="Sales.php" hash="ab82fad334b83311b02092734a4cf319"/><dir name="Searches"><file name="Last.php" hash="767e7780e18ec0d32d96aae1d65ffaa0"/><dir name="Renderer"><file name="Searchquery.php" hash="1e03c74d5ee803ac3d460754141ecc91"/></dir><file name="Top.php" hash="2a4ffa076302cd0745779f236b6a672b"/></dir><dir name="Tab"><file name="Amounts.php" hash="30c83e67bb51b8e0e0f9798357054721"/><dir name="Customers"><file name="Most.php" hash="b19de2aa8748f57f6cb53995bb0f6732"/><file name="Newest.php" hash="9c40aec4ea8fe9d7ca6090bfe4fe0cc3"/></dir><file name="Orders.php" hash="e6e519e9e73c1ec0dbf9d79c92933525"/><dir name="Products"><file name="Ordered.php" hash="26bcebbcbbbe6488974450641ec75e8e"/><file name="Viewed.php" hash="b5c48691370918ebdf018605b4b246b8"/></dir></dir><file name="Totals.php" hash="5abd849ccb91a02321ba63571cf47ad8"/></dir><file name="Dashboard.php" hash="7a5c20c71cd953a0bec242a50d0cf2f1"/><file name="Denied.php" hash="f6a41c1e97c577d9d745e56d8e0f09ae"/><dir name="Html"><file name="Date.php" hash="b5ff869c0f0a06135ba9b921cd34de45"/><file name="Select.php" hash="3648ca25e82c38dc60c3e5f39a6eeb02"/></dir><dir name="Media"><file name="Editor.php" hash="0d11443384e50f6b806c913475fd5f0b"/><file name="Uploader.php" hash="d68caceacd62d1fa36957f86c8085b43"/></dir><file name="Messages.php" hash="1d8432d98e4aa22a9053573c5bf1bf83"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="27328cfe0233814da04e9f6c1fc131f5"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="0a5e922b4366c2e95ea0be575a3cdcac"/></dir></dir><file name="Grid.php" hash="5e166b2cd85b547f19c54e0280184795"/></dir><file name="Problem.php" hash="4fa51e468a3c4db6d29b1842420bf8ee"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="773a047ee251ae1350e46a7a282649fc"/></dir><file name="Edit.php" hash="f785659b997832c9d9d3b63e27b89063"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="fe64a891232018af2e78b98736cc340e"/></dir></dir><file name="Grid.php" hash="c49483bf58812f3d50d3eb69f41ced17"/><dir name="Preview"><file name="Form.php" hash="99e0a1e3c4a11f7b6a4f65f0d6d1d810"/></dir><file name="Preview.php" hash="151517333a3ac06aab3969f0876730d6"/></dir><file name="Queue.php" hash="6021e448117668639524f993cdcbd7cd"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="fd998f8e65693573e39c92ab3a17232b"/><file name="Website.php" hash="4d8cf5b420123757f92793ce5e2abbe3"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="e7ba04406e9f366aa4b39753a5d400f5"/></dir></dir><file name="Grid.php" hash="c6c108ed7a3067c34731258d62ea6597"/></dir><file name="Subscriber.php" hash="75707b916967fc4d57fd29b43d5caabd"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="64af63c76e53ca0e7cfd1cccfc4c8ef0"/></dir><file name="Edit.php" hash="bc548fd086881945f4d5ad924026b36d"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="c2afa936d9ecc3b0573a05da33dde71b"/><file name="Sender.php" hash="a71a7b6dba43f05e25629fd3cb035d35"/></dir></dir><file name="Grid.php" hash="6b8bb178b2d1b77447978c0e7a22c2a0"/><dir name="Preview"><file name="Form.php" hash="dcd628972558049eb8abb5ea652e4196"/></dir><file name="Preview.php" hash="0eafa1bb35ad125efc1205a5ce07a621"/></dir><file name="Template.php" hash="611bff6f6008ae66f39032fb6ec29304"/></dir><dir name="Notification"><file name="Baseurl.php" hash="b43405ce792ad7edee1968516f34a0d3"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="de1f7ab8fb7724c48afe2fcced9f873e"/><file name="Notice.php" hash="8726368b8e7ec53926dd7f2f5bdc6d60"/><file name="Severity.php" hash="c683c35f2fe5a344bb83988bf09c5c77"/></dir></dir><file name="Grid.php" hash="072527c3a7726c47b6f50da33295ffa2"/><file name="Inbox.php" hash="5a18096ad982a113b71ab6e6860bcc8f"/><file name="Security.php" hash="675ae7ca843ddf8f8199aab79647ab5e"/><file name="Survey.php" hash="68644fb08262b784ac5e151a9f2be516"/><file name="Toolbar.php" hash="d4e3c2fdfac722fd42a1083a10b3ea65"/><file name="Window.php" hash="8634439c6f5ae9f69f17937bfa70c667"/></dir><dir name="Page"><file name="Footer.php" hash="8c49520346ceb8e3e8939f6281e32650"/><file name="Head.php" hash="39b37c239ae5e5d08cd5b286bb738ee8"/><file name="Header.php" hash="5426ef4d316a29cec8af7cdbbe8ddc7e"/><file name="Menu.php" hash="0c04492c0505f2e1967c24fb2046df24"/><file name="Notices.php" hash="3309010d9c346de51249b2d5430ba016"/></dir><file name="Page.php" hash="905c99e69cc25a6684445f5243704bb1"/><dir name="Permissions"><file name="Buttons.php" hash="2d8f94c73753826b763ce42a3ffae60a"/><file name="Editroles.php" hash="47d1810ca6499e5d6787f1fbef5374fd"/><file name="Edituser.php" hash="4199b5a39cda4363f52c70d4d3270fa9"/><dir name="Grid"><file name="Role.php" hash="906b7ff7855609c254bf6c14f0930803"/><file name="User.php" hash="fc2cf10f1567c13aa75b6527247af03e"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="48bb038198ad6dfdc10e7c3a091b4575"/></dir></dir><file name="Role.php" hash="04dacab6ee85cc0d69a956f0f0ad14c3"/><file name="Roles.php" hash="154e1357e3eff259f07ccf7a1d00bb15"/><dir name="Tab"><file name="Roleinfo.php" hash="82a7491d798ec14094fc176420643688"/><file name="Rolesedit.php" hash="378e7c5d8f317cc385f2417df5211dae"/><file name="Rolesusers.php" hash="f126f26b2792559aa50efd0c69363ca4"/><file name="Useredit.php" hash="b13a8cc120b060e475ba8026e0a53f55"/><file name="Userroles.php" hash="9aa888a193e427c94983a783de16bc6b"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="68985dd665feeb66951846848f872010"/><dir name="Tab"><file name="Main.php" hash="b8bf177adb948bc922be1da5b359f7a4"/><file name="Roles.php" hash="756890d000e32cb735d226252b87c9f0"/></dir><file name="Tabs.php" hash="1f0dd9cce2617cad71d71f4c91a07a94"/></dir><file name="Edit.php" hash="20eec3e21ad2770af84460dba54fda9e"/><file name="Grid.php" hash="f4ffb5496a1934cc8eb7126a1df2f13d"/></dir><file name="User.php" hash="e360099816c9656f5130a43598a13a90"/><file name="Usernroles.php" hash="6a035788fec7189cf4dc97271bf570eb"/><file name="Users.php" hash="9e341375e22eda09a5cb27b8d6d3d2d4"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="4bfed771a28806968633419858d64e29"/></dir><file name="Edit.php" hash="9f7c8a112fb2772f08cf2662294fd151"/></dir><dir name="Edit"><file name="Form.php" hash="8cafa662c3d52986c17ed90b61a9235f"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="dfa737df8ef8b17dd927a11462dd8198"/><file name="Grid.php" hash="a52202e6fa2a8fed97f7907358137fa6"/><file name="List.php" hash="350511c992f6b450a534e5907048454c"/></dir><file name="Answers.php" hash="216729d3c08ca4e194251421188c2315"/><file name="Form.php" hash="c037172c9360ceb6687361eadde31572"/></dir><file name="Tabs.php" hash="7aa230e5dfb85b55a686050e3a4c213e"/></dir><file name="Edit.php" hash="906dec054c66a503b66141de415f6984"/><file name="Grid.php" hash="a5439be1bf5d522c5960500bc0333cdb"/><file name="Poll.php" hash="ab65e526141180fee21fb080998b2731"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="366019ebd0ccd8db4ebd232f9725431c"/><file name="Js.php" hash="357320086429b2eb7531a3769edd963f"/><dir name="Tab"><file name="Actions.php" hash="53b9041f1673192c30e17d64b762bc71"/><file name="Conditions.php" hash="ddcf3f3eabf2c9f9ec405ed5ae9562c0"/><file name="Main.php" hash="f81f31457a5f516f8a1cbb2f2c2fb8d3"/></dir><file name="Tabs.php" hash="6aa79be9bcd9942dd212ad4f15b272f8"/></dir><file name="Edit.php" hash="83909b12bc0ddfcd76feb829f84f883d"/><file name="Grid.php" hash="674e8840d78a809b9501b8cc43d53723"/></dir><file name="Catalog.php" hash="b5211f53a9366ff6d89a385041ab87dd"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="8cd82a0acd841e1f06bd074fdc5e47d1"/><dir name="Tab"><file name="Actions.php" hash="f7f9509da5f5ffd1f2dc32da5612fb4a"/><file name="Conditions.php" hash="8a41cabf3a83fcce4b1c0c898bd6f8b4"/><dir name="Coupons"><file name="Form.php" hash="d65c3539f0491161ad57e8b27f77ae4e"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="54de464af088aee9169d8f743799c226"/></dir></dir></dir><file name="Grid.php" hash="7a408cc67c9a1d4dd8f6ea30a3789ae8"/></dir><file name="Coupons.php" hash="a2bafe1bd2acb9ff32fe4224e5ae23a1"/><file name="Labels.php" hash="f7f35e061f1aa1b553cc0fd7c7d61885"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="923b4cfe40de914dd5d2acd3de037976"/></dir></dir><file name="Main.php" hash="b5f6ffd15cadd1400bd75076afa2505b"/></dir><file name="Tabs.php" hash="7468afb6e606417730d28c98cb88f60f"/></dir><file name="Edit.php" hash="b1b2dc6eb040ce318e66cf75675aa691"/><file name="Grid.php" hash="a67c49c7541f440d2a0f9d955c81870f"/></dir><file name="Quote.php" hash="ff3ac474f106910b8316d29cfabb449b"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="f364065bb1fd33d3084a9c7ec5d5b62f"/><file name="Sku.php" hash="47823d19d74e2668271306aaca96dcb4"/></dir><file name="Chooser.php" hash="5dd2db922f774f9ef5bc133f5b73914e"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="a20493e978ad9f63e34124d1a8fa702a"/><dir name="Tab"><file name="Form.php" hash="e50eae7616af3979f8bf132396c017df"/><file name="Options.php" hash="d389f9d997170f928d520fc9d8cd62a7"/></dir><file name="Tabs.php" hash="5c37d2716ef64468384f9f9c08ce2a02"/></dir><file name="Edit.php" hash="4cbe46ac483a382c5b0d4f432f409887"/><file name="Grid.php" hash="3f46c5d4a0bb03bf400253f2745110f5"/><file name="Rating.php" hash="e4ec3d1ee079c06c111df6597e98c641"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="b7e794a820eec5ec6c7b7f52e098a270"/><file name="YtdStart.php" hash="2948bc632bb766815c7c4799400ec337"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="2778a89e9131c675a5a5a8dec6e942f1"/></dir><file name="Accounts.php" hash="272f82a80ac14c55f3534a299aed8063"/><dir name="Orders"><file name="Grid.php" hash="7e4bb427c4ef90a02d5ad904ceb0533e"/></dir><file name="Orders.php" hash="be1a5209635fe03f0092058d99865185"/><dir name="Totals"><file name="Grid.php" hash="00fb47d6438e692ef6c1c16f86c45a50"/></dir><file name="Totals.php" hash="ef65187756a49473b0e9c405bab5d079"/></dir><dir name="Filter"><file name="Form.php" hash="594626d42c60d0bdeb57cb9250d0e184"/></dir><dir name="Grid"><file name="Abstract.php" hash="d29f43b9a2d94a91ec1602ea0537c39d"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="6ba66348b5a6eff6e19113b66a584e5c"/><file name="Currency.php" hash="08552aa4c1ecf1a4d19bafb7399641f3"/><file name="Customer.php" hash="5082dd297349a9b5c87e87299252ae12"/><file name="Product.php" hash="8ed018e20a7b6853f470466de66cbe75"/></dir></dir><file name="Shopcart.php" hash="744091fd45f9938c058c85948a658dd1"/></dir><file name="Grid.php" hash="cfa1814a2bcd4a73ff422f92d9e73b5d"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="dc75e5c67ad9663fc68f9d6c71437b40"/><dir name="Renderer"><file name="Purchases.php" hash="f502e5c393dc03b4e5f8e78da0ded198"/></dir></dir><file name="Downloads.php" hash="c5004e44d5bb1278d3593e2434c86f29"/><file name="Grid.php" hash="0330ef1725a7f157832292f9b9013619"/><dir name="Lowstock"><file name="Grid.php" hash="63af0020df0141b913e323d5da6fda23"/></dir><file name="Lowstock.php" hash="b3028fed057a18ea9669eb2f5518b61f"/><dir name="Ordered"><file name="Grid.php" hash="e718c64bca9c33bdf3e935960f1dd878"/></dir><file name="Ordered.php" hash="deb8ec1ed3b4f82251c587fd2cf48fb6"/><dir name="Sold"><file name="Grid.php" hash="f7a4f9db1384262d634bd707e6c0a1fd"/></dir><file name="Sold.php" hash="066e395437a81d880137e798cfa988d3"/><dir name="Viewed"><file name="Grid.php" hash="275243dd04bc2e0f1426a3d1c3bb8910"/></dir><file name="Viewed.php" hash="645707e58cb85d78afef0b289fdb1010"/></dir><file name="Product.php" hash="db4f6012236776dfd85bbc16b815d734"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="59993b9f8b4d974b2085dda7dc05a241"/></dir><file name="Statistics.php" hash="c180df971455743d6da1a52807f56d44"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="2eff521c1ba20577395439d5b9eca528"/></dir><file name="Customer.php" hash="182a7fb38f78946c76189e121823efec"/><dir name="Detail"><file name="Grid.php" hash="f65690f700533d5a390701868163a9fc"/></dir><file name="Detail.php" hash="5f3bfa26465f55039298877cc4907746"/><dir name="Product"><file name="Grid.php" hash="d7d1bc964960ed7a8dfc41ab39b2e080"/></dir><file name="Product.php" hash="a3cf1d40c335cfa0b01b890994049c75"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="694ccdaae812489024ad9848c5957330"/></dir><file name="Bestsellers.php" hash="251f6afdd40946f73de5351e16ad1f0c"/><dir name="Coupons"><file name="Grid.php" hash="3bb6c12e21a617afe968ac1e3401c643"/></dir><file name="Coupons.php" hash="dff90b83dea3b5f38c823257b91d9a23"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="d2872e3fae6515f34f39a7974d68c57d"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="c2c10598ee1ae9ca21078a69ed272820"/></dir><file name="Invoiced.php" hash="88146f6c673d3a292a574e7ed0f0fd7f"/><dir name="Refunded"><file name="Grid.php" hash="026555affde919e6e506952cdfeb4358"/></dir><file name="Refunded.php" hash="8a7a60a05354fc0868e237dee5a97192"/><dir name="Sales"><file name="Grid.php" hash="7872edef6f951e40d0fb6b9beb4cb4e3"/></dir><file name="Sales.php" hash="eb0e82644f06bf361e6679b2e5ec31b4"/><dir name="Shipping"><file name="Grid.php" hash="3339df1a2b3fd29abffa4f495b5509e1"/></dir><file name="Shipping.php" hash="b040e173164099301780ea613ad95539"/><dir name="Tax"><file name="Grid.php" hash="71b6cd01406688664bf1614b2b4d3756"/></dir><file name="Tax.php" hash="cf5e008aa6439b3ee77f16efc0314620"/></dir><dir name="Search"><file name="Grid.php" hash="3caff793f4824d1e460a8dee3a99fafd"/></dir><file name="Search.php" hash="dac5eb49b7365cf07e7c7d17f19ca73c"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="46ceffcb15bb877767d0a9382fcbead7"/></dir><file name="Abandoned.php" hash="bb6a4909e58a7aeb9626ef4bd8e3fc7a"/><dir name="Customer"><file name="Grid.php" hash="0d1ea6cace71efbc1102f54d9675d5b4"/></dir><file name="Customer.php" hash="0442ed711c913e4c3ab75e2ca1b0c897"/><dir name="Product"><file name="Grid.php" hash="67190fd4040bf1a5462a586d97613348"/></dir><file name="Product.php" hash="637a5f67b78c3b7adf8c9cebdc935db9"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="e0f1c4991ade19241b8f4e4529d22ff8"/></dir><file name="Detail.php" hash="cdb9f399b0e305659b65208d758670c3"/><file name="Grid.php" hash="43c9530abf6048b5e803324db8b3cc6c"/></dir><file name="Customer.php" hash="4069a6347441a215131160d743c4cd06"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="2482157fc28888a102456a6b4cafe26e"/></dir><file name="Detail.php" hash="c169efc938282bf5250c2a6ca887807c"/><file name="Grid.php" hash="33d5f2702882e20f412e0a2ac36b7b5c"/></dir><file name="Popular.php" hash="1f81903374a1c309f8820cb138a7ab07"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="08cd79f5028bfa8be4d6c07645df8994"/></dir><file name="Detail.php" hash="d11ad677a09f7855dd3e1f1d422b28c2"/><file name="Grid.php" hash="4f703ffd247e1f66d0b3b0a451e278a3"/></dir><file name="Product.php" hash="e6665ecce188369e581712866a24fdaf"/></dir><dir name="Wishlist"><file name="Grid.php" hash="ab0286f5e36f904640c19028000bb01a"/></dir><file name="Wishlist.php" hash="ec6d256a94bf3dcd9aaf39d203849994"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="56bf164b6ecdf98342e7642644d8c178"/></dir><file name="Add.php" hash="fa72fce55ff1318280dbb34cd5629954"/><dir name="Edit"><file name="Form.php" hash="a9d2054906ca07d7e2b16a6770a13044"/></dir><file name="Edit.php" hash="15d3319a1e929e7e6a2ecee56501e353"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="669aae31ae5cbf51808fcb586b36c6aa"/></dir><dir name="Renderer"><file name="Type.php" hash="b2ea92b6ef4f0614aefbb838695350da"/></dir></dir><file name="Grid.php" hash="7ac1239e3e2cc84796761a9da0c8e094"/><file name="Main.php" hash="83c6d8b6260bd583a0d6f68cb2d22ad0"/><dir name="Product"><file name="Grid.php" hash="8167b5e4a46a94fa3eab9f0ee4cd9ea3"/></dir><dir name="Rating"><file name="Detailed.php" hash="f63bf1f8d448cbb911a967f3270a36cc"/><file name="Summary.php" hash="013dc97e0185064835fdc2c4fe5a22b8"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="c4a1f39de8abe7ea83a01e1ee5a16586"/></dir><file name="Creditmemo.php" hash="c259723a459e96d6d4c1899468b1acbf"/><dir name="Invoice"><file name="Grid.php" hash="39e48fe20697e2c2079407f1dba74a81"/></dir><file name="Invoice.php" hash="b490ea546ca3ea4616afd7475d23405c"/><dir name="Items"><file name="Abstract.php" hash="6379c9df3f5a84e932c3debbf7fd1481"/><dir name="Column"><file name="Default.php" hash="202962fcc80455be4618e97b71b45cca"/><dir name="Name"><file name="Grouped.php" hash="ed980c1b3f0d856010319b65defd4347"/></dir><file name="Name.php" hash="0f4e6208ad7c0dc854aa2d2e9dc23b30"/><file name="Qty.php" hash="20395201ea4d3d9f2dbd6718c58b5816"/></dir><dir name="Renderer"><file name="Configurable.php" hash="06a612b88e1ae7120300a458244beeef"/><file name="Default.php" hash="666e2849d849e9d34b86b1a4b6ea3da1"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="2f582275680709414844bcf82b5909ad"/><dir name="Address"><file name="Form.php" hash="86c7a6e77cf865c6a77fe1784bdc7a54"/></dir><file name="Address.php" hash="7741b06df68a43f65767fbe2f0c127d4"/><dir name="Comments"><file name="View.php" hash="b278f98b5675af15179532a6830e7aa2"/></dir><dir name="Create"><file name="Abstract.php" hash="6bb963cf90afea780fa9ee110e607972"/><dir name="Billing"><file name="Address.php" hash="efc7801c43907ee53094db1a4fa33913"/><dir name="Method"><file name="Form.php" hash="4438b545d0b6346af662b7d5a0f9849b"/></dir><file name="Method.php" hash="446630a7239a71b1006e6f7bd5d963ce"/></dir><file name="Comment.php" hash="d0ad0cc2ecf47e33c9179e55934672cb"/><dir name="Coupons"><file name="Form.php" hash="bd756b7d5afe9c90382bf3501413ec79"/></dir><file name="Coupons.php" hash="eda36213353d81a0ddf86ab99d9b363a"/><dir name="Customer"><file name="Grid.php" hash="26f9fdbd09416b033d6214c0fa01f19c"/></dir><file name="Customer.php" hash="dd8fd753af0b7aff400d10fe6da541d5"/><file name="Data.php" hash="0b30cbafbffbf3ede0f1f289dceeb004"/><dir name="Form"><file name="Abstract.php" hash="536539808dbf32bce86ec52da256fbe4"/><file name="Account.php" hash="fd9a9f9ed757fe42a1899ecf48983fa9"/><file name="Address.php" hash="cbec5798b7560fe4564dac9c8f16efdf"/></dir><file name="Form.php" hash="8dea1bbf8ed55a18abe57dd2a1e59060"/><dir name="Giftmessage"><file name="Form.php" hash="6ea1ab3ab506e3fcceb7cdba7ad4473d"/></dir><file name="Giftmessage.php" hash="4fe7f5c8f0d999357f966ebb71ca313d"/><file name="Header.php" hash="712e9819d6bc9076c9f00e7dee9f574a"/><dir name="Items"><file name="Grid.php" hash="490e3a79bad8fd90419765fc7e8d498e"/></dir><file name="Items.php" hash="bf391229d7c134d6129b418f3196a27a"/><file name="Load.php" hash="4d0a0d5e514ee949471b50b7ed6b9b36"/><file name="Messages.php" hash="75af4ef9b5b59b9c6d1145007a68b101"/><dir name="Newsletter"><file name="Form.php" hash="4d59a328f752fdbc8fe64f416872c270"/></dir><file name="Newsletter.php" hash="d42e97f915a574932d0a4f7da398c9a6"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="983b469b4b4611b89e1286a2df5bc48f"/><file name="Price.php" hash="9cd65fed3c1c28b0afed46ac3dac62e6"/><file name="Product.php" hash="c00d623e6e2730e087863dbd2563a222"/><file name="Qty.php" hash="1b91861788836d0eed9418dfe5fce79b"/></dir></dir><file name="Grid.php" hash="fb30a20b5ef3706251acfccf3eefa675"/></dir><file name="Search.php" hash="f2237c924f9a7940d76d6434c2ec76e1"/><dir name="Shipping"><file name="Address.php" hash="42ec18c0e08eed1800dd78724618fc46"/><dir name="Method"><file name="Form.php" hash="32b9c6fb37b034c88421beac815c47c8"/></dir><file name="Method.php" hash="b1d335ee63015220607540c8b557b86e"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="bec232895a7f54f7ec4d4b8451c27c75"/><file name="Cart.php" hash="976cf428bbea0a94b1c0cb7e2df527d0"/><file name="Compared.php" hash="b852b8253b8ec5dd72b96233085846b4"/><file name="Pcompared.php" hash="575dd5832544c66a2b1a397413f09f5d"/><file name="Pviewed.php" hash="5afa4f5f9d4e623d2974113ae35406bf"/><file name="Reorder.php" hash="f85c533b24778908c9d74e5b722a9ca7"/><file name="Viewed.php" hash="5dfe61d49ef2dcff4a5aeea67b788ccc"/><file name="Wishlist.php" hash="ea760d2c5a4683c3538cb8900a0de59a"/></dir><file name="Sidebar.php" hash="c6ed9e9efca9c85fb90acdb781b9ecad"/><dir name="Store"><file name="Select.php" hash="ed7f3fb6fe3fe3cd08598ba93b895a5e"/></dir><file name="Store.php" hash="ba646b9ff50c07648b14440120df0a4f"/><dir name="Totals"><file name="Default.php" hash="854960cd219bf160ab5152e80cfa9c64"/><file name="Discount.php" hash="6977e0d75d53c1af098a3e3269d60296"/><file name="Grandtotal.php" hash="7192072a594106a19ca2604f16ffdd22"/><file name="Shipping.php" hash="db339b84f661a7ba47505d0d4169f4e7"/><file name="Subtotal.php" hash="a0bde6b3f8294c75fbb9343fc07af7f6"/><file name="Table.php" hash="66cfec8d9b55a39c898197d41eb30946"/><file name="Tax.php" hash="8fbc8e7772efece93b92df114abbe002"/></dir><file name="Totals.php" hash="a1ce91a04f27e566020e2532b5f21dc5"/></dir><file name="Create.php" hash="7abbbb385299f3e22f365b142b58e2fb"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="25e91807a27b96e155f88fa2583c2038"/><file name="Form.php" hash="e3e655bc6f8bac175cfcc639070712ed"/><file name="Items.php" hash="1be79c55c103fe213db5e04045e1789a"/></dir><file name="Create.php" hash="29d7ac9f5ff4baceaa3da443f724fb24"/><file name="Totals.php" hash="f7dc27bd242f6c690d4bbefae4135da8"/><dir name="View"><file name="Comments.php" hash="7d80685a6c0e188068d38a09f3b1539e"/><file name="Form.php" hash="9c59d77a17273b9ad2a3bdad14001dbc"/><file name="Items.php" hash="8916bed8fca0aba89fe42f775b511a40"/></dir><file name="View.php" hash="48a1e0fea436f5a705b058e35fdd26e5"/></dir><file name="Grid.php" hash="46555b5331d9f04ab295377165091153"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="f4bcd31bf6fbcbe099c4f8fe01c461f5"/><file name="Items.php" hash="b8e7d2503d8eff4639ef5c65301a4d29"/><file name="Tracking.php" hash="24ad47aba80b8ede77d22ca877d985e0"/></dir><file name="Create.php" hash="ac2871de83ce2da855c0e25cbf6f02c0"/><file name="Totals.php" hash="fa2a28ab9e1172137e0482b3e80fb99f"/><dir name="View"><file name="Comments.php" hash="a0205a4b2e708ad80df547689a7d11ef"/><file name="Form.php" hash="b867e96b889662ddbbb18d8aa5822fbb"/><file name="Items.php" hash="c180840d5664cd5403ab8910aaacbc78"/></dir><file name="View.php" hash="88def76232ddea38c9a40033631403c9"/></dir><file name="Payment.php" hash="c629d7dc9bc0561e8f0f8aac7cb05124"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="8bdde842dce80ff0518379662d9f93e4"/><file name="Items.php" hash="8ce75d6ed610e2e9d154768b64138997"/><file name="Tracking.php" hash="c71f235d29d5d509977eeba98bf70bd6"/></dir><file name="Create.php" hash="1bca8dba6ae467457a72a6cfc8567472"/><dir name="Packaging"><file name="Grid.php" hash="42a0b58fdee89f84914b450a17632ad5"/></dir><file name="Packaging.php" hash="0f95239c4734dcd82e65e9d6b4b757d3"/><dir name="Tracking"><file name="Info.php" hash="477bbe39990640fb193efe0f6af27027"/></dir><dir name="View"><file name="Comments.php" hash="66355a28033733137406b8999dc76c47"/><file name="Form.php" hash="9268b7860fe9bc0d280cb6bb9a84f969"/><file name="Items.php" hash="296cf106d24ba8d8034d070f31cf820e"/><file name="Tracking.php" hash="b1c6782097686dfbe810d59b536d39c2"/></dir><file name="View.php" hash="0e59dc97264a0006c34849fa748cbf8b"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="3b574a4bade03a20f00ca8dffda83f43"/></dir><file name="Assign.php" hash="9c146be917f31e2abe4f737cf37d0728"/><dir name="Edit"><file name="Form.php" hash="c71944d9838157b1973aff89061b6018"/></dir><file name="Edit.php" hash="1152f4683949e050cc66a66e3b985438"/><file name="Grid.php" hash="d3f85a0390aa1418ccee87887722642a"/><dir name="New"><file name="Form.php" hash="01b9bd8f6ca71dbce7fc536ef972eb5d"/></dir><file name="New.php" hash="10db76eb6201d390264e8c8a8b05f9b4"/></dir><file name="Status.php" hash="f337deb978e87d64203f8971edc4f014"/><file name="Totalbar.php" hash="3129a7fc712de6a3575187e9676c975c"/><dir name="Totals"><file name="Item.php" hash="3c2cdeb85a214e61fb2b2c2582fb47da"/><file name="Tax.php" hash="498837b3c3dc44a0f19d3d93724aeec4"/></dir><file name="Totals.php" hash="3d358e883dcdbb22bffdd67d8624d420"/><dir name="View"><file name="Form.php" hash="797d254bdef1e93dbb401c4bb2aa0c0c"/><file name="Giftmessage.php" hash="796fe5742a45875a56b887211e73131e"/><file name="History.php" hash="f72d14fa76b79f98dbb7890902fd907a"/><file name="Info.php" hash="b184bfb54420c66b14cbad35ace55488"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="4938c018c27f321c7f7e37396aa5b45a"/></dir></dir><file name="Items.php" hash="cf9bebcdf82f5730d8782b4a004905e0"/><file name="Messages.php" hash="544b99086603fa55d21a741f4a8f5240"/><dir name="Tab"><file name="Creditmemos.php" hash="b0f5aa766ed40842443afb72d214c938"/><file name="History.php" hash="d3a33fbc71c5621f0f0d5d8037229756"/><file name="Info.php" hash="c8b8cf62622ca340402e7a04d5bda990"/><file name="Invoices.php" hash="f758b8b2d6664a2790c81c426e22644d"/><file name="Shipments.php" hash="d574a46ecc2729c0181ddbc118475f17"/><file name="Transactions.php" hash="57773e37ee5c155fbcbaad5b2407dcec"/></dir><file name="Tabs.php" hash="5f67a7d3e773be25089aea32d00562ca"/></dir><file name="View.php" hash="c8edb312bae910880545ae391c4c9595"/></dir><file name="Order.php" hash="809c500a091fe4905fa014e8386e6308"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="3990ed6ccad89662d91b90075fe90baa"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="21cc978dfdf6c8094db951a752d4d21f"/></dir><file name="Shipment.php" hash="75180bf41a7bde2520f5cb12ea9f07a7"/><file name="Totals.php" hash="5a82628cad267628ecb034c4ec3c70c5"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="4996a2752cfe112fe1607531117fffa4"/></dir><dir name="Detail"><file name="Grid.php" hash="017a53abc12f697bea3591d25edcd134"/></dir><file name="Detail.php" hash="c78800ebb44f0afb963adb3b9ec592ac"/><file name="Grid.php" hash="b4b03fb489952093e0ddd91e01f99c71"/></dir><file name="Transactions.php" hash="7b5c11f52c24df60dbfe6c51bdd1740f"/></dir><file name="Sales.php" hash="edf8309ebeab6fe33dd95600cd03034e"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="662ac71223b80be508e2c0bd50a97f97"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="86bb6acdbb125e28c6cbd67e5119159c"/></dir><file name="Edit.php" hash="6a30b2098d853845d158a087f4bba45a"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="34371c9777b58e4f00227c78e0fd9302"/><file name="Link.php" hash="07c72102b172f7d55ae9adafa8d09732"/><file name="Time.php" hash="7764d3a08592fd675ff23a2a3663a8e1"/></dir></dir><file name="Grid.php" hash="207039bfb0d3fb22acdd6bd160adb76d"/></dir><file name="Sitemap.php" hash="4a7b7a1ca8fd19c7592f53ad8c1e44ca"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="88c62f91c3602b855deb84ed5e60a7ce"/></dir><file name="Fieldset.php" hash="117aaff821f31808393ec06661eccccd"/></dir></dir></dir><file name="Switcher.php" hash="ec8470102402dfa196a50c8fb5bcc764"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="fc05abc4def5812044d7c9b873c61d30"/></dir><file name="Edit.php" hash="c04c11673816a8b79110afa6d77f7f1a"/></dir><dir name="Cache"><file name="Edit.php" hash="0a21bccbed3271e167bc96d22d0947cf"/><file name="Form.php" hash="ed570d7670fce0cfaa885ebc1dd2ce50"/></dir><dir name="Config"><file name="Dwstree.php" hash="71db90b52743d8a0da11b8a4d24428a8"/><file name="Edit.php" hash="3b6742af7962cc5529224faee5081a1d"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="bb3db1b00fbf6eeb835501d6e83e6f6c"/></dir><file name="Datetime.php" hash="ae7c542c79e6cbae90119ea45cc99099"/><file name="Export.php" hash="feddb5223bfc29ac4ee843ebb47270e6"/><file name="File.php" hash="175d61fe48f5aa979b751f256409a33d"/><file name="Heading.php" hash="3f8d37900b6f4f722863bd435d8912a9"/><file name="Image.php" hash="bcd01f2329bb1389fa88cea69b9234bd"/><file name="Import.php" hash="487c7eab2917ad145d453f9877bf6d75"/><file name="Notification.php" hash="cd5e766dbbf522f9a5df1623ea107e5f"/><file name="Regexceptions.php" hash="1afb23fe757a06e30af5da84415e75e0"/><dir name="Select"><file name="Allowspecific.php" hash="20c37fe6a0da0066bf3d7e6c63758f44"/><file name="Flatcatalog.php" hash="482e52c560be75ae8a37c6a165372298"/><file name="Flatproduct.php" hash="03487cec9d96579bf74bb10c893236d5"/></dir></dir><file name="Field.php" hash="c636e1afac9cccecec26162b3b0333c7"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="70f3a5518c22c376933b14da3c248ae3"/></dir><dir name="Order"><file name="Statuses.php" hash="2d2ca3d0d90766d2ec167e1ea05924e7"/></dir></dir><file name="Fieldset.php" hash="2d0b1e2583013c29c1958dbf045ab0ae"/></dir><file name="Form.php" hash="7de447667e1825ccd99c738eeed0dc79"/><file name="Switcher.php" hash="d1c13ed50c2ec89504cd270a0d9610e5"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="83bcdcddba34213ba77a08fdf7e55d8d"/></dir></dir></dir><file name="Tabs.php" hash="60abd7652c4e417012c0e70b1cee8805"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="9bed4e1709b7cb11fd81db2e50e0fcd8"/><dir name="Tab"><file name="Upload.php" hash="a705ed7b82f571af858e19736f34d81d"/><file name="View.php" hash="848d387575c4483ef11d76a8e6bd8014"/><file name="Wizard.php" hash="36c985c4c43ff82668b9cab269ddb640"/></dir><file name="Tabs.php" hash="ab5cefa4001226f69be3aefdea77f639"/></dir><file name="Edit.php" hash="85b13a3d4080368597c74f0b1d9db436"/><file name="Grid.php" hash="01b8b912ff4941b4e86cf8d1aa805ce7"/></dir><file name="Gui.php" hash="830a2e87bd6e3f2fffab050002ba9508"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="351974be84c121a86145196c22a1dd4a"/></dir><file name="Form.php" hash="dfbc46ae10487b7c4117d449b8e6a16b"/><dir name="Renderer"><file name="Action.php" hash="b92f952011652d1e80a691e23f68cd2f"/></dir><dir name="Tab"><file name="Edit.php" hash="015a750d00160cecde022a2512205e16"/><file name="History.php" hash="26fa1dd0b5078510b5493fdacc10d00e"/><file name="Run.php" hash="ad4cd5ad7ed57b650968e601b01adfdf"/></dir><file name="Tabs.php" hash="3973b6ae9d5017ff6ce5dee81b8d47fd"/></dir><file name="Edit.php" hash="625f3e055895ec1f6617b9404795c500"/><file name="Grid.php" hash="47e8a56a7498993de8aec3f8e9a92d07"/><file name="Run.php" hash="e809d2af2b53c84ba1334b39978c4f10"/></dir><file name="Profile.php" hash="6988f2444e05f2959b4a493a7a71ab78"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="0b218d26cc8c265bb1182c45faa582db"/><dir name="Tab"><file name="Main.php" hash="6227018fdf1c0de00c0bb5a96edaa142"/><file name="Rates.php" hash="672212313e91bdd0c98a1960152e6d87"/></dir><file name="Tabs.php" hash="5ef967a7eae80b319755d17d1a5ed624"/></dir><dir name="Rate"><file name="Matrix.php" hash="0df3740f8b98b48affd96bba1866864b"/><file name="Services.php" hash="ff581dd71235e96d10127ce9b541b187"/></dir></dir><file name="Currency.php" hash="22db92e147ce56217b87360102a806eb"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="70145a86d112b2a809b50537ca2a9bfa"/></dir><file name="Tabs.php" hash="ca75118365f912aa522ac2aa9ddada57"/></dir><file name="Edit.php" hash="b8fbfb0bd2afcbcf049361db3ce806aa"/><file name="Grid.php" hash="7a03f6aeae0bd76a01177724e355f295"/></dir><file name="Design.php" hash="977bb4de279f50e31017d2021bc689b2"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="19b18d04305b77aed32cb58bf2400fd8"/></dir><file name="Edit.php" hash="bc8f27bc2178b208e7522010ec69dc81"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="62a1496e48d2e7a0e8f55f77a87b060d"/></dir><dir name="Renderer"><file name="Action.php" hash="d35b2956751409b6a8c6313310360ba3"/><file name="Sender.php" hash="bbb6ffb031bccf24c57895b245869962"/><file name="Type.php" hash="4301753a59350ffb244e1698b4d14200"/></dir></dir><file name="Grid.php" hash="98b174917909bbc99175564b3d21ef9e"/><file name="Preview.php" hash="839c2a3b2b2c380a596b498f28bce75e"/></dir><file name="Template.php" hash="242f85e7eaaa998d657b8ca5de1b7a0b"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="7c7f76148d9bb3fb97ead7a901a742ae"/><file name="Group.php" hash="0615f4a4ff2733bb41f16de41260aa2d"/><file name="Website.php" hash="2930165d09ed1fbd65c88dce4fc29a34"/></dir><file name="Delete.php" hash="ec18681aec75bbbb014edd396aa0c425"/><dir name="Edit"><file name="Form.php" hash="5762c0d055ac8cbb0805ee836529c137"/></dir><file name="Edit.php" hash="b17cdb08c158b8950ce634140150d2ec"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="ebf29a396e6c18c8c838c01178f3a830"/><file name="Store.php" hash="5ace4fa711ea50deb526f9effa93fa16"/><file name="Website.php" hash="4e4ecfd22d281bcb15c65d4e1749b670"/></dir></dir><file name="Grid.php" hash="f542b6fa1dd2b43ea94b9e2e51c3edee"/><file name="Store.php" hash="133f8f13b25771734dd1382660153f67"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="a8f9565984eaf2693ba0d6a04b37351f"/></dir><file name="Edit.php" hash="2d8b98565e0e0b0c849935bd3ae556a4"/><file name="Grid.php" hash="7183f511e5a2bbd92fc18a03ed93f31e"/></dir><file name="Variable.php" hash="38435c7e65a746f3b9293814b16da15d"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="7c8dea62d4051f8e03f9f198969091ae"/></dir><dir name="Customer"><file name="Grid.php" hash="331dd2fdb9a484f20bd966b301d1947f"/></dir><file name="Customer.php" hash="e89ae9f629d2fe6f4e542aa1078e6162"/><dir name="Edit"><file name="Accordion.php" hash="527555853d01fa09f50418c172988703"/><file name="Assigned.php" hash="a544010b175822f985096a5d2f957b70"/><file name="Form.php" hash="79c0fa81afc37d5404e0a4fa1ec1ea59"/></dir><file name="Edit.php" hash="9ee9ad5d3e0dcb1ff339ad00d7b73f0b"/><dir name="Grid"><file name="All.php" hash="32eb07e21a0fb62ed4119fa1fcd48f5b"/><file name="Customers.php" hash="57db1c5339cebdd6b538baafc560a8ae"/><file name="Pending.php" hash="33163c2bd7f5832518b6f505364d97a2"/><file name="Products.php" hash="03723d3284357432172e2b2dfcb411f6"/></dir><file name="Pending.php" hash="22d625309bbaeb4a30cb27100880e2b9"/><dir name="Product"><file name="Grid.php" hash="97dfcd5df83cc212411871a21340c37c"/></dir><file name="Product.php" hash="e4d1e3d51e7da99bf704227013dddfc6"/><dir name="Store"><file name="Switcher.php" hash="5a71155e05cba303869891543c27db7b"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="52cacefc9b23b9f47d4845ea3115291e"/></dir><file name="Edit.php" hash="86599e182ab4e361eb78dbe58416ae40"/><file name="Grid.php" hash="6959b8ca772dfba3d83109c6a30b656b"/></dir><file name="Tag.php" hash="a872226278779df516dac2ae8edc896e"/></dir><file name="Tag.php" hash="8468bdb90ba6a58dac7d3928845c6411"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="b00c1d8c4988acc37af441cde81180ea"/></dir><file name="Edit.php" hash="920f4c91a2f270039e1d4de19e400151"/><file name="Grid.php" hash="65edf90da61d2821fb3f36936edefcec"/></dir><file name="Class.php" hash="36827ff472153548bf74bde1fc7f906c"/><dir name="Rate"><file name="Form.php" hash="b432af44688112329f50f6c234e1fe22"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="1c0119b6e19a54ed863ec8a302ca6345"/><file name="Data.php" hash="f4ceed0eb0482bfd24dfd8ec8caa4fd6"/></dir></dir><file name="Grid.php" hash="19463d9273d58982d49617b599aa0548"/><file name="ImportExport.php" hash="e3fe435dd21e72ff338bc749d4729142"/><dir name="Title"><file name="Fieldset.php" hash="ff48b81b25f77ef699b1ef2fe99c258c"/></dir><file name="Title.php" hash="eeee86ed3a1c86eff652795eb6d0fa6e"/><dir name="Toolbar"><file name="Add.php" hash="591c52520703ca76a27218c457ac8c1f"/><file name="Save.php" hash="630a0d3d307681a31955a9e29190579c"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="9da981c87c9790bf3296add4e8857cf9"/></dir><file name="Edit.php" hash="9492e549f77795bb464386108dc01918"/><file name="Grid.php" hash="1af7ec8d3c9d6dafb08b42f1cb08f18d"/></dir><file name="Rule.php" hash="76767f20fab57c0cf5a0c6ef545af464"/></dir><file name="Template.php" hash="769b1180c6d2a13ef3c389be67d99c33"/><dir name="Text"><file name="List.php" hash="46ae4729ef1d0eb11897e241945927e1"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="462c6c2d07515df7ad68c0b8eb9a5ac4"/></dir><dir name="Edit"><file name="Form.php" hash="7f0455917a3fa36da50ea3c42c8590c9"/></dir><file name="Edit.php" hash="12512b60886a0c0ac197589f284a314d"/><file name="Grid.php" hash="4438429c1fe8deb5428a0346fd21b27d"/><file name="Link.php" hash="846128ed934143f48e03bd34bdcff86e"/><dir name="Product"><file name="Grid.php" hash="2bc055c61962cb65f9f233be4cd35873"/></dir><file name="Selector.php" hash="7b0f716faecb9e756886ed1092b4e463"/></dir><file name="Urlrewrite.php" hash="ef7fb4e75ffa6e8da1fc3126638390e0"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="ffcea17e2cb72a42416e298b0d052ebb"/></dir><file name="Accordion.php" hash="74230faf0ce077bb4aa9e9c5d2fc748d"/><file name="Breadcrumbs.php" hash="de4ced495442b9fbb59d41ff4f34a759"/><file name="Button.php" hash="aed450a5b167d3fb0168ffd32aa8546b"/><file name="Container.php" hash="a061486d4b4e9f5ea300678e6f7b8c50"/><dir name="Form"><file name="Container.php" hash="f8ec6f2ec0ad5a5a928c3b623943255a"/><dir name="Element"><file name="Dependence.php" hash="9ca180f8a2076620867cdfa6e5e9a9e7"/><file name="Gallery.php" hash="988530a1a877d3abf7a83d91d1f1c5ef"/></dir><file name="Element.php" hash="2535e979989c105437a55499ed52a9a7"/><dir name="Renderer"><file name="Element.php" hash="7f63ac885a516eca0dca7fd1cc79704d"/><dir name="Fieldset"><file name="Element.php" hash="929019b5574fce79cc836e919be9148a"/></dir><file name="Fieldset.php" hash="e50e6638abcc369e49158c489e8b5b28"/></dir></dir><file name="Form.php" hash="6d4e2bca75f0706d80a237d88c972154"/><dir name="Grid"><file name="Block.php" hash="b66c11fe8f4b19cc57f25f3fa23b9076"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="dd49d09cfcaab77c9d380c1d7a1ef4b6"/><file name="Checkbox.php" hash="a85c69b2abd43fbffb1e1dfd09f6cc8a"/><file name="Country.php" hash="02c04353dde7e3203305224274197954"/><file name="Date.php" hash="10a751a02d5a7d678708a651792150eb"/><file name="Datetime.php" hash="68a3847ebc47e57c5425b5a4d6657892"/><file name="Interface.php" hash="dcbdfc72eb0f75c8eb6b6f396116a7f3"/><file name="Massaction.php" hash="659994ae6abfee01168828757fbde085"/><file name="Price.php" hash="f989995be3439b9e3420f6d38e8af004"/><file name="Radio.php" hash="4ec1066639e7d5c74d95e65fdf79cf4d"/><file name="Range.php" hash="87e68bcd02eda31b2af973c8df05710b"/><file name="Select.php" hash="193a4c5521343268311cbf6b2276fffc"/><file name="Store.php" hash="3d82220f9b0783d45248f91ff0b23189"/><file name="Text.php" hash="ce3c227b7e0ff2e33858f0ed23b9af0e"/><file name="Theme.php" hash="a03590dab4bfbbc4c4826e8ecf0ba311"/></dir><dir name="Renderer"><file name="Abstract.php" hash="5023b01a262e2e3cfe2b432f26f76471"/><file name="Action.php" hash="e9753829a758fb6bff0ec0f4e5fffebe"/><file name="Checkbox.php" hash="71454a260b6181d26b69b83904f0eba5"/><file name="Concat.php" hash="dc34c16ddd23c4d53bacd6f658e5ef6a"/><file name="Country.php" hash="6cdfb116ce6955785e9ef07491c578d8"/><file name="Currency.php" hash="7266fb8583836db233838da9c59376b6"/><file name="Date.php" hash="646c7a389dc11e3f2cd85a41aaa55ecf"/><file name="Datetime.php" hash="b2b7c5f394bed6968fb091f6222ecccd"/><file name="Input.php" hash="62512b563ad5f313e7b8e9bd11f882f5"/><file name="Interface.php" hash="20459fc72a684aa23099ef4a1c2ffb6c"/><file name="Ip.php" hash="a87db675e939344676304780738b4b88"/><file name="Longtext.php" hash="8ea589d3a1c49d7cae1d1f938bd1e876"/><file name="Massaction.php" hash="b5be3c32f3834498a57211fca99aa573"/><file name="Number.php" hash="004014f04db0066be596f18bc677f00e"/><file name="Options.php" hash="dd4340697c5d1ae5e27de9cde79dc305"/><file name="Price.php" hash="f20ce3741d733433e00098ab9d5de6ab"/><file name="Radio.php" hash="9ebafbcc643eaba1a741871349c87bed"/><file name="Select.php" hash="fff0f4276ee8dfaa0f1f477f89b6a870"/><file name="Store.php" hash="8afeb271a3c9910ff81eb94d6c403f6b"/><file name="Text.php" hash="1b9e0375daa5b6b10bacb05c2be68ec5"/><file name="Theme.php" hash="d642114e093c7a780b8eb9d5ba8d1aac"/><file name="Wrapline.php" hash="008bb042fae88f87a132b9221401e42e"/></dir></dir><file name="Column.php" hash="f8d8f5c6cf044fc1f1354e8e6e7aece0"/><file name="Container.php" hash="493c64be0554e5a72eaed059bebad98b"/><dir name="Massaction"><file name="Abstract.php" hash="f2c5b20790a313408eb063135d66ed64"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="d0c12003c681e0c4e8575de41c7a1f67"/><file name="Interface.php" hash="f93f5f1b21540c8d86f209cc47854265"/></dir></dir><file name="Item.php" hash="f67082cefc7354af45036064b2eed475"/></dir><file name="Massaction.php" hash="43acb4376980dd09746cf2d7e3acc5ff"/><file name="Serializer.php" hash="554499a973fb572fb1e16a80bad6383b"/></dir><file name="Grid.php" hash="73de434df1a3598e6bc4f0ceb7aa14d3"/><dir name="Tab"><file name="Interface.php" hash="3cdbb7f8f2f3fbdefa553b578aa802f7"/></dir><file name="Tabs.php" hash="d40419e2eef725333835864826984791"/><file name="Tree.php" hash="03d655c8233d4263fc5c8a6b6ea90896"/><dir name="View"><file name="Container.php" hash="f35c7e09526af990ac8aa5f3ebe7ccdc"/></dir></dir><file name="Widget.php" hash="6114e9b299701d1e7cff782c54ce60b1"/></dir><dir name="Controller"><file name="Action.php" hash="3a9f7511ab3293d150446abb784293c0"/><dir name="Report"><file name="Abstract.php" hash="1487bd48071aa04462cef8eb3846ec92"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="29af0fa650ce1d5f0b67b0b135f166c4"/><file name="Invoice.php" hash="11e0efb6b9b68e425dbaac298cdd7fc0"/><file name="Shipment.php" hash="828706cbba092a90a960034882acfcdd"/></dir></dir><file name="Exception.php" hash="8711d958c3bacebc981866a3bd419792"/><dir name="Helper"><file name="Addresses.php" hash="5d6411672017f16899a26efb2b9a5df6"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="23fb7ab9797af76c1b072f6f9ff7a330"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="019c217e1af30357a08f48ecd6cc87d7"/></dir></dir></dir></dir><file name="Catalog.php" hash="ed5000e6a38a726a268cdb577ab77b30"/><dir name="Dashboard"><file name="Abstract.php" hash="76863694a0755be7d062bccdc4d5428e"/><file name="Data.php" hash="8fc3f29c76730f635f8f5cf1cf586b4d"/><file name="Order.php" hash="918be1308e18232c53f959c22acc39bd"/></dir><file name="Data.php" hash="6dc51fb9e0643194a07305cbc98ca3e3"/><file name="Js.php" hash="d3f8f9c50e8413fbb72da4a2849418e7"/><dir name="Media"><file name="Js.php" hash="d5e68167a9edf05f589d057c2f959e85"/></dir><file name="Rss.php" hash="5defe8a706d1222699adea617eaebee3"/><file name="Sales.php" hash="94b96ea48498daee545e11809accd173"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="4ca8d3f0f47920b9c0096c822b0c8a46"/></dir><file name="Config.php" hash="6d6f151376add496a3c730d9ddd57d1c"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="de91fb15a14e5531ad47f2bffe15f9d9"/></dir></dir><dir name="Email"><file name="Template.php" hash="b7d97164f88d467f9be4cca1ce2ba6b8"/></dir><file name="Extension.php" hash="528095ab59f532e9a19fb67ea04b873a"/><dir name="Giftmessage"><file name="Save.php" hash="96361b1ac08083d30230e5d8f57bbad2"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="cf10cfa07b7fb5fe5ea03978c2c6466f"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="130e9689d27af3c9ae0c9f6f8b9a7ad5"/></dir></dir><file name="Observer.php" hash="6a6b2129dff08f8b85c292c174a680e0"/><dir name="Report"><file name="Item.php" hash="4587ea582fcf8c200213ae64e789ec82"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="69101280a3c40a92902905d25ea8abcf"/><file name="Random.php" hash="7d357780232a37d8f4ab6b69ddfa12fd"/></dir><file name="Order.php" hash="662457ceb6a98c870443b051b4fc55d4"/></dir><dir name="Search"><file name="Catalog.php" hash="0866d393b3970350afa2306e9f55e44f"/><file name="Customer.php" hash="a60025e035288a87284ed789de04fe20"/><file name="Order.php" hash="e6fd7d47b0e81c14afec35f7011bfd47"/></dir><dir name="Session"><file name="Quote.php" hash="eef6af9dffd5fb3a3e050cd50fd7cf69"/></dir><file name="Session.php" hash="2f2f49c24687c5a42e597e283fe09ce7"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="089ccc7e875c9f36cde3ae5f84e145c2"/><file name="Custompath.php" hash="33f26684dea4d3b8fb9736023bcf76af"/><file name="Observer.php" hash="37815760558f61fef9d641ebb8aba581"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="3b30bf0c1871ec5603952800ed4e00b8"/></dir></dir><file name="Usecustom.php" hash="7f72ccd57a4f7991636aaa01a8ed4368"/><file name="Usecustompath.php" hash="51c684635acd20b4c4f9664a780007c0"/><file name="Usesecretkey.php" hash="0b577d047099b106d4409acec1b5f674"/></dir><file name="Baseurl.php" hash="46883bc88568a5f9c7b67c7bba93da04"/><file name="Cache.php" hash="80c6d45dbd7cce845458d334810d7dd8"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="c31e060c2eaee513a20f34111f4f2b98"/></dir><dir name="Search"><file name="Type.php" hash="1d34e93cf636142c4483235fab9a693c"/></dir></dir><file name="Category.php" hash="972a90c42ed1c97c6edc389bfbbf0e7a"/><file name="Cookie.php" hash="2d6d37619895ef27813a606f8253646c"/><dir name="Currency"><file name="Abstract.php" hash="96b35b725a756c08cc0443244d56a84b"/><file name="Allow.php" hash="3ec7d7b1c21c56ec1f31595ee4e3067a"/><file name="Base.php" hash="7e8aa2d76df0def3da09560654d79827"/><file name="Cron.php" hash="c29980353ebd21df66968e95cce7f2ff"/><file name="Default.php" hash="76c773f92fbb21564575c6d4c8684c66"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="40c936f57ae7baee8cb5b3cf4e9be704"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="69aded43263bb55473df87b081260071"/></dir></dir><dir name="Show"><file name="Address.php" hash="de3ee446eaa918dd688a3fbd86a01a19"/><file name="Customer.php" hash="6e3f86c0131fc1400f82425a488553a3"/></dir></dir><file name="Datashare.php" hash="fd455810c32efb1250ee1aa238ce9c62"/><dir name="Design"><file name="Exception.php" hash="0d219b40762ae3ed931213f0749b2e9c"/><file name="Package.php" hash="88cf23890c4814367f944504482b55a7"/></dir><dir name="Email"><file name="Address.php" hash="025de8aa7bb9329cc1a1f2330bbc5e6e"/><file name="Logo.php" hash="20e9b951f5804322bf70e9ee90fe570c"/><file name="Sender.php" hash="b52bbf40f1589b60c092a972296680b7"/></dir><file name="Encrypted.php" hash="ba6ab9cd3c527d8581db2634d7b87483"/><file name="File.php" hash="192df84088f62e728c6af21e1ed1205c"/><file name="Filename.php" hash="118d549de1ff38a7a11c6375b6214b63"/><dir name="Image"><file name="Favicon.php" hash="4955e8a4566945f12397cb3d99ebe239"/><file name="Pdf.php" hash="0799c47bbdad8d3798689acccef641ec"/></dir><file name="Image.php" hash="16ef8b48c83883f9d4a5e0bff894298e"/><dir name="Layer"><file name="Children.php" hash="0a191a45eb3d8845bacb5694b4e52b49"/></dir><dir name="Locale"><file name="Timezone.php" hash="d3d22f890f988b770ad5727b098b1a70"/></dir><file name="Locale.php" hash="6e28e5969976e737a3838a5768c3f7ae"/><dir name="Log"><file name="Cron.php" hash="a5868e196d1e46d6abd146c22782c906"/></dir><dir name="Price"><file name="Scope.php" hash="3167e244c91d964b5e38ecb0caea25c7"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="8c23f2af4b5132cc00a887fce5be32c4"/></dir></dir><file name="Secure.php" hash="213cba7f8e5912966efb70923acdb6b1"/><dir name="Seo"><file name="Product.php" hash="981f60437425e4ccc00e86d618d674ba"/></dir><dir name="Serialized"><file name="Array.php" hash="3d22345d60f724063a6c234296da0ee5"/></dir><file name="Serialized.php" hash="59dabdf0d417236041f32f433ba9972a"/><dir name="Shipping"><file name="Tablerate.php" hash="e1adb525f2b169e0498ee7168ce42e8b"/></dir><dir name="Sitemap"><file name="Cron.php" hash="e1d24bc3ec43c98097749e65a821bdfd"/></dir><file name="Sitemap.php" hash="9ae0784cbc77f726b81fe946e73d1f37"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="b70dc6bc636176802e92c57ac34cac52"/></dir></dir><file name="Store.php" hash="825764f0922ab3b722ede0e903fa675e"/><file name="Translate.php" hash="39d97929caa3817a47e745e3c8194dbf"/></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="654b640fe2489da2797a487ddec99e03"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="575965671564d8a2f1c81650f4e6a30c"/></dir><file name="Allregion.php" hash="267b5814f6aebf3fae63163875213e93"/><dir name="Catalog"><file name="GridPerPage.php" hash="f0957fddf9dab15efb524bf49b841454"/><file name="ListMode.php" hash="4b61d8bd4a9b1256d280299ed759b0e5"/><file name="ListPerPage.php" hash="522408a02f9ccb772f11ccf19396b373"/><file name="ListSort.php" hash="de86cef5858a88f9462b845bf243543e"/><dir name="Search"><file name="Type.php" hash="3a0186df41871baf7b49329dfefbd692"/></dir><file name="TimeFormat.php" hash="8364c02d95ead25aaf3182621c6bbaf1"/></dir><file name="Category.php" hash="dc4491c363b81d92d8caed11cdb15781"/><file name="Checktype.php" hash="200936fa7121bb16a0669f4488f25541"/><dir name="Cms"><file name="Page.php" hash="10f3c573d3ecb9222687093c31058b4e"/><dir name="Wysiwyg"><file name="Enabled.php" hash="2077d03c4058539fd8351fd9c0401a40"/></dir></dir><dir name="Country"><file name="Full.php" hash="a919d975f0048e5eb4a70e24daa09b7a"/></dir><file name="Country.php" hash="64b1d5c0d561740bbe12b117f36514cb"/><dir name="Cron"><file name="Frequency.php" hash="4085ad8d86c8c71313c6793e68916475"/></dir><dir name="Currency"><file name="Service.php" hash="f418d52848ff92162c3bc1a27ec3e7d9"/></dir><file name="Currency.php" hash="d35b0bdbbe9181d24bbd8de6f78629a2"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="beb8f8c0dfca02a1db523ff9fa1d93d4"/></dir><dir name="Group"><file name="Multiselect.php" hash="540dcb8a84c07dbd2849d614a2a2d5bc"/></dir><file name="Group.php" hash="bc6f24b6d810def507e10fb3aaa70301"/></dir><dir name="Date"><file name="Short.php" hash="a6a324603a276ce919137ccd383c15c7"/></dir><dir name="Design"><file name="Package.php" hash="3b0f0eaa37d1503695cde1a28e8f182e"/><file name="Robots.php" hash="9a58c1a52ec10f32dc5ca71637a4eda7"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="d619a56dd93f7dac6f766f80b7603cfa"/></dir><dir name="Email"><file name="Identity.php" hash="afcba708953b5c8ced9c9e91a159c0c1"/><file name="Method.php" hash="5a668d484a5c748bfca7901fc16e14e9"/><file name="Smtpauth.php" hash="e01fb631b6ee22822b5e5a6545d87238"/><file name="Template.php" hash="68d0e3e76f910052fe1cf0444557a70b"/></dir><file name="Enabledisable.php" hash="ffee349864c0f76da5d1c04f67e1a091"/><file name="Frequency.php" hash="a9e5129620d70d2610dbf215af9a2eed"/><file name="Language.php" hash="b6e26de17d96986c5f8e60974061a90e"/><dir name="Locale"><file name="Country.php" hash="ef71cbee5bfd8a01fffb4b94a93d0663"/><dir name="Currency"><file name="All.php" hash="d1576d3a17e4bdd613110cdf05ce9cef"/></dir><file name="Currency.php" hash="018e7f238e82c4ead729ea37eabfb50f"/><file name="Timezone.php" hash="555b8345852ec57503f73e5ebca51b52"/><file name="Weekdays.php" hash="4dc96de3d004d0a13f85b2db74a604a6"/></dir><file name="Locale.php" hash="4f734232eec2ec6eadfb65483d2de9be"/><file name="Nooptreq.php" hash="62d2f183714bf3a76677d2ce89d0abc0"/><dir name="Notification"><file name="Frequency.php" hash="a3c54e206d9bcd5c2381b3912754639e"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="c2e9d7186e6ffd60de3f5d7842dcd9da"/><file name="Newprocessing.php" hash="0385ff3e72476ebbfef01e701f73913c"/><file name="Processing.php" hash="c6aa0b2f6b6b67deb97710f48757eff7"/></dir><file name="Status.php" hash="60f6a01dcbc0176b7e3c89a72045955c"/></dir><dir name="Payment"><file name="Allmethods.php" hash="3676b52a87669b1fe719d96ed26906cb"/><file name="Allowedmethods.php" hash="5c54998380303de84c4959025a0bf4df"/><file name="Allspecificcountries.php" hash="1c96d41b2e5d1975971de55a9c11b8ae"/><file name="Cctype.php" hash="db686b1c41418c3c444abbcf33016e3d"/></dir><dir name="Price"><file name="Scope.php" hash="52e34d323303f9893fbceaf2ee82bcde"/><file name="Step.php" hash="6e3144e7869bd4b86e9e2d9fedcbcf8c"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="621c6531014911943d8e26eb1a2d74d2"/><file name="Type.php" hash="b61680badb78655fb3f6b48f33332f73"/></dir><file name="Thumbnail.php" hash="cdecd9cb8539bb9893bdc7f4609f2326"/></dir><dir name="Reports"><file name="Scope.php" hash="2adbf471c9c2ed0e98ff7c9d99090a1d"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="840e59190535b9aa44820ef24a8bf8de"/><file name="Allowedmethods.php" hash="affe1705d1a5b8d06203a58544bceede"/><file name="Allspecificcountries.php" hash="5f7359341e6608d46730547f1846a95b"/><file name="Flatrate.php" hash="28a3e301eba9589d3e2128b579135c57"/><file name="Tablerate.php" hash="f6cb70a26987f4d5bf21f4e14c2b3de0"/><file name="Taxclass.php" hash="c37c1f14b93f9f57cb015a36699c8e61"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="a80225174c18c3d7236581d22cd47fbc"/><file name="Storage.php" hash="e2b63811fc79cd84bae23cdaa655895f"/></dir></dir><file name="Store.php" hash="8da77e59efb236dbd32a6bf404fd4b62"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="1da9f10687186974929b23f7cb7a72fd"/></dir><file name="Basedon.php" hash="039468a874c10dd3911e7229afda30c8"/><file name="Catalog.php" hash="dc709fc9ae1269bf4ff09c71a367cf1a"/></dir><dir name="Watermark"><file name="Position.php" hash="76e3b011648db676a29e3242ac9d94ef"/></dir><dir name="Web"><file name="Protocol.php" hash="712cee478a84fa431161999098ef9766"/><file name="Redirect.php" hash="95b100f80a9b9908bb7cc6a5e58e0e2b"/></dir><file name="Website.php" hash="fce2442cba397520c742ac3903cd4908"/><file name="Yesno.php" hash="1591a9f985f6a52cf878c47698fc9e91"/><file name="Yesnocustom.php" hash="c341ffc353101f96ef9ecd1b0aa7c7ac"/></dir></dir><file name="Store.php" hash="9bd64e79b131c8370f957199d0f8c5c1"/></dir><file name="Url.php" hash="f8bc5bc6abd0e70f060d8db0b5e0531e"/></dir><dir name="controllers"><file name="AjaxController.php" hash="f1777ea1cdb347a072a04fb861b07aef"/><dir name="Api"><file name="RoleController.php" hash="c82182fcc4828841648c4f53fda2beb5"/><file name="UserController.php" hash="ef284666e0d637d4108113e280283e3e"/></dir><file name="CacheController.php" hash="6aaf0bfb2d786dcee710bcad5db7ace3"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="03138bd9a16517988f0bdee225d19b65"/></dir><file name="CategoryController.php" hash="281fd0cd3a0b11782b76da4cc539a0f3"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="d83c7f23f0f161d1e885b9d792d0ff6d"/></dir><file name="AttributeController.php" hash="26d059a06f4ddb287f5635a588789660"/><file name="DatafeedsController.php" hash="168d80b71138ed106225d5f56b5d7daf"/><file name="GalleryController.php" hash="ee6ec7da1473ccbf6e3c7f67254921e1"/><file name="GroupController.php" hash="16e8323ce59809f6c40fe5f1e57c1171"/><file name="ReviewController.php" hash="2f5c1fc50aed5d470e742f05223975ee"/><file name="SetController.php" hash="70ab258bfe25ce6c8cbcc68fe56b1c01"/><file name="WidgetController.php" hash="a732ac69731348cbe4f2691ee7248392"/></dir><file name="ProductController.php" hash="4f71c28e31e3bb24d616824797067753"/><file name="SearchController.php" hash="745eccb882443e41ad649dfb3037cee3"/></dir><file name="CatalogController.php" hash="e84fba03e01185058d31d7f794be1f71"/><dir name="Checkout"><file name="AgreementController.php" hash="a7affd413a3c2fcdd80508562777b4a1"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="e8c4839dd6a307bd04cfb9b996908708"/></dir><file name="BlockController.php" hash="3304cdd2ae9ec78052d6f66e42b34a98"/><dir name="Page"><file name="WidgetController.php" hash="fc62fd6371698e17bd5f91d9e4deeed9"/></dir><file name="PageController.php" hash="521f7f0b184bd915d6cd5a2d2021cfc9"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="17793668232948500ed8ac8bebfd4519"/></dir><file name="WysiwygController.php" hash="adb54dc262de8aae68e0a66ab736c120"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="11e0bc9422fd69b8afabb7bdb1549dea"/></dir></dir></dir><file name="ConfigController.php" hash="cd7984dc23fb2c74e3a1f2b8e1e2ce77"/><file name="GroupController.php" hash="643a5851af48f0063f7a8a6ab277562e"/><file name="OnlineController.php" hash="3d868cbe5126bc304e6dec6fbd7995ca"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="a042f8b540c149863ca62c5bdc48caeb"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="7915e56dfd9de3270b5fac8825ced4a8"/></dir></dir></dir></dir><file name="CustomerController.php" hash="9944ac47cbe9d69f4071a0fc6ecf0f86"/><file name="DashboardController.php" hash="36839c4fe9a0efdfa0998175acd5af55"/><file name="IndexController.php" hash="99dde1cbd9b2c10c4768ae7563170040"/><file name="JsonController.php" hash="120772b9a4c6785f17e61fc52f6accb8"/><dir name="Media"><file name="EditorController.php" hash="cdd8c7edcadca9f2e9691e2f1fe30de2"/><file name="UploaderController.php" hash="bdfb5dc56dd5a3f2e6620350dfb29b58"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="09132d9870212ba25528a8b7bd9fbbdb"/><file name="QueueController.php" hash="3fbfd9ef8a7dc0d764f0c6c4a7a5f24f"/><file name="SubscriberController.php" hash="e6778ce9626a59ff28e6bdb978e0807f"/><file name="TemplateController.php" hash="ad3416aa8cdbf06a6abc888da02a560d"/></dir><file name="NotificationController.php" hash="38fdb06a78642d335d84394bdc0bf9dc"/><dir name="Permissions"><file name="RoleController.php" hash="c4603a2d9e5e35a969df5e50b65c6b95"/><file name="UserController.php" hash="07517e0e91c70b0e1460dd1e0d9df04e"/></dir><dir name="Poll"><file name="AnswerController.php" hash="acdc42fb73ebdaf2c5b9d90101ed17fa"/></dir><file name="PollController.php" hash="f5ab032a6170820af7abd980832678c0"/><dir name="Promo"><file name="CatalogController.php" hash="22dce2b5b6b3b064c6c9231a6a2f9833"/><file name="QuoteController.php" hash="8c51fc4e9dcb2bd174db70cb90277b37"/><file name="WidgetController.php" hash="e1b27463665e92e94e50e83e6ca667a8"/></dir><file name="PromoController.php" hash="8e1f2bcd2a9eda1c244353876fba39ff"/><file name="RatingController.php" hash="94f531c63dde06250950804ceac95bee"/><dir name="Report"><file name="CustomerController.php" hash="42b56c59327a8c230475d64f7139a151"/><file name="ProductController.php" hash="e221bd02418bbb7fb9e0a12edb0acd15"/><file name="ReviewController.php" hash="796d65bf7549e8f3b9391c39a32d6782"/><file name="SalesController.php" hash="5a5d26696e99dbcdc6ff620978e8e806"/><file name="ShopcartController.php" hash="cc3cee8a44e17de72c8554c4d3aa0514"/><file name="StatisticsController.php" hash="6e0a78fbc4367125b8ce577c6eac1900"/><file name="TagController.php" hash="dd1345e50d9588c98559c9475df13007"/></dir><file name="ReportController.php" hash="e7f0ebf457355927b3712b14b786edeb"/><dir name="Rss"><file name="CatalogController.php" hash="cc2e9f5aa9db536a6abd4cb9c8a63ca3"/><file name="OrderController.php" hash="232a467f5002da631393dc1c06689142"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="0a5ee097331079eaabe5434bf7f1afdf"/></dir><file name="CreditmemoController.php" hash="c7fdf924ac5432c8c804429c5d537349"/><file name="InvoiceController.php" hash="a8e2f0f4591d9f56e56ef7ead27a20b2"/><dir name="Order"><file name="CreateController.php" hash="de7b73b62ddad186a3908e5ecef3afe5"/><file name="CreditmemoController.php" hash="55f6c8317e06ec4ca283dd2a6a14369f"/><file name="EditController.php" hash="054e551a299bd5f5891ad28d24220aa9"/><file name="InvoiceController.php" hash="2b8e5d7277090c19bf86dc990edcd312"/><file name="ShipmentController.php" hash="49a2173f68e21205e217ebfa19d55c29"/><file name="StatusController.php" hash="2bcf5920d894f9db7f54445a4eedfd88"/><dir name="View"><file name="GiftmessageController.php" hash="d2a0f33849b37b566a9dd1f4a351ed93"/></dir></dir><file name="OrderController.php" hash="e6fac6753a2379de0362700e217abd0b"/><dir name="Recurring"><file name="ProfileController.php" hash="71f41be78f5b4e13a9fe76ed8ca550be"/></dir><file name="ShipmentController.php" hash="69b87214408e7d99b49b4208df7bf915"/><file name="TransactionsController.php" hash="f5edc1406a16d69db4e1b81467075fab"/></dir><file name="SalesController.php" hash="8598000fe2a0f9ec98563727ab8b1475"/><file name="SitemapController.php" hash="df85db2f3cd41e9963e5aa4865ef3e9e"/><file name="SurveyController.php" hash="ef35d1d2bed55461ac8d1e23709152b3"/><dir name="System"><file name="AccountController.php" hash="acd8e6a411a46852fe6b57ed00de02d1"/><file name="BackupController.php" hash="f8603f85c21709d90248bd316ca963af"/><file name="CacheController.php" hash="d1addf8655272a012bc9e1b2e2c0fd7a"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="29da217c4a5dcc78e1c42bb11bb33ede"/></dir></dir><file name="ConfigController.php" hash="97afff0fd097da21484ed2b06d09d736"/><dir name="Convert"><file name="GuiController.php" hash="10e86d4ca439a29757517647a1c6c875"/><file name="ProfileController.php" hash="34e86d184b991b6395ee73f94292a05a"/></dir><file name="CurrencyController.php" hash="5d1eb0bb06a0b0926aef7b3e058b1d31"/><file name="DesignController.php" hash="a74cd7d666491588b39853d480715b3a"/><dir name="Email"><file name="TemplateController.php" hash="1d8273321c6eb996d5700797c018bfb9"/></dir><file name="StoreController.php" hash="5810a89a6e8df566883b5f0a6510dbf8"/><file name="VariableController.php" hash="76e80c14da111dc3097336e16e3311c4"/></dir><file name="SystemController.php" hash="0c3f1841ae54408088be89d9284ecd67"/><file name="TagController.php" hash="2b75039572cf9df0e30f72b65c59d14f"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="a8f8b157d906778080e16521846a1632"/><file name="ProductController.php" hash="a4c473224eb0d9a2bf5d88d4be4c172c"/></dir><file name="ClassController.php" hash="c82ab6e29108cfad3f1771c13519fb0c"/><file name="RateController.php" hash="d53943c41850f999482457a36cd69892"/><file name="RuleController.php" hash="774331ad170045e420e2db7ee08ef88e"/></dir><file name="UrlrewriteController.php" hash="de3c6de21b59bf9bc6b17f92cf25a828"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a86cda1acc07a5a0daf2733c625aba8b"/><file name="config.xml" hash="041bc63712cc3bdff887067e29a72858"/><file name="jstranslator.xml" hash="afac1927acdcf8472de935f56d3d0291"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="ebab8717ee8e2a2b2d070f6744f074ed"/></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.7.0.0</min><max>1.8.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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
+ <version>1.7.0.1</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.7.0.1</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2012-06-20</date>
14
+ <time>11:26:41</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="53b42a69d31aef2d705eb2907ac4096f"/><dir name="Api"><file name="Buttons.php" hash="115dd77ba94468b3d80e556eaf4e2a28"/><file name="Editroles.php" hash="735a5daa8cdffcb7b3f4329091e8dd8a"/><file name="Edituser.php" hash="d8678e64c378e9e35370eef3bd884660"/><dir name="Grid"><file name="Role.php" hash="a2a9b30b00399ac2f16eef7d8d4e2de2"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="0211c7e077b4fee9f86ea48c024bfbb3"/></dir></dir><file name="Role.php" hash="961dad9e56d008082734c5d7038dd499"/><file name="Roles.php" hash="29d49d57a9242aee1544708681ad243f"/><dir name="Tab"><file name="Roleinfo.php" hash="c71d4cea8adc4a87c6a0b02234da0681"/><file name="Rolesedit.php" hash="dc56eb3840e413940998552ccf692bba"/><file name="Rolesusers.php" hash="fe667b2b4f640fa44c88b8b0ca20c06f"/><file name="Userroles.php" hash="809407afa1c0a41698aeca3e0d0982ba"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="5864b3fab1808fa3e5b2e8579115a7a7"/><dir name="Tab"><file name="Main.php" hash="f2a603eba2643105c2d10c50c71214c8"/><file name="Roles.php" hash="48db546936de7c14ac65aea67ef30342"/></dir><file name="Tabs.php" hash="a868cb54e325e382d13eb2b0e6087c06"/></dir><file name="Edit.php" hash="2f67d4e2a556ced20da960f4206996b2"/><file name="Grid.php" hash="53580953a3931d127f9e3639b2ae3738"/></dir><file name="User.php" hash="d20415fbd7fdc525dc0a18891d120033"/><file name="Users.php" hash="71209efcbc122fe629cbb23a300f8d68"/></dir><dir name="Backup"><file name="Dialogs.php" hash="f2c15eead546c2ec7f2fb70921d1b157"/><file name="Grid.php" hash="255cbcfe274247d8326781e817e817ee"/></dir><file name="Backup.php" hash="87db0bbc532771b4319544766267daee"/><dir name="Cache"><file name="Additional.php" hash="8d6b760e1eae392db3043fc608ce5b1b"/><file name="Grid.php" hash="2760c6c5a65d550dc1215dfbdec7e757"/><file name="Notifications.php" hash="a90f6926a5c2126d5328799613721695"/></dir><file name="Cache.php" hash="65c921b80d2c94d10aa7de682ec58e7f"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="0c978c5e415938620e6f01bf4b1e8655"/><dir name="Checkboxes"><file name="Tree.php" hash="ce785862f5b0e786f54ee6da18618343"/></dir><dir name="Edit"><file name="Form.php" hash="944afdb0d8d4e4b513d4c71dcbd25363"/></dir><file name="Edit.php" hash="c07e26e39044d965e8e4141d15a96e8a"/><dir name="Helper"><file name="Image.php" hash="17f391d259497efa8877b59f870f2c08"/><file name="Pricestep.php" hash="2ce3b639995f85f18f6961a4ab66f83a"/><dir name="Sortby"><file name="Available.php" hash="54a9d288d0705832da8ab1db9d66ff2c"/><file name="Default.php" hash="5fa1bd1388e912be8cadbb3ca915fe6e"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="a8ce9ee8bde0fe798d2a981e49a286de"/><file name="Design.php" hash="fb0c2b67d547ba1b7e1f6bd4f27cfa09"/><file name="General.php" hash="d24f1b5a7fb2dbc246dd5a796dffd6f5"/><file name="Product.php" hash="3e5405c0e568429499d2ace4737dda1a"/></dir><file name="Tabs.php" hash="d177c39d04e834ae27672a356f4bb9f6"/><file name="Tree.php" hash="d3fcfe3158c1ff8d17ebf30db9367473"/><dir name="Widget"><file name="Chooser.php" hash="90b2ea626a6fec8b89af3e0446b90e61"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="d3a6dad8d004f59cb7d6481c6389b745"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="20b4000b60254aae8022c70fe502b447"/><file name="YearRange.php" hash="24f6b6ec3031143ca7f3121eabcdee74"/></dir><dir name="Fieldset"><file name="Element.php" hash="c6580590cb5f17d469d39498ebbe6c17"/></dir></dir></dir><file name="Form.php" hash="5e1aadbb6b445fa824996bbd9c26fa4f"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="4b1e9946d22bdd8f354b7a094b80ec91"/></dir><file name="Wysiwyg.php" hash="e05c5aadda1c25161ca89ce7dec3abcd"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="b2a5ee97b15776dbf0b3df76c7b61695"/><dir name="Tab"><file name="Front.php" hash="816118c6aac436833d88e807e517e28b"/><file name="Main.php" hash="3f7c56ee2bc12306daabdd2169612ded"/><file name="Options.php" hash="8320337e8404b988cdc0c023030a3e19"/><file name="System.php" hash="b00ff96aa183a27b5870b1f79774d38a"/></dir><file name="Tabs.php" hash="ea82087fb3941a943b4e6f781d396a34"/></dir><file name="Edit.php" hash="11893ab0100c8081cae56588c11e7ab2"/><file name="Grid.php" hash="4e64920e9a1387fa5cc774cb5c9569f5"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="8199aee9c651eda7eee9d92d31895881"/><file name="Created.php" hash="5bb3cc15a7965f5be2cced4a293d5e42"/></dir></dir><dir name="Set"><file name="Grid.php" hash="f821944a710e581fb1c0d4444e6e52b5"/><dir name="Main"><file name="Formattribute.php" hash="0e9daadc70323784563d8e5b48c0434d"/><file name="Formgroup.php" hash="2ceb67da9e4711744b89b02ee48d1cdd"/><file name="Formset.php" hash="b9f37c657ff0183d1b0b0e9ec03307c4"/><dir name="Tree"><file name="Attribute.php" hash="a847eed55ec642070174116ed2afc704"/><file name="Group.php" hash="9749af82a07c60ffad4bf346f9527bd9"/></dir></dir><file name="Main.php" hash="2640bac615d5fe3a532b57e2b8192605"/><dir name="Toolbar"><file name="Add.php" hash="d2fc89ab8956eb14aabcf585e3882608"/><dir name="Main"><file name="Filter.php" hash="71b12f3246ce2b71284edf9dd8109ef0"/></dir><file name="Main.php" hash="1b36255e6d3cd91ce27c2a5a077ee473"/></dir></dir></dir><file name="Attribute.php" hash="457cdcffc8af95ec2fff16ee7b5df3f5"/><dir name="Composite"><file name="Configure.php" hash="db8712677adce784037e008c331b7622"/><file name="Error.php" hash="e68bd05438739df588a71a1dc7adb945"/><dir name="Fieldset"><file name="Configurable.php" hash="c1ef7fe7bf30835dbb1ef5f1a7c53b22"/><file name="Grouped.php" hash="436fd607a122629f4b3cc7dfb9ffedf0"/><file name="Options.php" hash="eeede9c876ad971e28c52066ca9ced8a"/><file name="Qty.php" hash="fb860b4d54e75101507a8d3a1df2235f"/></dir><file name="Fieldset.php" hash="5c232092ec09b2fb2c2bf778b48b6790"/><dir name="Update"><file name="Result.php" hash="ee1dfb3d9286477f96e9d2f38a93d886"/></dir></dir><file name="Created.php" hash="ac18043088c35e3b189e7e7e597cc143"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="1913cabb608987933e87ba8a40217294"/><file name="Inventory.php" hash="6eb2c129a07e65ac4d4c7cf84557ab70"/><file name="Websites.php" hash="8c40cca484c458e32a2f8e1e0fa86c9f"/></dir><file name="Tabs.php" hash="fcc683092220c4513592cc7c80959561"/></dir><file name="Attribute.php" hash="266783048cba204adf2da18b11895f36"/></dir><file name="Js.php" hash="ab78eeff7389412259c3f87dcfe3501c"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="05e4a011165b2bd03a16e46db9d92f9d"/></dir><dir name="Alerts"><file name="Price.php" hash="bca8f08f497b8ea9a69fb081ea04d787"/><file name="Stock.php" hash="a96ba525284da2d53256c09b5f275195"/></dir><file name="Alerts.php" hash="9821422b1e68b6974ab9d3922f7c45b5"/><dir name="Attributes"><file name="Create.php" hash="bd57a3cb7149d165242c12f3b80216d2"/></dir><file name="Attributes.php" hash="11d4aac6bb245604b612735b7ab8c1c7"/><file name="Categories.php" hash="205acdfb85c9a2e3d7b4bf39148131f1"/><file name="Crosssell.php" hash="b8adf4f8f894895d5206f13704b50b0f"/><file name="Inventory.php" hash="86358e59722cfb27960ea0d0754004a1"/><dir name="Options"><file name="Option.php" hash="84b969376a404bb13784a17874fa971e"/><dir name="Type"><file name="Abstract.php" hash="fa334da8ecf1fc97ac963eeaa5a523de"/><file name="Date.php" hash="74c9ffd6fc308569190d4eccea6ddae0"/><file name="File.php" hash="3a814a81c69972bd7f3650cc39472d78"/><file name="Select.php" hash="7175096d087a60a005375556733b7a03"/><file name="Text.php" hash="d031f4c8dab63eb03c5ea03febaea058"/></dir></dir><file name="Options.php" hash="260d85140dbe93984dc5ad12714cee9b"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="a9363539050bd206b9dbd7d14148bbc6"/></dir><file name="Group.php" hash="84e704ff56ef7bca0ca1a5bc2d6cf967"/><file name="Recurring.php" hash="79b6d81201aed60ef6a3bd8128d46839"/><file name="Tier.php" hash="b48b0d43bd65d3eee65820701c732679"/></dir><file name="Price.php" hash="41e7a39ddd584e168772f904aeadbcb5"/><file name="Related.php" hash="2c4678c2cd1acf4f94f46eddc292e30a"/><file name="Reviews.php" hash="2a2d335f924dc4761cbd07f944aa40de"/><file name="Settings.php" hash="8e9f72e22c7c4751074c21d5ba398816"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="7c249fe9b56ff41b672b338d17f33346"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="de7dfc952ba306d9d4c3a445fe5be52b"/><file name="Inventory.php" hash="bf57717f6a09fb2ae986356bfea6f9b0"/></dir></dir><file name="Grid.php" hash="6f9e7b4767da9df1928397660945c7c4"/><file name="Simple.php" hash="7774d32e74cfd797178ec3b60d04ae9f"/></dir><file name="Config.php" hash="de6ec0b2d5335cdae3495b06cbce36ff"/><file name="Group.php" hash="2785336fb72c8161f850f5c55073492d"/><file name="Settings.php" hash="4fe9619abf262e8c88adafafd62f6a68"/></dir><dir name="Tag"><file name="Customer.php" hash="c3cdfd983887631b074751631c031081"/></dir><file name="Tag.php" hash="c84b9a3de382b41f6b95404bb4ef0f0e"/><file name="Upsell.php" hash="d0f1d868084b9749e5fcddffde81ba18"/><file name="Websites.php" hash="e9a8f9d9a0105c368d2d7018b1a7a761"/></dir><dir name="Tabs"><file name="Configurable.php" hash="79af35153959f94a78b59e7049407b5b"/><file name="Grouped.php" hash="516d6963a1d127edddce283789cb7278"/></dir><file name="Tabs.php" hash="589efabfc8118d88b2aaf85448644fdd"/></dir><file name="Edit.php" hash="b989b8b6160a6183ff72de9b20a2bf2b"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="1e8811286bfcec762d47fef09128d7c9"/></dir></dir><file name="Grid.php" hash="f9257851e0e767daafc2cb62b905c7b7"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="c3b58dcf89042c0bd95c5d7e52f57dec"/><file name="Boolean.php" hash="a5ae66b43dd5e05c1f6a1de852011ce2"/><file name="Config.php" hash="4edf2bf935d92453dfe42a6684ce791f"/><dir name="Gallery"><file name="Content.php" hash="b154bfd5bae2e1d421332c94678dba2b"/></dir><file name="Gallery.php" hash="34deb18e36b5f4da936cadc75d3c46e9"/><file name="Image.php" hash="8b923f3a3f11778002f7682ef99e36ab"/><dir name="Msrp"><file name="Enabled.php" hash="134d299c4db7620d13062b2d0b363880"/><file name="Price.php" hash="77e540c231d67a27677489f0bc8b2fc9"/></dir><file name="Price.php" hash="e52dff647d4334f31a01500beb9492a8"/><file name="Weight.php" hash="b79b915dfd0fbfe84472c89ad345f286"/></dir></dir><file name="Price.php" hash="5649a48a8158cbb30cd94f0ffcd89516"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="1dfb7a93f7f796b73a2514206dec84ad"/></dir><file name="Chooser.php" hash="b5bc36040e0525aeaa6a8021c9fa44b5"/></dir></dir><file name="Product.php" hash="8773e35cadb4e8859d9be56ba4a3db93"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="4e03e0ecbee0cf55b821249467842711"/></dir><file name="Edit.php" hash="96e19dcc7749ab9029f56715b50673ba"/><file name="Grid.php" hash="c2ba6e5b2522e2c437ff349e8d1b0ab7"/></dir><file name="Search.php" hash="275774b584978b7bc882437e12cb0553"/></dir><file name="Catalog.php" hash="fe3dac6e1e774aa7e2177df0212fac51"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="5b042386fcb0b04dd8da70ec79fa0242"/></dir><file name="Edit.php" hash="dfbc214b1c71bc235b7da68fb0ccf8ed"/><file name="Grid.php" hash="e33a3be50fdddb81817b9a1603531dc7"/></dir><file name="Agreement.php" hash="8beb26e27ad662e806e2322e0b433d10"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="b5d957fa7d9c934307c8eb9a305e617b"/></dir><file name="Edit.php" hash="d64fc9f41327a466908c9ce317ce0ac7"/><file name="Grid.php" hash="d7a11ee1f569d55d31ad1cbaae40944a"/><dir name="Widget"><file name="Chooser.php" hash="85690edac9ed87f2cc138b7823e4064e"/></dir></dir><file name="Block.php" hash="2d313ebc18f48ee0b19fc91776e9f141"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="40c12421162d14007d6970951a9afdaa"/><dir name="Tab"><file name="Content.php" hash="fbaa5d542cd960631cd49e801c0442fb"/><file name="Design.php" hash="d19fe21766db10836daa8c9bc2c0ebea"/><file name="Main.php" hash="06b7a2b9b36d03c3d1ba018d25c45563"/><file name="Meta.php" hash="d85cfdc972fb7e13e12e5ac0d628bee7"/></dir><file name="Tabs.php" hash="8e1e208deaeb6b7fe9a0b35147543299"/></dir><file name="Edit.php" hash="b713e134c027fbfe6f3becaa7b6aa489"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="1ffe1c276d333534ed41ad0ced78b907"/></dir></dir><file name="Grid.php" hash="dc977013d61157a74a1b16d333363fbc"/><dir name="Widget"><file name="Chooser.php" hash="2bc2583c77f14ef84aa576db93cac153"/></dir></dir><file name="Page.php" hash="541ee026b0fe64f2507928d7b06d23b6"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="96ba466e162a5b304e05581a1b9981c2"/><file name="Newfolder.php" hash="e53addca9a2a2a705e97bd493c57833c"/><file name="Uploader.php" hash="d46965540d2986ff74f9c2c030f2dbb4"/></dir><file name="Content.php" hash="fa97cc6ae723a62eeb137dcb23851225"/><file name="Tree.php" hash="6de3fa85978962413118cfc15b5f8f82"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="1f67c823a7d95c05e6d12dbeb7f1d8a8"/><dir name="Renderer"><dir name="Attribute"><file name="Group.php" hash="f9b1d5a51d30447a7d9f7071586ee877"/></dir><file name="Newpass.php" hash="ac4fa9dc5051438082627e92ea7c0a2c"/><file name="Region.php" hash="935c7de8fa4e2c1163618797c2ab38bc"/></dir><dir name="Tab"><file name="Account.php" hash="d4c9799e34518b5c5289668365c93659"/><file name="Addresses.php" hash="e4121c55eab7cbb0c6af0e84d1f88372"/><file name="Cart.php" hash="704f6094406649bfbedbd39c7890e9ec"/><file name="Carts.php" hash="5b9ae5af7979e6ad450582586c53ce53"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="404518e659f008dc468a7a1dbe040ade"/></dir><dir name="Renderer"><file name="Action.php" hash="ca18c1b4906525ab2e3e5a269ae1dcb4"/><file name="Status.php" hash="d8645cd46eb22ea70d4d82378e0963a9"/></dir></dir><file name="Grid.php" hash="25367c8354688f0847b88bf550f83909"/></dir><file name="Newsletter.php" hash="4882fc412b8937f9067d697f6faf1b23"/><file name="Orders.php" hash="bdde89330eb08260b1379983e7321e4f"/><file name="Reviews.php" hash="5e1b838e3ff6ac5d56690cf6dbb64c21"/><file name="Tag.php" hash="b79a5b5aa7c3b8cd3b65a2e30ae1469c"/><file name="Tags.php" hash="8d1c6dc24d4a37d1682da0325d38a3f4"/><dir name="View"><file name="Accordion.php" hash="a2c3d532cd50646f5e815f9caabd5656"/><file name="Cart.php" hash="2aa9e930c24e676b27d5fd50474023e3"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="c988a1a9a991a134ea1a5fbe6d68276a"/></dir></dir><file name="Orders.php" hash="7672de0cdc21ef105996c16ee644309a"/><file name="Sales.php" hash="6d0a1b107cf09d6764c6f8fd78808210"/><file name="Wishlist.php" hash="364912121436991e7d1c9398037fbb42"/></dir><file name="View.php" hash="41c5ae6f7bbdfa16eaef03e91e706cdd"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="1bf1fc06f45f416d170f9bcc261e52bc"/></dir></dir></dir><file name="Wishlist.php" hash="e59f38cc4235c7a830b6b2334dcbc335"/></dir><file name="Tabs.php" hash="6ba18346d8e0520459e55d58495e36f3"/></dir><file name="Edit.php" hash="2fca97b88871844d210e351c3b5742cf"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="c3eba0cf0a275acfce2955d2c9ffab4b"/><file name="File.php" hash="57c6d939785f37f9be36b949584ad8a3"/><file name="Image.php" hash="8e30e22534e84f2e3722003eba8a42af"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="2360da5365a2a664995303ed085883b8"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="c391f8801220e72f76481478b31b8a91"/></dir></dir><file name="Grid.php" hash="4518e5afc4473eb08e973dedd2ec1edf"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="1f1df0e6c5a584d2b7301fb219b09b50"/></dir><file name="Edit.php" hash="b67d188206333589523601a4c1d219aa"/><file name="Grid.php" hash="ec763fd7ce236348758b45b29b20d796"/></dir><file name="Group.php" hash="b3755d0f4366a676f03a4887faf4d3d6"/><dir name="Online"><file name="Filter.php" hash="b2bd25737e4727ba8310c5dc2d1dbb12"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="97ee5727f0ad75a5b40d9a6caeecc833"/><file name="Type.php" hash="eaf4a19cfcaf4bb30c93c67c051223f6"/><file name="Url.php" hash="f3a4d5a5b4d5098c5e0b73ccaed8ac6c"/></dir></dir><file name="Grid.php" hash="3f19e5385ef5cb69f43e15aeef74173f"/></dir><file name="Online.php" hash="0787792efbe234fc4e2df613808900a2"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="01aaf14152ac06217a8400356649ba87"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="5aaf00eb2cca3dfeec1b3665f0316727"/></dir></dir></dir><file name="Customer.php" hash="32ab30684b2aabf842f967f1683d4b18"/><dir name="Dashboard"><file name="Abstract.php" hash="2c253435cce388df5a197eab1d77d928"/><file name="Bar.php" hash="1dff629a9b97f824147d6b30701e6ea8"/><file name="Diagrams.php" hash="95eff5c8e043737184875c12ea87cbc6"/><file name="Graph.php" hash="684420eadfcf98899d03f561c87fa49c"/><file name="Grid.php" hash="11c613cca8bba7999771235cab393375"/><file name="Grids.php" hash="bc6b072d69b344f994e2559ad5c6449d"/><dir name="Orders"><file name="Grid.php" hash="f5622dcc2a518544b998cf777e715891"/></dir><file name="Sales.php" hash="ab82fad334b83311b02092734a4cf319"/><dir name="Searches"><file name="Last.php" hash="767e7780e18ec0d32d96aae1d65ffaa0"/><dir name="Renderer"><file name="Searchquery.php" hash="1e03c74d5ee803ac3d460754141ecc91"/></dir><file name="Top.php" hash="2a4ffa076302cd0745779f236b6a672b"/></dir><dir name="Tab"><file name="Amounts.php" hash="30c83e67bb51b8e0e0f9798357054721"/><dir name="Customers"><file name="Most.php" hash="b19de2aa8748f57f6cb53995bb0f6732"/><file name="Newest.php" hash="9c40aec4ea8fe9d7ca6090bfe4fe0cc3"/></dir><file name="Orders.php" hash="e6e519e9e73c1ec0dbf9d79c92933525"/><dir name="Products"><file name="Ordered.php" hash="26bcebbcbbbe6488974450641ec75e8e"/><file name="Viewed.php" hash="b5c48691370918ebdf018605b4b246b8"/></dir></dir><file name="Totals.php" hash="5abd849ccb91a02321ba63571cf47ad8"/></dir><file name="Dashboard.php" hash="7a5c20c71cd953a0bec242a50d0cf2f1"/><file name="Denied.php" hash="f6a41c1e97c577d9d745e56d8e0f09ae"/><dir name="Html"><file name="Date.php" hash="b5ff869c0f0a06135ba9b921cd34de45"/><file name="Select.php" hash="3648ca25e82c38dc60c3e5f39a6eeb02"/></dir><dir name="Media"><file name="Editor.php" hash="0d11443384e50f6b806c913475fd5f0b"/><file name="Uploader.php" hash="d68caceacd62d1fa36957f86c8085b43"/></dir><file name="Messages.php" hash="1d8432d98e4aa22a9053573c5bf1bf83"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="27328cfe0233814da04e9f6c1fc131f5"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="0a5e922b4366c2e95ea0be575a3cdcac"/></dir></dir><file name="Grid.php" hash="5e166b2cd85b547f19c54e0280184795"/></dir><file name="Problem.php" hash="4fa51e468a3c4db6d29b1842420bf8ee"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="773a047ee251ae1350e46a7a282649fc"/></dir><file name="Edit.php" hash="f785659b997832c9d9d3b63e27b89063"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="fe64a891232018af2e78b98736cc340e"/></dir></dir><file name="Grid.php" hash="c49483bf58812f3d50d3eb69f41ced17"/><dir name="Preview"><file name="Form.php" hash="99e0a1e3c4a11f7b6a4f65f0d6d1d810"/></dir><file name="Preview.php" hash="151517333a3ac06aab3969f0876730d6"/></dir><file name="Queue.php" hash="6021e448117668639524f993cdcbd7cd"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="fd998f8e65693573e39c92ab3a17232b"/><file name="Website.php" hash="4d8cf5b420123757f92793ce5e2abbe3"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="e7ba04406e9f366aa4b39753a5d400f5"/></dir></dir><file name="Grid.php" hash="c6c108ed7a3067c34731258d62ea6597"/></dir><file name="Subscriber.php" hash="75707b916967fc4d57fd29b43d5caabd"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="64af63c76e53ca0e7cfd1cccfc4c8ef0"/></dir><file name="Edit.php" hash="bc548fd086881945f4d5ad924026b36d"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="c2afa936d9ecc3b0573a05da33dde71b"/><file name="Sender.php" hash="a71a7b6dba43f05e25629fd3cb035d35"/></dir></dir><file name="Grid.php" hash="6b8bb178b2d1b77447978c0e7a22c2a0"/><dir name="Preview"><file name="Form.php" hash="dcd628972558049eb8abb5ea652e4196"/></dir><file name="Preview.php" hash="0eafa1bb35ad125efc1205a5ce07a621"/></dir><file name="Template.php" hash="611bff6f6008ae66f39032fb6ec29304"/></dir><dir name="Notification"><file name="Baseurl.php" hash="b43405ce792ad7edee1968516f34a0d3"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="de1f7ab8fb7724c48afe2fcced9f873e"/><file name="Notice.php" hash="8726368b8e7ec53926dd7f2f5bdc6d60"/><file name="Severity.php" hash="c683c35f2fe5a344bb83988bf09c5c77"/></dir></dir><file name="Grid.php" hash="072527c3a7726c47b6f50da33295ffa2"/><file name="Inbox.php" hash="5a18096ad982a113b71ab6e6860bcc8f"/><file name="Security.php" hash="675ae7ca843ddf8f8199aab79647ab5e"/><file name="Survey.php" hash="68644fb08262b784ac5e151a9f2be516"/><file name="Toolbar.php" hash="d4e3c2fdfac722fd42a1083a10b3ea65"/><file name="Window.php" hash="8634439c6f5ae9f69f17937bfa70c667"/></dir><dir name="Page"><file name="Footer.php" hash="8c49520346ceb8e3e8939f6281e32650"/><file name="Header.php" hash="5426ef4d316a29cec8af7cdbbe8ddc7e"/><file name="Head.php" hash="39b37c239ae5e5d08cd5b286bb738ee8"/><file name="Menu.php" hash="0c04492c0505f2e1967c24fb2046df24"/><file name="Notices.php" hash="3309010d9c346de51249b2d5430ba016"/></dir><file name="Page.php" hash="905c99e69cc25a6684445f5243704bb1"/><dir name="Permissions"><file name="Buttons.php" hash="2d8f94c73753826b763ce42a3ffae60a"/><file name="Editroles.php" hash="47d1810ca6499e5d6787f1fbef5374fd"/><file name="Edituser.php" hash="4199b5a39cda4363f52c70d4d3270fa9"/><dir name="Grid"><file name="Role.php" hash="906b7ff7855609c254bf6c14f0930803"/><file name="User.php" hash="fc2cf10f1567c13aa75b6527247af03e"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="48bb038198ad6dfdc10e7c3a091b4575"/></dir></dir><file name="Role.php" hash="04dacab6ee85cc0d69a956f0f0ad14c3"/><file name="Roles.php" hash="154e1357e3eff259f07ccf7a1d00bb15"/><dir name="Tab"><file name="Roleinfo.php" hash="82a7491d798ec14094fc176420643688"/><file name="Rolesedit.php" hash="378e7c5d8f317cc385f2417df5211dae"/><file name="Rolesusers.php" hash="f126f26b2792559aa50efd0c69363ca4"/><file name="Useredit.php" hash="b13a8cc120b060e475ba8026e0a53f55"/><file name="Userroles.php" hash="9aa888a193e427c94983a783de16bc6b"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="68985dd665feeb66951846848f872010"/><dir name="Tab"><file name="Main.php" hash="b8bf177adb948bc922be1da5b359f7a4"/><file name="Roles.php" hash="756890d000e32cb735d226252b87c9f0"/></dir><file name="Tabs.php" hash="1f0dd9cce2617cad71d71f4c91a07a94"/></dir><file name="Edit.php" hash="20eec3e21ad2770af84460dba54fda9e"/><file name="Grid.php" hash="f4ffb5496a1934cc8eb7126a1df2f13d"/></dir><file name="Usernroles.php" hash="6a035788fec7189cf4dc97271bf570eb"/><file name="User.php" hash="e360099816c9656f5130a43598a13a90"/><file name="Users.php" hash="9e341375e22eda09a5cb27b8d6d3d2d4"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="4bfed771a28806968633419858d64e29"/></dir><file name="Edit.php" hash="9f7c8a112fb2772f08cf2662294fd151"/></dir><dir name="Edit"><file name="Form.php" hash="8cafa662c3d52986c17ed90b61a9235f"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="dfa737df8ef8b17dd927a11462dd8198"/><file name="Grid.php" hash="a52202e6fa2a8fed97f7907358137fa6"/><file name="List.php" hash="350511c992f6b450a534e5907048454c"/></dir><file name="Answers.php" hash="216729d3c08ca4e194251421188c2315"/><file name="Form.php" hash="c037172c9360ceb6687361eadde31572"/></dir><file name="Tabs.php" hash="7aa230e5dfb85b55a686050e3a4c213e"/></dir><file name="Edit.php" hash="906dec054c66a503b66141de415f6984"/><file name="Grid.php" hash="a5439be1bf5d522c5960500bc0333cdb"/><file name="Poll.php" hash="ab65e526141180fee21fb080998b2731"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="366019ebd0ccd8db4ebd232f9725431c"/><file name="Js.php" hash="357320086429b2eb7531a3769edd963f"/><dir name="Tab"><file name="Actions.php" hash="53b9041f1673192c30e17d64b762bc71"/><file name="Conditions.php" hash="ddcf3f3eabf2c9f9ec405ed5ae9562c0"/><file name="Main.php" hash="f81f31457a5f516f8a1cbb2f2c2fb8d3"/></dir><file name="Tabs.php" hash="6aa79be9bcd9942dd212ad4f15b272f8"/></dir><file name="Edit.php" hash="83909b12bc0ddfcd76feb829f84f883d"/><file name="Grid.php" hash="674e8840d78a809b9501b8cc43d53723"/></dir><file name="Catalog.php" hash="b5211f53a9366ff6d89a385041ab87dd"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="8cd82a0acd841e1f06bd074fdc5e47d1"/><dir name="Tab"><file name="Actions.php" hash="f7f9509da5f5ffd1f2dc32da5612fb4a"/><file name="Conditions.php" hash="8a41cabf3a83fcce4b1c0c898bd6f8b4"/><dir name="Coupons"><file name="Form.php" hash="d65c3539f0491161ad57e8b27f77ae4e"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="54de464af088aee9169d8f743799c226"/></dir></dir></dir><file name="Grid.php" hash="7a408cc67c9a1d4dd8f6ea30a3789ae8"/></dir><file name="Coupons.php" hash="a2bafe1bd2acb9ff32fe4224e5ae23a1"/><file name="Labels.php" hash="f7f35e061f1aa1b553cc0fd7c7d61885"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="923b4cfe40de914dd5d2acd3de037976"/></dir></dir><file name="Main.php" hash="b5f6ffd15cadd1400bd75076afa2505b"/></dir><file name="Tabs.php" hash="7468afb6e606417730d28c98cb88f60f"/></dir><file name="Edit.php" hash="b1b2dc6eb040ce318e66cf75675aa691"/><file name="Grid.php" hash="a67c49c7541f440d2a0f9d955c81870f"/></dir><file name="Quote.php" hash="ff3ac474f106910b8316d29cfabb449b"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="f364065bb1fd33d3084a9c7ec5d5b62f"/><file name="Sku.php" hash="47823d19d74e2668271306aaca96dcb4"/></dir><file name="Chooser.php" hash="5dd2db922f774f9ef5bc133f5b73914e"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="a20493e978ad9f63e34124d1a8fa702a"/><dir name="Tab"><file name="Form.php" hash="e50eae7616af3979f8bf132396c017df"/><file name="Options.php" hash="d389f9d997170f928d520fc9d8cd62a7"/></dir><file name="Tabs.php" hash="5c37d2716ef64468384f9f9c08ce2a02"/></dir><file name="Edit.php" hash="4cbe46ac483a382c5b0d4f432f409887"/><file name="Grid.php" hash="3f46c5d4a0bb03bf400253f2745110f5"/><file name="Rating.php" hash="e4ec3d1ee079c06c111df6597e98c641"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="b7e794a820eec5ec6c7b7f52e098a270"/><file name="YtdStart.php" hash="2948bc632bb766815c7c4799400ec337"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="2778a89e9131c675a5a5a8dec6e942f1"/></dir><file name="Accounts.php" hash="272f82a80ac14c55f3534a299aed8063"/><dir name="Orders"><file name="Grid.php" hash="7e4bb427c4ef90a02d5ad904ceb0533e"/></dir><file name="Orders.php" hash="be1a5209635fe03f0092058d99865185"/><dir name="Totals"><file name="Grid.php" hash="00fb47d6438e692ef6c1c16f86c45a50"/></dir><file name="Totals.php" hash="ef65187756a49473b0e9c405bab5d079"/></dir><dir name="Filter"><file name="Form.php" hash="594626d42c60d0bdeb57cb9250d0e184"/></dir><dir name="Grid"><file name="Abstract.php" hash="d29f43b9a2d94a91ec1602ea0537c39d"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="6ba66348b5a6eff6e19113b66a584e5c"/><file name="Currency.php" hash="08552aa4c1ecf1a4d19bafb7399641f3"/><file name="Customer.php" hash="5082dd297349a9b5c87e87299252ae12"/><file name="Product.php" hash="8ed018e20a7b6853f470466de66cbe75"/></dir></dir><file name="Shopcart.php" hash="744091fd45f9938c058c85948a658dd1"/></dir><file name="Grid.php" hash="cfa1814a2bcd4a73ff422f92d9e73b5d"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="dc75e5c67ad9663fc68f9d6c71437b40"/><dir name="Renderer"><file name="Purchases.php" hash="f502e5c393dc03b4e5f8e78da0ded198"/></dir></dir><file name="Downloads.php" hash="c5004e44d5bb1278d3593e2434c86f29"/><file name="Grid.php" hash="0330ef1725a7f157832292f9b9013619"/><dir name="Lowstock"><file name="Grid.php" hash="63af0020df0141b913e323d5da6fda23"/></dir><file name="Lowstock.php" hash="b3028fed057a18ea9669eb2f5518b61f"/><dir name="Ordered"><file name="Grid.php" hash="e718c64bca9c33bdf3e935960f1dd878"/></dir><file name="Ordered.php" hash="deb8ec1ed3b4f82251c587fd2cf48fb6"/><dir name="Sold"><file name="Grid.php" hash="f7a4f9db1384262d634bd707e6c0a1fd"/></dir><file name="Sold.php" hash="066e395437a81d880137e798cfa988d3"/><dir name="Viewed"><file name="Grid.php" hash="275243dd04bc2e0f1426a3d1c3bb8910"/></dir><file name="Viewed.php" hash="645707e58cb85d78afef0b289fdb1010"/></dir><file name="Product.php" hash="db4f6012236776dfd85bbc16b815d734"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="59993b9f8b4d974b2085dda7dc05a241"/></dir><file name="Statistics.php" hash="c180df971455743d6da1a52807f56d44"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="2eff521c1ba20577395439d5b9eca528"/></dir><file name="Customer.php" hash="182a7fb38f78946c76189e121823efec"/><dir name="Detail"><file name="Grid.php" hash="f65690f700533d5a390701868163a9fc"/></dir><file name="Detail.php" hash="5f3bfa26465f55039298877cc4907746"/><dir name="Product"><file name="Grid.php" hash="d7d1bc964960ed7a8dfc41ab39b2e080"/></dir><file name="Product.php" hash="a3cf1d40c335cfa0b01b890994049c75"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="694ccdaae812489024ad9848c5957330"/></dir><file name="Bestsellers.php" hash="251f6afdd40946f73de5351e16ad1f0c"/><dir name="Coupons"><file name="Grid.php" hash="3bb6c12e21a617afe968ac1e3401c643"/></dir><file name="Coupons.php" hash="dff90b83dea3b5f38c823257b91d9a23"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="d2872e3fae6515f34f39a7974d68c57d"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="c2c10598ee1ae9ca21078a69ed272820"/></dir><file name="Invoiced.php" hash="88146f6c673d3a292a574e7ed0f0fd7f"/><dir name="Refunded"><file name="Grid.php" hash="026555affde919e6e506952cdfeb4358"/></dir><file name="Refunded.php" hash="8a7a60a05354fc0868e237dee5a97192"/><dir name="Sales"><file name="Grid.php" hash="7872edef6f951e40d0fb6b9beb4cb4e3"/></dir><file name="Sales.php" hash="eb0e82644f06bf361e6679b2e5ec31b4"/><dir name="Shipping"><file name="Grid.php" hash="3339df1a2b3fd29abffa4f495b5509e1"/></dir><file name="Shipping.php" hash="b040e173164099301780ea613ad95539"/><dir name="Tax"><file name="Grid.php" hash="71b6cd01406688664bf1614b2b4d3756"/></dir><file name="Tax.php" hash="cf5e008aa6439b3ee77f16efc0314620"/></dir><dir name="Search"><file name="Grid.php" hash="3caff793f4824d1e460a8dee3a99fafd"/></dir><file name="Search.php" hash="dac5eb49b7365cf07e7c7d17f19ca73c"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="46ceffcb15bb877767d0a9382fcbead7"/></dir><file name="Abandoned.php" hash="bb6a4909e58a7aeb9626ef4bd8e3fc7a"/><dir name="Customer"><file name="Grid.php" hash="0d1ea6cace71efbc1102f54d9675d5b4"/></dir><file name="Customer.php" hash="0442ed711c913e4c3ab75e2ca1b0c897"/><dir name="Product"><file name="Grid.php" hash="67190fd4040bf1a5462a586d97613348"/></dir><file name="Product.php" hash="637a5f67b78c3b7adf8c9cebdc935db9"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="e0f1c4991ade19241b8f4e4529d22ff8"/></dir><file name="Detail.php" hash="cdb9f399b0e305659b65208d758670c3"/><file name="Grid.php" hash="43c9530abf6048b5e803324db8b3cc6c"/></dir><file name="Customer.php" hash="4069a6347441a215131160d743c4cd06"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="2482157fc28888a102456a6b4cafe26e"/></dir><file name="Detail.php" hash="c169efc938282bf5250c2a6ca887807c"/><file name="Grid.php" hash="33d5f2702882e20f412e0a2ac36b7b5c"/></dir><file name="Popular.php" hash="1f81903374a1c309f8820cb138a7ab07"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="08cd79f5028bfa8be4d6c07645df8994"/></dir><file name="Detail.php" hash="d11ad677a09f7855dd3e1f1d422b28c2"/><file name="Grid.php" hash="4f703ffd247e1f66d0b3b0a451e278a3"/></dir><file name="Product.php" hash="e6665ecce188369e581712866a24fdaf"/></dir><dir name="Wishlist"><file name="Grid.php" hash="ab0286f5e36f904640c19028000bb01a"/></dir><file name="Wishlist.php" hash="ec6d256a94bf3dcd9aaf39d203849994"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="56bf164b6ecdf98342e7642644d8c178"/></dir><file name="Add.php" hash="fa72fce55ff1318280dbb34cd5629954"/><dir name="Edit"><file name="Form.php" hash="a9d2054906ca07d7e2b16a6770a13044"/></dir><file name="Edit.php" hash="15d3319a1e929e7e6a2ecee56501e353"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="669aae31ae5cbf51808fcb586b36c6aa"/></dir><dir name="Renderer"><file name="Type.php" hash="b2ea92b6ef4f0614aefbb838695350da"/></dir></dir><file name="Grid.php" hash="7ac1239e3e2cc84796761a9da0c8e094"/><file name="Main.php" hash="83c6d8b6260bd583a0d6f68cb2d22ad0"/><dir name="Product"><file name="Grid.php" hash="8167b5e4a46a94fa3eab9f0ee4cd9ea3"/></dir><dir name="Rating"><file name="Detailed.php" hash="f63bf1f8d448cbb911a967f3270a36cc"/><file name="Summary.php" hash="013dc97e0185064835fdc2c4fe5a22b8"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="c4a1f39de8abe7ea83a01e1ee5a16586"/></dir><file name="Creditmemo.php" hash="c259723a459e96d6d4c1899468b1acbf"/><dir name="Invoice"><file name="Grid.php" hash="39e48fe20697e2c2079407f1dba74a81"/></dir><file name="Invoice.php" hash="b490ea546ca3ea4616afd7475d23405c"/><dir name="Items"><file name="Abstract.php" hash="6379c9df3f5a84e932c3debbf7fd1481"/><dir name="Column"><file name="Default.php" hash="202962fcc80455be4618e97b71b45cca"/><dir name="Name"><file name="Grouped.php" hash="ed980c1b3f0d856010319b65defd4347"/></dir><file name="Name.php" hash="0f4e6208ad7c0dc854aa2d2e9dc23b30"/><file name="Qty.php" hash="20395201ea4d3d9f2dbd6718c58b5816"/></dir><dir name="Renderer"><file name="Configurable.php" hash="06a612b88e1ae7120300a458244beeef"/><file name="Default.php" hash="666e2849d849e9d34b86b1a4b6ea3da1"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="2f582275680709414844bcf82b5909ad"/><dir name="Address"><file name="Form.php" hash="86c7a6e77cf865c6a77fe1784bdc7a54"/></dir><file name="Address.php" hash="7741b06df68a43f65767fbe2f0c127d4"/><dir name="Comments"><file name="View.php" hash="b278f98b5675af15179532a6830e7aa2"/></dir><dir name="Create"><file name="Abstract.php" hash="6bb963cf90afea780fa9ee110e607972"/><dir name="Billing"><file name="Address.php" hash="efc7801c43907ee53094db1a4fa33913"/><dir name="Method"><file name="Form.php" hash="4438b545d0b6346af662b7d5a0f9849b"/></dir><file name="Method.php" hash="446630a7239a71b1006e6f7bd5d963ce"/></dir><file name="Comment.php" hash="d0ad0cc2ecf47e33c9179e55934672cb"/><dir name="Coupons"><file name="Form.php" hash="bd756b7d5afe9c90382bf3501413ec79"/></dir><file name="Coupons.php" hash="eda36213353d81a0ddf86ab99d9b363a"/><dir name="Customer"><file name="Grid.php" hash="26f9fdbd09416b033d6214c0fa01f19c"/></dir><file name="Customer.php" hash="dd8fd753af0b7aff400d10fe6da541d5"/><file name="Data.php" hash="0b30cbafbffbf3ede0f1f289dceeb004"/><dir name="Form"><file name="Abstract.php" hash="536539808dbf32bce86ec52da256fbe4"/><file name="Account.php" hash="fd9a9f9ed757fe42a1899ecf48983fa9"/><file name="Address.php" hash="cbec5798b7560fe4564dac9c8f16efdf"/></dir><file name="Form.php" hash="8dea1bbf8ed55a18abe57dd2a1e59060"/><dir name="Giftmessage"><file name="Form.php" hash="6ea1ab3ab506e3fcceb7cdba7ad4473d"/></dir><file name="Giftmessage.php" hash="4fe7f5c8f0d999357f966ebb71ca313d"/><file name="Header.php" hash="712e9819d6bc9076c9f00e7dee9f574a"/><dir name="Items"><file name="Grid.php" hash="490e3a79bad8fd90419765fc7e8d498e"/></dir><file name="Items.php" hash="bf391229d7c134d6129b418f3196a27a"/><file name="Load.php" hash="4d0a0d5e514ee949471b50b7ed6b9b36"/><file name="Messages.php" hash="75af4ef9b5b59b9c6d1145007a68b101"/><dir name="Newsletter"><file name="Form.php" hash="4d59a328f752fdbc8fe64f416872c270"/></dir><file name="Newsletter.php" hash="d42e97f915a574932d0a4f7da398c9a6"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="983b469b4b4611b89e1286a2df5bc48f"/><file name="Price.php" hash="9cd65fed3c1c28b0afed46ac3dac62e6"/><file name="Product.php" hash="c00d623e6e2730e087863dbd2563a222"/><file name="Qty.php" hash="1b91861788836d0eed9418dfe5fce79b"/></dir></dir><file name="Grid.php" hash="fb30a20b5ef3706251acfccf3eefa675"/></dir><file name="Search.php" hash="f2237c924f9a7940d76d6434c2ec76e1"/><dir name="Shipping"><file name="Address.php" hash="42ec18c0e08eed1800dd78724618fc46"/><dir name="Method"><file name="Form.php" hash="32b9c6fb37b034c88421beac815c47c8"/></dir><file name="Method.php" hash="b1d335ee63015220607540c8b557b86e"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="bec232895a7f54f7ec4d4b8451c27c75"/><file name="Cart.php" hash="976cf428bbea0a94b1c0cb7e2df527d0"/><file name="Compared.php" hash="b852b8253b8ec5dd72b96233085846b4"/><file name="Pcompared.php" hash="575dd5832544c66a2b1a397413f09f5d"/><file name="Pviewed.php" hash="5afa4f5f9d4e623d2974113ae35406bf"/><file name="Reorder.php" hash="f85c533b24778908c9d74e5b722a9ca7"/><file name="Viewed.php" hash="5dfe61d49ef2dcff4a5aeea67b788ccc"/><file name="Wishlist.php" hash="ea760d2c5a4683c3538cb8900a0de59a"/></dir><file name="Sidebar.php" hash="c6ed9e9efca9c85fb90acdb781b9ecad"/><dir name="Store"><file name="Select.php" hash="ed7f3fb6fe3fe3cd08598ba93b895a5e"/></dir><file name="Store.php" hash="ba646b9ff50c07648b14440120df0a4f"/><dir name="Totals"><file name="Default.php" hash="854960cd219bf160ab5152e80cfa9c64"/><file name="Discount.php" hash="6977e0d75d53c1af098a3e3269d60296"/><file name="Grandtotal.php" hash="7192072a594106a19ca2604f16ffdd22"/><file name="Shipping.php" hash="db339b84f661a7ba47505d0d4169f4e7"/><file name="Subtotal.php" hash="a0bde6b3f8294c75fbb9343fc07af7f6"/><file name="Table.php" hash="66cfec8d9b55a39c898197d41eb30946"/><file name="Tax.php" hash="8fbc8e7772efece93b92df114abbe002"/></dir><file name="Totals.php" hash="a1ce91a04f27e566020e2532b5f21dc5"/></dir><file name="Create.php" hash="7abbbb385299f3e22f365b142b58e2fb"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="25e91807a27b96e155f88fa2583c2038"/><file name="Form.php" hash="e3e655bc6f8bac175cfcc639070712ed"/><file name="Items.php" hash="1be79c55c103fe213db5e04045e1789a"/></dir><file name="Create.php" hash="29d7ac9f5ff4baceaa3da443f724fb24"/><file name="Totals.php" hash="f7dc27bd242f6c690d4bbefae4135da8"/><dir name="View"><file name="Comments.php" hash="7d80685a6c0e188068d38a09f3b1539e"/><file name="Form.php" hash="9c59d77a17273b9ad2a3bdad14001dbc"/><file name="Items.php" hash="8916bed8fca0aba89fe42f775b511a40"/></dir><file name="View.php" hash="48a1e0fea436f5a705b058e35fdd26e5"/></dir><file name="Grid.php" hash="46555b5331d9f04ab295377165091153"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="f4bcd31bf6fbcbe099c4f8fe01c461f5"/><file name="Items.php" hash="b8e7d2503d8eff4639ef5c65301a4d29"/><file name="Tracking.php" hash="24ad47aba80b8ede77d22ca877d985e0"/></dir><file name="Create.php" hash="ac2871de83ce2da855c0e25cbf6f02c0"/><file name="Totals.php" hash="fa2a28ab9e1172137e0482b3e80fb99f"/><dir name="View"><file name="Comments.php" hash="a0205a4b2e708ad80df547689a7d11ef"/><file name="Form.php" hash="b867e96b889662ddbbb18d8aa5822fbb"/><file name="Items.php" hash="c180840d5664cd5403ab8910aaacbc78"/></dir><file name="View.php" hash="88def76232ddea38c9a40033631403c9"/></dir><file name="Payment.php" hash="c629d7dc9bc0561e8f0f8aac7cb05124"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="8bdde842dce80ff0518379662d9f93e4"/><file name="Items.php" hash="8ce75d6ed610e2e9d154768b64138997"/><file name="Tracking.php" hash="c71f235d29d5d509977eeba98bf70bd6"/></dir><file name="Create.php" hash="1bca8dba6ae467457a72a6cfc8567472"/><dir name="Packaging"><file name="Grid.php" hash="42a0b58fdee89f84914b450a17632ad5"/></dir><file name="Packaging.php" hash="0f95239c4734dcd82e65e9d6b4b757d3"/><dir name="Tracking"><file name="Info.php" hash="477bbe39990640fb193efe0f6af27027"/></dir><dir name="View"><file name="Comments.php" hash="66355a28033733137406b8999dc76c47"/><file name="Form.php" hash="9268b7860fe9bc0d280cb6bb9a84f969"/><file name="Items.php" hash="296cf106d24ba8d8034d070f31cf820e"/><file name="Tracking.php" hash="b1c6782097686dfbe810d59b536d39c2"/></dir><file name="View.php" hash="0e59dc97264a0006c34849fa748cbf8b"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="3b574a4bade03a20f00ca8dffda83f43"/></dir><file name="Assign.php" hash="9c146be917f31e2abe4f737cf37d0728"/><dir name="Edit"><file name="Form.php" hash="c71944d9838157b1973aff89061b6018"/></dir><file name="Edit.php" hash="1152f4683949e050cc66a66e3b985438"/><file name="Grid.php" hash="d3f85a0390aa1418ccee87887722642a"/><dir name="New"><file name="Form.php" hash="01b9bd8f6ca71dbce7fc536ef972eb5d"/></dir><file name="New.php" hash="10db76eb6201d390264e8c8a8b05f9b4"/></dir><file name="Status.php" hash="f337deb978e87d64203f8971edc4f014"/><file name="Totalbar.php" hash="3129a7fc712de6a3575187e9676c975c"/><dir name="Totals"><file name="Item.php" hash="3c2cdeb85a214e61fb2b2c2582fb47da"/><file name="Tax.php" hash="498837b3c3dc44a0f19d3d93724aeec4"/></dir><file name="Totals.php" hash="3d358e883dcdbb22bffdd67d8624d420"/><dir name="View"><file name="Form.php" hash="797d254bdef1e93dbb401c4bb2aa0c0c"/><file name="Giftmessage.php" hash="796fe5742a45875a56b887211e73131e"/><file name="History.php" hash="f72d14fa76b79f98dbb7890902fd907a"/><file name="Info.php" hash="b184bfb54420c66b14cbad35ace55488"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="4938c018c27f321c7f7e37396aa5b45a"/></dir></dir><file name="Items.php" hash="cf9bebcdf82f5730d8782b4a004905e0"/><file name="Messages.php" hash="544b99086603fa55d21a741f4a8f5240"/><dir name="Tab"><file name="Creditmemos.php" hash="b0f5aa766ed40842443afb72d214c938"/><file name="History.php" hash="d3a33fbc71c5621f0f0d5d8037229756"/><file name="Info.php" hash="c8b8cf62622ca340402e7a04d5bda990"/><file name="Invoices.php" hash="f758b8b2d6664a2790c81c426e22644d"/><file name="Shipments.php" hash="d574a46ecc2729c0181ddbc118475f17"/><file name="Transactions.php" hash="57773e37ee5c155fbcbaad5b2407dcec"/></dir><file name="Tabs.php" hash="5f67a7d3e773be25089aea32d00562ca"/></dir><file name="View.php" hash="c8edb312bae910880545ae391c4c9595"/></dir><file name="Order.php" hash="809c500a091fe4905fa014e8386e6308"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="3990ed6ccad89662d91b90075fe90baa"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="21cc978dfdf6c8094db951a752d4d21f"/></dir><file name="Shipment.php" hash="75180bf41a7bde2520f5cb12ea9f07a7"/><file name="Totals.php" hash="5a82628cad267628ecb034c4ec3c70c5"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="4996a2752cfe112fe1607531117fffa4"/></dir><dir name="Detail"><file name="Grid.php" hash="017a53abc12f697bea3591d25edcd134"/></dir><file name="Detail.php" hash="c78800ebb44f0afb963adb3b9ec592ac"/><file name="Grid.php" hash="b4b03fb489952093e0ddd91e01f99c71"/></dir><file name="Transactions.php" hash="7b5c11f52c24df60dbfe6c51bdd1740f"/></dir><file name="Sales.php" hash="edf8309ebeab6fe33dd95600cd03034e"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="662ac71223b80be508e2c0bd50a97f97"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="86bb6acdbb125e28c6cbd67e5119159c"/></dir><file name="Edit.php" hash="6a30b2098d853845d158a087f4bba45a"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="34371c9777b58e4f00227c78e0fd9302"/><file name="Link.php" hash="07c72102b172f7d55ae9adafa8d09732"/><file name="Time.php" hash="7764d3a08592fd675ff23a2a3663a8e1"/></dir></dir><file name="Grid.php" hash="207039bfb0d3fb22acdd6bd160adb76d"/></dir><file name="Sitemap.php" hash="4a7b7a1ca8fd19c7592f53ad8c1e44ca"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="88c62f91c3602b855deb84ed5e60a7ce"/></dir><file name="Fieldset.php" hash="117aaff821f31808393ec06661eccccd"/></dir></dir></dir><file name="Switcher.php" hash="ec8470102402dfa196a50c8fb5bcc764"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="fc05abc4def5812044d7c9b873c61d30"/></dir><file name="Edit.php" hash="c04c11673816a8b79110afa6d77f7f1a"/></dir><dir name="Cache"><file name="Edit.php" hash="0a21bccbed3271e167bc96d22d0947cf"/><file name="Form.php" hash="ed570d7670fce0cfaa885ebc1dd2ce50"/></dir><dir name="Config"><file name="Dwstree.php" hash="71db90b52743d8a0da11b8a4d24428a8"/><file name="Edit.php" hash="3b6742af7962cc5529224faee5081a1d"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="bb3db1b00fbf6eeb835501d6e83e6f6c"/></dir><file name="Datetime.php" hash="ae7c542c79e6cbae90119ea45cc99099"/><file name="Export.php" hash="feddb5223bfc29ac4ee843ebb47270e6"/><file name="File.php" hash="175d61fe48f5aa979b751f256409a33d"/><file name="Heading.php" hash="3f8d37900b6f4f722863bd435d8912a9"/><file name="Image.php" hash="bcd01f2329bb1389fa88cea69b9234bd"/><file name="Import.php" hash="487c7eab2917ad145d453f9877bf6d75"/><file name="Notification.php" hash="cd5e766dbbf522f9a5df1623ea107e5f"/><file name="Regexceptions.php" hash="1afb23fe757a06e30af5da84415e75e0"/><dir name="Select"><file name="Allowspecific.php" hash="20c37fe6a0da0066bf3d7e6c63758f44"/><file name="Flatcatalog.php" hash="482e52c560be75ae8a37c6a165372298"/><file name="Flatproduct.php" hash="03487cec9d96579bf74bb10c893236d5"/></dir></dir><file name="Field.php" hash="b3427c4f737b4c19556b9988f0afb2b3"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="70f3a5518c22c376933b14da3c248ae3"/></dir><dir name="Order"><file name="Statuses.php" hash="2d2ca3d0d90766d2ec167e1ea05924e7"/></dir></dir><file name="Fieldset.php" hash="c60c819c5dd16929b004e7e46f7eb8d0"/></dir><file name="Form.php" hash="7f2babe63f8ee6930af3cfde34bc405e"/><file name="Switcher.php" hash="d1c13ed50c2ec89504cd270a0d9610e5"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="83bcdcddba34213ba77a08fdf7e55d8d"/></dir></dir></dir><file name="Tabs.php" hash="60abd7652c4e417012c0e70b1cee8805"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="9bed4e1709b7cb11fd81db2e50e0fcd8"/><dir name="Tab"><file name="Upload.php" hash="a705ed7b82f571af858e19736f34d81d"/><file name="View.php" hash="848d387575c4483ef11d76a8e6bd8014"/><file name="Wizard.php" hash="36c985c4c43ff82668b9cab269ddb640"/></dir><file name="Tabs.php" hash="ab5cefa4001226f69be3aefdea77f639"/></dir><file name="Edit.php" hash="85b13a3d4080368597c74f0b1d9db436"/><file name="Grid.php" hash="01b8b912ff4941b4e86cf8d1aa805ce7"/></dir><file name="Gui.php" hash="830a2e87bd6e3f2fffab050002ba9508"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="351974be84c121a86145196c22a1dd4a"/></dir><file name="Form.php" hash="dfbc46ae10487b7c4117d449b8e6a16b"/><dir name="Renderer"><file name="Action.php" hash="b92f952011652d1e80a691e23f68cd2f"/></dir><dir name="Tab"><file name="Edit.php" hash="015a750d00160cecde022a2512205e16"/><file name="History.php" hash="26fa1dd0b5078510b5493fdacc10d00e"/><file name="Run.php" hash="ad4cd5ad7ed57b650968e601b01adfdf"/></dir><file name="Tabs.php" hash="3973b6ae9d5017ff6ce5dee81b8d47fd"/></dir><file name="Edit.php" hash="625f3e055895ec1f6617b9404795c500"/><file name="Grid.php" hash="47e8a56a7498993de8aec3f8e9a92d07"/><file name="Run.php" hash="e809d2af2b53c84ba1334b39978c4f10"/></dir><file name="Profile.php" hash="6988f2444e05f2959b4a493a7a71ab78"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="0b218d26cc8c265bb1182c45faa582db"/><dir name="Tab"><file name="Main.php" hash="6227018fdf1c0de00c0bb5a96edaa142"/><file name="Rates.php" hash="672212313e91bdd0c98a1960152e6d87"/></dir><file name="Tabs.php" hash="5ef967a7eae80b319755d17d1a5ed624"/></dir><dir name="Rate"><file name="Matrix.php" hash="0df3740f8b98b48affd96bba1866864b"/><file name="Services.php" hash="ff581dd71235e96d10127ce9b541b187"/></dir></dir><file name="Currency.php" hash="22db92e147ce56217b87360102a806eb"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="70145a86d112b2a809b50537ca2a9bfa"/></dir><file name="Tabs.php" hash="ca75118365f912aa522ac2aa9ddada57"/></dir><file name="Edit.php" hash="b8fbfb0bd2afcbcf049361db3ce806aa"/><file name="Grid.php" hash="7a03f6aeae0bd76a01177724e355f295"/></dir><file name="Design.php" hash="977bb4de279f50e31017d2021bc689b2"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="19b18d04305b77aed32cb58bf2400fd8"/></dir><file name="Edit.php" hash="bc8f27bc2178b208e7522010ec69dc81"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="62a1496e48d2e7a0e8f55f77a87b060d"/></dir><dir name="Renderer"><file name="Action.php" hash="d35b2956751409b6a8c6313310360ba3"/><file name="Sender.php" hash="bbb6ffb031bccf24c57895b245869962"/><file name="Type.php" hash="4301753a59350ffb244e1698b4d14200"/></dir></dir><file name="Grid.php" hash="98b174917909bbc99175564b3d21ef9e"/><file name="Preview.php" hash="839c2a3b2b2c380a596b498f28bce75e"/></dir><file name="Template.php" hash="242f85e7eaaa998d657b8ca5de1b7a0b"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="7c7f76148d9bb3fb97ead7a901a742ae"/><file name="Group.php" hash="0615f4a4ff2733bb41f16de41260aa2d"/><file name="Website.php" hash="2930165d09ed1fbd65c88dce4fc29a34"/></dir><file name="Delete.php" hash="ec18681aec75bbbb014edd396aa0c425"/><dir name="Edit"><file name="Form.php" hash="5762c0d055ac8cbb0805ee836529c137"/></dir><file name="Edit.php" hash="b17cdb08c158b8950ce634140150d2ec"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="ebf29a396e6c18c8c838c01178f3a830"/><file name="Store.php" hash="5ace4fa711ea50deb526f9effa93fa16"/><file name="Website.php" hash="4e4ecfd22d281bcb15c65d4e1749b670"/></dir></dir><file name="Grid.php" hash="f542b6fa1dd2b43ea94b9e2e51c3edee"/><file name="Store.php" hash="133f8f13b25771734dd1382660153f67"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="a8f9565984eaf2693ba0d6a04b37351f"/></dir><file name="Edit.php" hash="2d8b98565e0e0b0c849935bd3ae556a4"/><file name="Grid.php" hash="7183f511e5a2bbd92fc18a03ed93f31e"/></dir><file name="Variable.php" hash="38435c7e65a746f3b9293814b16da15d"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="7c8dea62d4051f8e03f9f198969091ae"/></dir><dir name="Customer"><file name="Grid.php" hash="331dd2fdb9a484f20bd966b301d1947f"/></dir><file name="Customer.php" hash="e89ae9f629d2fe6f4e542aa1078e6162"/><dir name="Edit"><file name="Accordion.php" hash="527555853d01fa09f50418c172988703"/><file name="Assigned.php" hash="a544010b175822f985096a5d2f957b70"/><file name="Form.php" hash="79c0fa81afc37d5404e0a4fa1ec1ea59"/></dir><file name="Edit.php" hash="9ee9ad5d3e0dcb1ff339ad00d7b73f0b"/><dir name="Grid"><file name="All.php" hash="32eb07e21a0fb62ed4119fa1fcd48f5b"/><file name="Customers.php" hash="57db1c5339cebdd6b538baafc560a8ae"/><file name="Pending.php" hash="33163c2bd7f5832518b6f505364d97a2"/><file name="Products.php" hash="03723d3284357432172e2b2dfcb411f6"/></dir><file name="Pending.php" hash="22d625309bbaeb4a30cb27100880e2b9"/><dir name="Product"><file name="Grid.php" hash="97dfcd5df83cc212411871a21340c37c"/></dir><file name="Product.php" hash="e4d1e3d51e7da99bf704227013dddfc6"/><dir name="Store"><file name="Switcher.php" hash="5a71155e05cba303869891543c27db7b"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="52cacefc9b23b9f47d4845ea3115291e"/></dir><file name="Edit.php" hash="86599e182ab4e361eb78dbe58416ae40"/><file name="Grid.php" hash="6959b8ca772dfba3d83109c6a30b656b"/></dir><file name="Tag.php" hash="a872226278779df516dac2ae8edc896e"/></dir><file name="Tag.php" hash="8468bdb90ba6a58dac7d3928845c6411"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="b00c1d8c4988acc37af441cde81180ea"/></dir><file name="Edit.php" hash="920f4c91a2f270039e1d4de19e400151"/><file name="Grid.php" hash="65edf90da61d2821fb3f36936edefcec"/></dir><file name="Class.php" hash="36827ff472153548bf74bde1fc7f906c"/><dir name="Rate"><file name="Form.php" hash="b432af44688112329f50f6c234e1fe22"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="1c0119b6e19a54ed863ec8a302ca6345"/><file name="Data.php" hash="f4ceed0eb0482bfd24dfd8ec8caa4fd6"/></dir></dir><file name="Grid.php" hash="19463d9273d58982d49617b599aa0548"/><file name="ImportExport.php" hash="e3fe435dd21e72ff338bc749d4729142"/><dir name="Title"><file name="Fieldset.php" hash="ff48b81b25f77ef699b1ef2fe99c258c"/></dir><file name="Title.php" hash="eeee86ed3a1c86eff652795eb6d0fa6e"/><dir name="Toolbar"><file name="Add.php" hash="591c52520703ca76a27218c457ac8c1f"/><file name="Save.php" hash="630a0d3d307681a31955a9e29190579c"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="9da981c87c9790bf3296add4e8857cf9"/></dir><file name="Edit.php" hash="9492e549f77795bb464386108dc01918"/><file name="Grid.php" hash="1af7ec8d3c9d6dafb08b42f1cb08f18d"/></dir><file name="Rule.php" hash="76767f20fab57c0cf5a0c6ef545af464"/></dir><file name="Template.php" hash="769b1180c6d2a13ef3c389be67d99c33"/><dir name="Text"><file name="List.php" hash="46ae4729ef1d0eb11897e241945927e1"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="462c6c2d07515df7ad68c0b8eb9a5ac4"/></dir><dir name="Edit"><file name="Form.php" hash="7f0455917a3fa36da50ea3c42c8590c9"/></dir><file name="Edit.php" hash="12512b60886a0c0ac197589f284a314d"/><file name="Grid.php" hash="4438429c1fe8deb5428a0346fd21b27d"/><file name="Link.php" hash="846128ed934143f48e03bd34bdcff86e"/><dir name="Product"><file name="Grid.php" hash="2bc055c61962cb65f9f233be4cd35873"/></dir><file name="Selector.php" hash="7b0f716faecb9e756886ed1092b4e463"/></dir><file name="Urlrewrite.php" hash="ef7fb4e75ffa6e8da1fc3126638390e0"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="ffcea17e2cb72a42416e298b0d052ebb"/></dir><file name="Accordion.php" hash="74230faf0ce077bb4aa9e9c5d2fc748d"/><file name="Breadcrumbs.php" hash="de4ced495442b9fbb59d41ff4f34a759"/><file name="Button.php" hash="aed450a5b167d3fb0168ffd32aa8546b"/><file name="Container.php" hash="a061486d4b4e9f5ea300678e6f7b8c50"/><dir name="Form"><file name="Container.php" hash="f8ec6f2ec0ad5a5a928c3b623943255a"/><dir name="Element"><file name="Dependence.php" hash="9ca180f8a2076620867cdfa6e5e9a9e7"/><file name="Gallery.php" hash="988530a1a877d3abf7a83d91d1f1c5ef"/></dir><file name="Element.php" hash="2535e979989c105437a55499ed52a9a7"/><dir name="Renderer"><file name="Element.php" hash="7f63ac885a516eca0dca7fd1cc79704d"/><dir name="Fieldset"><file name="Element.php" hash="929019b5574fce79cc836e919be9148a"/></dir><file name="Fieldset.php" hash="e50e6638abcc369e49158c489e8b5b28"/></dir></dir><file name="Form.php" hash="6d4e2bca75f0706d80a237d88c972154"/><dir name="Grid"><file name="Block.php" hash="b66c11fe8f4b19cc57f25f3fa23b9076"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="dd49d09cfcaab77c9d380c1d7a1ef4b6"/><file name="Checkbox.php" hash="a85c69b2abd43fbffb1e1dfd09f6cc8a"/><file name="Country.php" hash="02c04353dde7e3203305224274197954"/><file name="Date.php" hash="10a751a02d5a7d678708a651792150eb"/><file name="Datetime.php" hash="68a3847ebc47e57c5425b5a4d6657892"/><file name="Interface.php" hash="dcbdfc72eb0f75c8eb6b6f396116a7f3"/><file name="Massaction.php" hash="659994ae6abfee01168828757fbde085"/><file name="Price.php" hash="f989995be3439b9e3420f6d38e8af004"/><file name="Radio.php" hash="4ec1066639e7d5c74d95e65fdf79cf4d"/><file name="Range.php" hash="87e68bcd02eda31b2af973c8df05710b"/><file name="Select.php" hash="193a4c5521343268311cbf6b2276fffc"/><file name="Store.php" hash="3d82220f9b0783d45248f91ff0b23189"/><file name="Text.php" hash="ce3c227b7e0ff2e33858f0ed23b9af0e"/><file name="Theme.php" hash="a03590dab4bfbbc4c4826e8ecf0ba311"/></dir><dir name="Renderer"><file name="Abstract.php" hash="5023b01a262e2e3cfe2b432f26f76471"/><file name="Action.php" hash="e9753829a758fb6bff0ec0f4e5fffebe"/><file name="Checkbox.php" hash="71454a260b6181d26b69b83904f0eba5"/><file name="Concat.php" hash="dc34c16ddd23c4d53bacd6f658e5ef6a"/><file name="Country.php" hash="6cdfb116ce6955785e9ef07491c578d8"/><file name="Currency.php" hash="7266fb8583836db233838da9c59376b6"/><file name="Date.php" hash="646c7a389dc11e3f2cd85a41aaa55ecf"/><file name="Datetime.php" hash="b2b7c5f394bed6968fb091f6222ecccd"/><file name="Input.php" hash="62512b563ad5f313e7b8e9bd11f882f5"/><file name="Interface.php" hash="20459fc72a684aa23099ef4a1c2ffb6c"/><file name="Ip.php" hash="a87db675e939344676304780738b4b88"/><file name="Longtext.php" hash="8ea589d3a1c49d7cae1d1f938bd1e876"/><file name="Massaction.php" hash="b5be3c32f3834498a57211fca99aa573"/><file name="Number.php" hash="004014f04db0066be596f18bc677f00e"/><file name="Options.php" hash="dd4340697c5d1ae5e27de9cde79dc305"/><file name="Price.php" hash="f20ce3741d733433e00098ab9d5de6ab"/><file name="Radio.php" hash="9ebafbcc643eaba1a741871349c87bed"/><file name="Select.php" hash="fff0f4276ee8dfaa0f1f477f89b6a870"/><file name="Store.php" hash="8afeb271a3c9910ff81eb94d6c403f6b"/><file name="Text.php" hash="1b9e0375daa5b6b10bacb05c2be68ec5"/><file name="Theme.php" hash="d642114e093c7a780b8eb9d5ba8d1aac"/><file name="Wrapline.php" hash="008bb042fae88f87a132b9221401e42e"/></dir></dir><file name="Column.php" hash="f8d8f5c6cf044fc1f1354e8e6e7aece0"/><file name="Container.php" hash="493c64be0554e5a72eaed059bebad98b"/><dir name="Massaction"><file name="Abstract.php" hash="f2c5b20790a313408eb063135d66ed64"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="d0c12003c681e0c4e8575de41c7a1f67"/><file name="Interface.php" hash="f93f5f1b21540c8d86f209cc47854265"/></dir></dir><file name="Item.php" hash="f67082cefc7354af45036064b2eed475"/></dir><file name="Massaction.php" hash="43acb4376980dd09746cf2d7e3acc5ff"/><file name="Serializer.php" hash="554499a973fb572fb1e16a80bad6383b"/></dir><file name="Grid.php" hash="73de434df1a3598e6bc4f0ceb7aa14d3"/><dir name="Tab"><file name="Interface.php" hash="3cdbb7f8f2f3fbdefa553b578aa802f7"/></dir><file name="Tabs.php" hash="d40419e2eef725333835864826984791"/><file name="Tree.php" hash="03d655c8233d4263fc5c8a6b6ea90896"/><dir name="View"><file name="Container.php" hash="f35c7e09526af990ac8aa5f3ebe7ccdc"/></dir></dir><file name="Widget.php" hash="6114e9b299701d1e7cff782c54ce60b1"/></dir><dir name="Controller"><file name="Action.php" hash="3a9f7511ab3293d150446abb784293c0"/><dir name="Report"><file name="Abstract.php" hash="1487bd48071aa04462cef8eb3846ec92"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="29af0fa650ce1d5f0b67b0b135f166c4"/><file name="Invoice.php" hash="11e0efb6b9b68e425dbaac298cdd7fc0"/><file name="Shipment.php" hash="828706cbba092a90a960034882acfcdd"/></dir></dir><dir name="controllers"><file name="AjaxController.php" hash="f1777ea1cdb347a072a04fb861b07aef"/><dir name="Api"><file name="RoleController.php" hash="c82182fcc4828841648c4f53fda2beb5"/><file name="UserController.php" hash="ef284666e0d637d4108113e280283e3e"/></dir><file name="CacheController.php" hash="6aaf0bfb2d786dcee710bcad5db7ace3"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="03138bd9a16517988f0bdee225d19b65"/></dir><file name="CategoryController.php" hash="281fd0cd3a0b11782b76da4cc539a0f3"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="d83c7f23f0f161d1e885b9d792d0ff6d"/></dir><file name="AttributeController.php" hash="26d059a06f4ddb287f5635a588789660"/><file name="DatafeedsController.php" hash="168d80b71138ed106225d5f56b5d7daf"/><file name="GalleryController.php" hash="ee6ec7da1473ccbf6e3c7f67254921e1"/><file name="GroupController.php" hash="16e8323ce59809f6c40fe5f1e57c1171"/><file name="ReviewController.php" hash="2f5c1fc50aed5d470e742f05223975ee"/><file name="SetController.php" hash="70ab258bfe25ce6c8cbcc68fe56b1c01"/><file name="WidgetController.php" hash="a732ac69731348cbe4f2691ee7248392"/></dir><file name="ProductController.php" hash="4f71c28e31e3bb24d616824797067753"/><file name="SearchController.php" hash="745eccb882443e41ad649dfb3037cee3"/></dir><file name="CatalogController.php" hash="e84fba03e01185058d31d7f794be1f71"/><dir name="Checkout"><file name="AgreementController.php" hash="a7affd413a3c2fcdd80508562777b4a1"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="e8c4839dd6a307bd04cfb9b996908708"/></dir><file name="BlockController.php" hash="3304cdd2ae9ec78052d6f66e42b34a98"/><dir name="Page"><file name="WidgetController.php" hash="fc62fd6371698e17bd5f91d9e4deeed9"/></dir><file name="PageController.php" hash="521f7f0b184bd915d6cd5a2d2021cfc9"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="17793668232948500ed8ac8bebfd4519"/></dir><file name="WysiwygController.php" hash="adb54dc262de8aae68e0a66ab736c120"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="11e0bc9422fd69b8afabb7bdb1549dea"/></dir></dir></dir><file name="ConfigController.php" hash="cd7984dc23fb2c74e3a1f2b8e1e2ce77"/><file name="GroupController.php" hash="643a5851af48f0063f7a8a6ab277562e"/><file name="OnlineController.php" hash="3d868cbe5126bc304e6dec6fbd7995ca"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="a042f8b540c149863ca62c5bdc48caeb"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="7915e56dfd9de3270b5fac8825ced4a8"/></dir></dir></dir></dir><file name="CustomerController.php" hash="9944ac47cbe9d69f4071a0fc6ecf0f86"/><file name="DashboardController.php" hash="36839c4fe9a0efdfa0998175acd5af55"/><file name="IndexController.php" hash="99dde1cbd9b2c10c4768ae7563170040"/><file name="JsonController.php" hash="120772b9a4c6785f17e61fc52f6accb8"/><dir name="Media"><file name="EditorController.php" hash="cdd8c7edcadca9f2e9691e2f1fe30de2"/><file name="UploaderController.php" hash="bdfb5dc56dd5a3f2e6620350dfb29b58"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="09132d9870212ba25528a8b7bd9fbbdb"/><file name="QueueController.php" hash="3fbfd9ef8a7dc0d764f0c6c4a7a5f24f"/><file name="SubscriberController.php" hash="e6778ce9626a59ff28e6bdb978e0807f"/><file name="TemplateController.php" hash="ad3416aa8cdbf06a6abc888da02a560d"/></dir><file name="NotificationController.php" hash="38fdb06a78642d335d84394bdc0bf9dc"/><dir name="Permissions"><file name="RoleController.php" hash="c4603a2d9e5e35a969df5e50b65c6b95"/><file name="UserController.php" hash="07517e0e91c70b0e1460dd1e0d9df04e"/></dir><dir name="Poll"><file name="AnswerController.php" hash="acdc42fb73ebdaf2c5b9d90101ed17fa"/></dir><file name="PollController.php" hash="f5ab032a6170820af7abd980832678c0"/><dir name="Promo"><file name="CatalogController.php" hash="22dce2b5b6b3b064c6c9231a6a2f9833"/><file name="QuoteController.php" hash="8c51fc4e9dcb2bd174db70cb90277b37"/><file name="WidgetController.php" hash="e1b27463665e92e94e50e83e6ca667a8"/></dir><file name="PromoController.php" hash="8e1f2bcd2a9eda1c244353876fba39ff"/><file name="RatingController.php" hash="94f531c63dde06250950804ceac95bee"/><dir name="Report"><file name="CustomerController.php" hash="42b56c59327a8c230475d64f7139a151"/><file name="ProductController.php" hash="e221bd02418bbb7fb9e0a12edb0acd15"/><file name="ReviewController.php" hash="796d65bf7549e8f3b9391c39a32d6782"/><file name="SalesController.php" hash="5a5d26696e99dbcdc6ff620978e8e806"/><file name="ShopcartController.php" hash="cc3cee8a44e17de72c8554c4d3aa0514"/><file name="StatisticsController.php" hash="6e0a78fbc4367125b8ce577c6eac1900"/><file name="TagController.php" hash="dd1345e50d9588c98559c9475df13007"/></dir><file name="ReportController.php" hash="e7f0ebf457355927b3712b14b786edeb"/><dir name="Rss"><file name="CatalogController.php" hash="cc2e9f5aa9db536a6abd4cb9c8a63ca3"/><file name="OrderController.php" hash="232a467f5002da631393dc1c06689142"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="0a5ee097331079eaabe5434bf7f1afdf"/></dir><file name="CreditmemoController.php" hash="c7fdf924ac5432c8c804429c5d537349"/><file name="InvoiceController.php" hash="a8e2f0f4591d9f56e56ef7ead27a20b2"/><dir name="Order"><file name="CreateController.php" hash="de7b73b62ddad186a3908e5ecef3afe5"/><file name="CreditmemoController.php" hash="55f6c8317e06ec4ca283dd2a6a14369f"/><file name="EditController.php" hash="054e551a299bd5f5891ad28d24220aa9"/><file name="InvoiceController.php" hash="2b8e5d7277090c19bf86dc990edcd312"/><file name="ShipmentController.php" hash="49a2173f68e21205e217ebfa19d55c29"/><file name="StatusController.php" hash="2bcf5920d894f9db7f54445a4eedfd88"/><dir name="View"><file name="GiftmessageController.php" hash="d2a0f33849b37b566a9dd1f4a351ed93"/></dir></dir><file name="OrderController.php" hash="e6fac6753a2379de0362700e217abd0b"/><dir name="Recurring"><file name="ProfileController.php" hash="71f41be78f5b4e13a9fe76ed8ca550be"/></dir><file name="ShipmentController.php" hash="69b87214408e7d99b49b4208df7bf915"/><file name="TransactionsController.php" hash="f5edc1406a16d69db4e1b81467075fab"/></dir><file name="SalesController.php" hash="8598000fe2a0f9ec98563727ab8b1475"/><file name="SitemapController.php" hash="df85db2f3cd41e9963e5aa4865ef3e9e"/><file name="SurveyController.php" hash="ef35d1d2bed55461ac8d1e23709152b3"/><dir name="System"><file name="AccountController.php" hash="acd8e6a411a46852fe6b57ed00de02d1"/><file name="BackupController.php" hash="f8603f85c21709d90248bd316ca963af"/><file name="CacheController.php" hash="d1addf8655272a012bc9e1b2e2c0fd7a"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="29da217c4a5dcc78e1c42bb11bb33ede"/></dir></dir><file name="ConfigController.php" hash="ef22783dfc4c29d48a336c06ccc13bf0"/><dir name="Convert"><file name="GuiController.php" hash="10e86d4ca439a29757517647a1c6c875"/><file name="ProfileController.php" hash="34e86d184b991b6395ee73f94292a05a"/></dir><file name="CurrencyController.php" hash="5d1eb0bb06a0b0926aef7b3e058b1d31"/><file name="DesignController.php" hash="a74cd7d666491588b39853d480715b3a"/><dir name="Email"><file name="TemplateController.php" hash="1d8273321c6eb996d5700797c018bfb9"/></dir><file name="StoreController.php" hash="5810a89a6e8df566883b5f0a6510dbf8"/><file name="VariableController.php" hash="76e80c14da111dc3097336e16e3311c4"/></dir><file name="SystemController.php" hash="0c3f1841ae54408088be89d9284ecd67"/><file name="TagController.php" hash="2b75039572cf9df0e30f72b65c59d14f"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="a8f8b157d906778080e16521846a1632"/><file name="ProductController.php" hash="a4c473224eb0d9a2bf5d88d4be4c172c"/></dir><file name="ClassController.php" hash="c82ab6e29108cfad3f1771c13519fb0c"/><file name="RateController.php" hash="d53943c41850f999482457a36cd69892"/><file name="RuleController.php" hash="774331ad170045e420e2db7ee08ef88e"/></dir><file name="UrlrewriteController.php" hash="de3c6de21b59bf9bc6b17f92cf25a828"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a86cda1acc07a5a0daf2733c625aba8b"/><file name="config.xml" hash="041bc63712cc3bdff887067e29a72858"/><file name="jstranslator.xml" hash="afac1927acdcf8472de935f56d3d0291"/></dir><file name="Exception.php" hash="8711d958c3bacebc981866a3bd419792"/><dir name="Helper"><file name="Addresses.php" hash="5d6411672017f16899a26efb2b9a5df6"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="23fb7ab9797af76c1b072f6f9ff7a330"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="019c217e1af30357a08f48ecd6cc87d7"/></dir></dir></dir></dir><file name="Catalog.php" hash="ed5000e6a38a726a268cdb577ab77b30"/><dir name="Dashboard"><file name="Abstract.php" hash="76863694a0755be7d062bccdc4d5428e"/><file name="Data.php" hash="8fc3f29c76730f635f8f5cf1cf586b4d"/><file name="Order.php" hash="918be1308e18232c53f959c22acc39bd"/></dir><file name="Data.php" hash="6dc51fb9e0643194a07305cbc98ca3e3"/><file name="Js.php" hash="d3f8f9c50e8413fbb72da4a2849418e7"/><dir name="Media"><file name="Js.php" hash="d5e68167a9edf05f589d057c2f959e85"/></dir><file name="Rss.php" hash="5defe8a706d1222699adea617eaebee3"/><file name="Sales.php" hash="94b96ea48498daee545e11809accd173"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="1fda1dd48ef5c5f30d77485d1cfb7ff8"/></dir><file name="Config.php" hash="d1a67e7fe005b5b4be81c25595b807b0"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="de91fb15a14e5531ad47f2bffe15f9d9"/></dir></dir><dir name="Email"><file name="Template.php" hash="b7d97164f88d467f9be4cca1ce2ba6b8"/></dir><file name="Extension.php" hash="528095ab59f532e9a19fb67ea04b873a"/><dir name="Giftmessage"><file name="Save.php" hash="96361b1ac08083d30230e5d8f57bbad2"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="cf10cfa07b7fb5fe5ea03978c2c6466f"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="130e9689d27af3c9ae0c9f6f8b9a7ad5"/></dir></dir><file name="Observer.php" hash="6a6b2129dff08f8b85c292c174a680e0"/><dir name="Report"><file name="Item.php" hash="4587ea582fcf8c200213ae64e789ec82"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="69101280a3c40a92902905d25ea8abcf"/><file name="Random.php" hash="7d357780232a37d8f4ab6b69ddfa12fd"/></dir><file name="Order.php" hash="662457ceb6a98c870443b051b4fc55d4"/></dir><dir name="Search"><file name="Catalog.php" hash="0866d393b3970350afa2306e9f55e44f"/><file name="Customer.php" hash="a60025e035288a87284ed789de04fe20"/><file name="Order.php" hash="e6fd7d47b0e81c14afec35f7011bfd47"/></dir><dir name="Session"><file name="Quote.php" hash="eef6af9dffd5fb3a3e050cd50fd7cf69"/></dir><file name="Session.php" hash="2f2f49c24687c5a42e597e283fe09ce7"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custompath.php" hash="33f26684dea4d3b8fb9736023bcf76af"/><file name="Custom.php" hash="089ccc7e875c9f36cde3ae5f84e145c2"/><file name="Observer.php" hash="37815760558f61fef9d641ebb8aba581"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="3b30bf0c1871ec5603952800ed4e00b8"/></dir></dir><file name="Usecustompath.php" hash="51c684635acd20b4c4f9664a780007c0"/><file name="Usecustom.php" hash="7f72ccd57a4f7991636aaa01a8ed4368"/><file name="Usesecretkey.php" hash="0b577d047099b106d4409acec1b5f674"/></dir><file name="Baseurl.php" hash="46883bc88568a5f9c7b67c7bba93da04"/><file name="Cache.php" hash="80c6d45dbd7cce845458d334810d7dd8"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="c31e060c2eaee513a20f34111f4f2b98"/></dir><dir name="Search"><file name="Type.php" hash="1d34e93cf636142c4483235fab9a693c"/></dir></dir><file name="Category.php" hash="972a90c42ed1c97c6edc389bfbbf0e7a"/><file name="Cookie.php" hash="2d6d37619895ef27813a606f8253646c"/><dir name="Currency"><file name="Abstract.php" hash="96b35b725a756c08cc0443244d56a84b"/><file name="Allow.php" hash="3ec7d7b1c21c56ec1f31595ee4e3067a"/><file name="Base.php" hash="7e8aa2d76df0def3da09560654d79827"/><file name="Cron.php" hash="c29980353ebd21df66968e95cce7f2ff"/><file name="Default.php" hash="76c773f92fbb21564575c6d4c8684c66"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="40c936f57ae7baee8cb5b3cf4e9be704"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="69aded43263bb55473df87b081260071"/></dir></dir><dir name="Show"><file name="Address.php" hash="de3ee446eaa918dd688a3fbd86a01a19"/><file name="Customer.php" hash="6e3f86c0131fc1400f82425a488553a3"/></dir></dir><file name="Datashare.php" hash="fd455810c32efb1250ee1aa238ce9c62"/><dir name="Design"><file name="Exception.php" hash="0d219b40762ae3ed931213f0749b2e9c"/><file name="Package.php" hash="88cf23890c4814367f944504482b55a7"/></dir><dir name="Email"><file name="Address.php" hash="025de8aa7bb9329cc1a1f2330bbc5e6e"/><file name="Logo.php" hash="20e9b951f5804322bf70e9ee90fe570c"/><file name="Sender.php" hash="b52bbf40f1589b60c092a972296680b7"/></dir><file name="Encrypted.php" hash="ba6ab9cd3c527d8581db2634d7b87483"/><file name="Filename.php" hash="118d549de1ff38a7a11c6375b6214b63"/><file name="File.php" hash="192df84088f62e728c6af21e1ed1205c"/><dir name="Image"><file name="Favicon.php" hash="4955e8a4566945f12397cb3d99ebe239"/><file name="Pdf.php" hash="0799c47bbdad8d3798689acccef641ec"/></dir><file name="Image.php" hash="16ef8b48c83883f9d4a5e0bff894298e"/><dir name="Layer"><file name="Children.php" hash="0a191a45eb3d8845bacb5694b4e52b49"/></dir><dir name="Locale"><file name="Timezone.php" hash="d3d22f890f988b770ad5727b098b1a70"/></dir><file name="Locale.php" hash="6e28e5969976e737a3838a5768c3f7ae"/><dir name="Log"><file name="Cron.php" hash="a5868e196d1e46d6abd146c22782c906"/></dir><dir name="Price"><file name="Scope.php" hash="3167e244c91d964b5e38ecb0caea25c7"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="8c23f2af4b5132cc00a887fce5be32c4"/></dir></dir><file name="Secure.php" hash="213cba7f8e5912966efb70923acdb6b1"/><dir name="Seo"><file name="Product.php" hash="981f60437425e4ccc00e86d618d674ba"/></dir><dir name="Serialized"><file name="Array.php" hash="3d22345d60f724063a6c234296da0ee5"/></dir><file name="Serialized.php" hash="59dabdf0d417236041f32f433ba9972a"/><dir name="Shipping"><file name="Tablerate.php" hash="e1adb525f2b169e0498ee7168ce42e8b"/></dir><dir name="Sitemap"><file name="Cron.php" hash="e1d24bc3ec43c98097749e65a821bdfd"/></dir><file name="Sitemap.php" hash="9ae0784cbc77f726b81fe946e73d1f37"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="b70dc6bc636176802e92c57ac34cac52"/></dir></dir><file name="Store.php" hash="825764f0922ab3b722ede0e903fa675e"/><file name="Translate.php" hash="39d97929caa3817a47e745e3c8194dbf"/></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="654b640fe2489da2797a487ddec99e03"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="575965671564d8a2f1c81650f4e6a30c"/></dir><file name="Allregion.php" hash="267b5814f6aebf3fae63163875213e93"/><dir name="Catalog"><file name="GridPerPage.php" hash="f0957fddf9dab15efb524bf49b841454"/><file name="ListMode.php" hash="4b61d8bd4a9b1256d280299ed759b0e5"/><file name="ListPerPage.php" hash="522408a02f9ccb772f11ccf19396b373"/><file name="ListSort.php" hash="de86cef5858a88f9462b845bf243543e"/><dir name="Search"><file name="Type.php" hash="3a0186df41871baf7b49329dfefbd692"/></dir><file name="TimeFormat.php" hash="8364c02d95ead25aaf3182621c6bbaf1"/></dir><file name="Category.php" hash="dc4491c363b81d92d8caed11cdb15781"/><file name="Checktype.php" hash="200936fa7121bb16a0669f4488f25541"/><dir name="Cms"><file name="Page.php" hash="10f3c573d3ecb9222687093c31058b4e"/><dir name="Wysiwyg"><file name="Enabled.php" hash="2077d03c4058539fd8351fd9c0401a40"/></dir></dir><dir name="Country"><file name="Full.php" hash="a919d975f0048e5eb4a70e24daa09b7a"/></dir><file name="Country.php" hash="64b1d5c0d561740bbe12b117f36514cb"/><dir name="Cron"><file name="Frequency.php" hash="4085ad8d86c8c71313c6793e68916475"/></dir><dir name="Currency"><file name="Service.php" hash="f418d52848ff92162c3bc1a27ec3e7d9"/></dir><file name="Currency.php" hash="d35b0bdbbe9181d24bbd8de6f78629a2"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="beb8f8c0dfca02a1db523ff9fa1d93d4"/></dir><dir name="Group"><file name="Multiselect.php" hash="540dcb8a84c07dbd2849d614a2a2d5bc"/></dir><file name="Group.php" hash="bc6f24b6d810def507e10fb3aaa70301"/></dir><dir name="Date"><file name="Short.php" hash="a6a324603a276ce919137ccd383c15c7"/></dir><dir name="Design"><file name="Package.php" hash="3b0f0eaa37d1503695cde1a28e8f182e"/><file name="Robots.php" hash="9a58c1a52ec10f32dc5ca71637a4eda7"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="d619a56dd93f7dac6f766f80b7603cfa"/></dir><dir name="Email"><file name="Identity.php" hash="afcba708953b5c8ced9c9e91a159c0c1"/><file name="Method.php" hash="5a668d484a5c748bfca7901fc16e14e9"/><file name="Smtpauth.php" hash="e01fb631b6ee22822b5e5a6545d87238"/><file name="Template.php" hash="68d0e3e76f910052fe1cf0444557a70b"/></dir><file name="Enabledisable.php" hash="ffee349864c0f76da5d1c04f67e1a091"/><file name="Frequency.php" hash="a9e5129620d70d2610dbf215af9a2eed"/><file name="Language.php" hash="b6e26de17d96986c5f8e60974061a90e"/><dir name="Locale"><file name="Country.php" hash="ef71cbee5bfd8a01fffb4b94a93d0663"/><dir name="Currency"><file name="All.php" hash="d1576d3a17e4bdd613110cdf05ce9cef"/></dir><file name="Currency.php" hash="018e7f238e82c4ead729ea37eabfb50f"/><file name="Timezone.php" hash="555b8345852ec57503f73e5ebca51b52"/><file name="Weekdays.php" hash="4dc96de3d004d0a13f85b2db74a604a6"/></dir><file name="Locale.php" hash="4f734232eec2ec6eadfb65483d2de9be"/><file name="Nooptreq.php" hash="62d2f183714bf3a76677d2ce89d0abc0"/><dir name="Notification"><file name="Frequency.php" hash="a3c54e206d9bcd5c2381b3912754639e"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="c2e9d7186e6ffd60de3f5d7842dcd9da"/><file name="Newprocessing.php" hash="0385ff3e72476ebbfef01e701f73913c"/><file name="Processing.php" hash="c6aa0b2f6b6b67deb97710f48757eff7"/></dir><file name="Status.php" hash="60f6a01dcbc0176b7e3c89a72045955c"/></dir><dir name="Payment"><file name="Allmethods.php" hash="3676b52a87669b1fe719d96ed26906cb"/><file name="Allowedmethods.php" hash="5c54998380303de84c4959025a0bf4df"/><file name="Allspecificcountries.php" hash="1c96d41b2e5d1975971de55a9c11b8ae"/><file name="Cctype.php" hash="db686b1c41418c3c444abbcf33016e3d"/></dir><dir name="Price"><file name="Scope.php" hash="52e34d323303f9893fbceaf2ee82bcde"/><file name="Step.php" hash="6e3144e7869bd4b86e9e2d9fedcbcf8c"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="621c6531014911943d8e26eb1a2d74d2"/><file name="Type.php" hash="b61680badb78655fb3f6b48f33332f73"/></dir><file name="Thumbnail.php" hash="cdecd9cb8539bb9893bdc7f4609f2326"/></dir><dir name="Reports"><file name="Scope.php" hash="2adbf471c9c2ed0e98ff7c9d99090a1d"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="840e59190535b9aa44820ef24a8bf8de"/><file name="Allowedmethods.php" hash="affe1705d1a5b8d06203a58544bceede"/><file name="Allspecificcountries.php" hash="5f7359341e6608d46730547f1846a95b"/><file name="Flatrate.php" hash="28a3e301eba9589d3e2128b579135c57"/><file name="Tablerate.php" hash="f6cb70a26987f4d5bf21f4e14c2b3de0"/><file name="Taxclass.php" hash="c37c1f14b93f9f57cb015a36699c8e61"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="a80225174c18c3d7236581d22cd47fbc"/><file name="Storage.php" hash="e2b63811fc79cd84bae23cdaa655895f"/></dir></dir><file name="Store.php" hash="8da77e59efb236dbd32a6bf404fd4b62"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="1da9f10687186974929b23f7cb7a72fd"/></dir><file name="Basedon.php" hash="039468a874c10dd3911e7229afda30c8"/><file name="Catalog.php" hash="dc709fc9ae1269bf4ff09c71a367cf1a"/></dir><dir name="Watermark"><file name="Position.php" hash="76e3b011648db676a29e3242ac9d94ef"/></dir><dir name="Web"><file name="Protocol.php" hash="712cee478a84fa431161999098ef9766"/><file name="Redirect.php" hash="95b100f80a9b9908bb7cc6a5e58e0e2b"/></dir><file name="Website.php" hash="fce2442cba397520c742ac3903cd4908"/><file name="Yesnocustom.php" hash="c341ffc353101f96ef9ecd1b0aa7c7ac"/><file name="Yesno.php" hash="1591a9f985f6a52cf878c47698fc9e91"/></dir></dir><file name="Store.php" hash="9bd64e79b131c8370f957199d0f8c5c1"/></dir><file name="Url.php" hash="f8bc5bc6abd0e70f060d8db0b5e0531e"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="4424e8ffb616881242a4826f4abe9eea"/></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.7.0.1</min><max>1.8.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>