Ultimate_ModuleCreator - Version 1.6.3

Version Notes

Bug fixes:
- upladed images & files lost when saving a tree entity twice.
- widget chooser broken for tree entities.
- translations missing.
Features:
- added subtree widget for tree entities.

Download this release

Release Info

Developer Marius
Extension Ultimate_ModuleCreator
Version 1.6.3
Comparing to
See all releases


Code changes from version 1.6.2 to 1.6.3

Files changed (28) hide show
  1. app/code/community/Ultimate/ModuleCreator/Helper/Data.php +3 -1
  2. app/code/community/Ultimate/ModuleCreator/Model/Entity.php +13 -1
  3. app/code/community/Ultimate/ModuleCreator/etc/config.xml +2 -2
  4. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/List/IsTree/03_center.php +4 -0
  5. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/List/IsTree/06_active_children.php +10 -8
  6. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/List/IsTree/08_footer.php +12 -0
  7. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/Widget/Subtree/01_content.php +43 -0
  8. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/Widget/View/02_status.php +0 -1
  9. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/Widget/View/03_template.php +0 -1
  10. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/controllers/Adminhtml/Module/Entity/WidgetController/02_tree.php +2 -2
  11. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/controllers/Adminhtml/Module/EntityController/IsTree/03_save.php +2 -3
  12. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/etc/widget/03_tree.xml +30 -0
  13. app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/etc/widget/{03_footer.xml → 04_footer.xml} +0 -0
  14. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/04_subtree.xml +3 -0
  15. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{04_default_footer.xml → 05_default_footer.xml} +0 -0
  16. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{05_list.xml → 06_list.xml} +0 -0
  17. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{06_view.xml → 07_view.xml} +0 -0
  18. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{07_entity_rss.xml → 08_entity_rss.xml} +0 -0
  19. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{08_rss_top.xml → 09_rss_top.xml} +0 -0
  20. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{09_rss.xml → 10_rss.xml} +0 -0
  21. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{10_rss_footer.xml → 11_rss_footer.xml} +0 -0
  22. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{11_relation_product.xml → 12_relation_product.xml} +0 -0
  23. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{12_footer.xml → 13_footer.xml} +0 -0
  24. app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/template/namespace_module/entity/widget/subtree/01_content.phtml +22 -0
  25. app/code/community/Ultimate/ModuleCreator/etc/m/app/locale/en_US/Namespace_Module/11_global_tree.csv +2 -0
  26. app/code/community/Ultimate/ModuleCreator/etc/m/app/locale/en_US/Namespace_Module/12_tree_entity.csv +3 -0
  27. app/code/community/Ultimate/ModuleCreator/etc/modulecreator.xml +60 -10
  28. package.xml +9 -5
app/code/community/Ultimate/ModuleCreator/Helper/Data.php CHANGED
@@ -39,7 +39,8 @@ class Ultimate_ModuleCreator_Helper_Data extends Mage_Core_Helper_Data{
39
  'flat', 'data',
40
  'collection', 'adminhtml',
41
  'widget', 'observer',
42
- 'tree', 'image'
 
43
  );
44
  /**
45
  * get a list with "special attribute" names and error messages
@@ -61,6 +62,7 @@ class Ultimate_ModuleCreator_Helper_Data extends Mage_Core_Helper_Data{
61
  $names['children_count'] = $this->__('"children_count" is a reserved attribute name.');
62
  $names['path'] = $this->__('"path" is a reserved attribute name.');
63
  $names['url_key'] = $this->__('If you want to use URL keys set "Create URL rewrites for entity view page" to "Yes"');
 
64
  return $names;
65
  }
66
  /**
39
  'flat', 'data',
40
  'collection', 'adminhtml',
41
  'widget', 'observer',
42
+ 'tree', 'image',
43
+ 'node'
44
  );
45
  /**
46
  * get a list with "special attribute" names and error messages
62
  $names['children_count'] = $this->__('"children_count" is a reserved attribute name.');
63
  $names['path'] = $this->__('"path" is a reserved attribute name.');
64
  $names['url_key'] = $this->__('If you want to use URL keys set "Create URL rewrites for entity view page" to "Yes"');
65
+ $names['node'] = $this->__('An attribute cannot be named %s', 'node');
66
  return $names;
67
  }
68
  /**
app/code/community/Ultimate/ModuleCreator/Model/Entity.php CHANGED
@@ -413,6 +413,7 @@ class Ultimate_ModuleCreator_Model_Entity extends Ultimate_ModuleCreator_Model_A
413
  }
414
  if ($this->getIsTree()){
415
  $content .= $padding.'<tree>1</tree>'."\n";
 
416
  }
417
  return substr($content,0, strlen($content) - strlen("\n"));
418
  }
@@ -451,6 +452,18 @@ class Ultimate_ModuleCreator_Model_Entity extends Ultimate_ModuleCreator_Model_A
451
  $content .= $padding.'</tree>'."\n";
452
  $position += 10;
453
  }
 
 
 
 
 
 
 
 
 
 
 
 
454
  if ($this->getFrontendAddSeo() && $this->getFrontendList()){
455
  $content .= $padding.'<meta_title translate="label" module="'.strtolower($this->getModule()->getModuleName()).'">'."\n";
456
  $content .= $padding.$tab.'<label>Meta title for '.strtolower($this->getLabelPlural()).' list page</label>'."\n";
@@ -685,7 +698,6 @@ class Ultimate_ModuleCreator_Model_Entity extends Ultimate_ModuleCreator_Model_A
685
  if ($this->getIsTree()){
686
  $content .= '<reference name="head">'."\n";
687
  $content .= "\t\t\t".'<action method="addItem" ifconfig="'.strtolower($this->getModule()->getModuleName()).'/'.strtolower($this->getNameSingular()).'/tree"><type>skin_js</type><js>js/'.strtolower($this->getModule()->getNamespace()).'_'.strtolower($this->getModule()->getModuleName()).'/tree.js</js></action>'."\n";
688
- $content .= "\t\t\t".'<action method="addCss" ifconfig="'.strtolower($this->getModule()->getModuleName()).'/'.strtolower($this->getNameSingular()).'/tree"><js>css/'.strtolower($this->getModule()->getNamespace()).'_'.strtolower($this->getModule()->getModuleName()).'/tree.css</js></action>'."\n";
689
  $content .= "\t\t".'</reference>'."\n";
690
  $content .= "\t\t";
691
  }
413
  }
414
  if ($this->getIsTree()){
415
  $content .= $padding.'<tree>1</tree>'."\n";
416
+ $content .= $padding.'<recursion>0</recursion>'."\n";
417
  }
418
  return substr($content,0, strlen($content) - strlen("\n"));
419
  }
452
  $content .= $padding.'</tree>'."\n";
453
  $position += 10;
454
  }
455
+ if ($this->getIsTree() && $this->getWidget()){
456
+ $content .= $padding.'<recursion translate="label" module="'.strtolower($this->getModule()->getModuleName()).'">'."\n";
457
+ $content .= $padding.$tab.'<label>Recursion level</label>'."\n";
458
+ $content .= $padding.$tab.'<frontend_type>text</frontend_type>'."\n";
459
+ $content .= $padding.$tab.'<sort_order>'.$position.'</sort_order>'."\n";
460
+ $content .= $padding.$tab.'<show_in_default>1</show_in_default>'."\n";
461
+ $content .= $padding.$tab.'<show_in_website>1</show_in_website>'."\n";
462
+ $content .= $padding.$tab.'<show_in_store>1</show_in_store>'."\n";
463
+ $content .= $padding.'</recursion>'."\n";
464
+ $position += 10;
465
+ }
466
+
467
  if ($this->getFrontendAddSeo() && $this->getFrontendList()){
468
  $content .= $padding.'<meta_title translate="label" module="'.strtolower($this->getModule()->getModuleName()).'">'."\n";
469
  $content .= $padding.$tab.'<label>Meta title for '.strtolower($this->getLabelPlural()).' list page</label>'."\n";
698
  if ($this->getIsTree()){
699
  $content .= '<reference name="head">'."\n";
700
  $content .= "\t\t\t".'<action method="addItem" ifconfig="'.strtolower($this->getModule()->getModuleName()).'/'.strtolower($this->getNameSingular()).'/tree"><type>skin_js</type><js>js/'.strtolower($this->getModule()->getNamespace()).'_'.strtolower($this->getModule()->getModuleName()).'/tree.js</js></action>'."\n";
 
701
  $content .= "\t\t".'</reference>'."\n";
702
  $content .= "\t\t";
703
  }
app/code/community/Ultimate/ModuleCreator/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
  <config>
25
  <modules>
26
  <Ultimate_ModuleCreator>
27
- <version>1.6.2</version>
28
  </Ultimate_ModuleCreator>
29
  </modules>
30
  <global>
@@ -94,7 +94,7 @@ http://opensource.org/licenses/mit-license.php
94
  @copyright Copyright (c) {{Y}}
95
  @license http://opensource.org/licenses/mit-license.php MIT License
96
  ]]></license>
97
- <use_ddl>1</use_ddl>
98
  </settings>
99
  <entity_defaults>
100
  <use_frontend>1</use_frontend>
24
  <config>
25
  <modules>
26
  <Ultimate_ModuleCreator>
27
+ <version>1.6.3</version>
28
  </Ultimate_ModuleCreator>
29
  </modules>
30
  <global>
94
  @copyright Copyright (c) {{Y}}
95
  @license http://opensource.org/licenses/mit-license.php MIT License
96
  ]]></license>
97
+ <use_ddl>1</use_ddl>
98
  </settings>
99
  <entity_defaults>
100
  <use_frontend>1</use_frontend>
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/List/IsTree/03_center.php CHANGED
@@ -47,6 +47,10 @@
47
  */
48
  public function draw{{Entity}}(${{entity}}, $level = 0){
49
  $html = '';
 
 
 
 
50
  $storeIds = Mage::getResourceSingleton('{{module}}/{{entity}}')->lookupStoreIds(${{entity}}->getId());
51
  $validStoreIds = array(0, Mage::app()->getStore()->getId());
52
  if (!array_intersect($storeIds, $validStoreIds)){
47
  */
48
  public function draw{{Entity}}(${{entity}}, $level = 0){
49
  $html = '';
50
+ $recursion = $this->getRecursion();
51
+ if ($recursion !== '0' && $level >= $recursion){
52
+ return '';
53
+ }
54
  $storeIds = Mage::getResourceSingleton('{{module}}/{{entity}}')->lookupStoreIds(${{entity}}->getId());
55
  $validStoreIds = array(0, Mage::app()->getStore()->getId());
56
  if (!array_intersect($storeIds, $validStoreIds)){
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/List/IsTree/06_active_children.php CHANGED
@@ -1,11 +1,13 @@
1
  $activeChildren = array();
2
- foreach ($children as $child) {
3
- $childStoreIds = Mage::getResourceSingleton('{{module}}/{{entity}}')->lookupStoreIds($child->getId());
4
- $validStoreIds = array(0, Mage::app()->getStore()->getId());
5
- if (!array_intersect($childStoreIds, $validStoreIds)){
6
- continue;
7
- }
8
- if ($child->getStatus()) {
9
- $activeChildren[] = $child;
 
 
10
  }
11
  }
1
  $activeChildren = array();
2
+ if ($recursion == 0 || $level < $recursion-1){
3
+ foreach ($children as $child) {
4
+ $childStoreIds = Mage::getResourceSingleton('{{module}}/{{entity}}')->lookupStoreIds($child->getId());
5
+ $validStoreIds = array(0, Mage::app()->getStore()->getId());
6
+ if (!array_intersect($childStoreIds, $validStoreIds)){
7
+ continue;
8
+ }
9
+ if ($child->getStatus()) {
10
+ $activeChildren[] = $child;
11
+ }
12
  }
13
  }
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/List/IsTree/08_footer.php CHANGED
@@ -10,4 +10,16 @@
10
  $html .= '</li>';
11
  return $html;
12
  }
 
 
 
 
 
 
 
 
 
 
 
 
13
  }
10
  $html .= '</li>';
11
  return $html;
12
  }
13
+ /**
14
+ * get recursion
15
+ * @access public
16
+ * @return int
17
+ * {{qwertyuiop}}
18
+ */
19
+ public function getRecursion(){
20
+ if (!$this->hasData('recursion')){
21
+ $this->setData('recursion', Mage::getStoreConfig('{{module}}/{{entity}}/recursion'));
22
+ }
23
+ return $this->getData('recursion');
24
+ }
25
  }
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/Widget/Subtree/01_content.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ {{License}}
3
+ /**
4
+ * {{EntityLabel}} subtree block
5
+ *
6
+ * @category {{Namespace}}
7
+ * @package {{Namespace}}_{{Module}}
8
+ * {{qwertyuiop}}
9
+ */
10
+ class {{Namespace}}_{{Module}}_Block_{{Entity}}_Widget_Subtree extends {{Namespace}}_{{Module}}_Block_{{Entity}}_List implements Mage_Widget_Block_Interface{
11
+ protected $_template = '{{namespace}}_{{module}}/{{entity}}/widget/subtree.phtml';
12
+ /**
13
+ * prepare the layout
14
+ * @access protected
15
+ * @return {{Namespace}}_{{Module}}_Block_{{Entity}}_Widget_Subtree
16
+ * {{qwertyuiop}}
17
+ */
18
+ protected function _prepareLayout(){
19
+ $this->get{{Entities}}()->addFieldToFilter('entity_id', $this->get{{Entity}}Id());
20
+ return $this;
21
+ }
22
+ /**
23
+ * get the display mode
24
+ * @access protected
25
+ * @return int
26
+ * {{qwertyuiop}}
27
+ */
28
+ protected function _getDisplayMode(){
29
+ return 1;
30
+ }
31
+ /**
32
+ * get the element id
33
+ * @access protected
34
+ * @return int
35
+ * {{qwertyuiop}}
36
+ */
37
+ public function getUniqueId(){
38
+ if (!$this->getData('uniq_id')){
39
+ $this->setData('uniq_id', uniqid('subtree'));
40
+ }
41
+ return $this->getData('uniq_id');
42
+ }
43
+ }
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/Widget/View/02_status.php CHANGED
@@ -1,2 +1 @@
1
  if (${{entity}}->getStatus()) {
2
-
1
  if (${{entity}}->getStatus()) {
 
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/Block/Entity/Widget/View/03_template.php CHANGED
@@ -1,3 +1,2 @@
1
  $this->setCurrent{{Entity}}(${{entity}});
2
  $this->setTemplate($this->_htmlTemplate);
3
-
1
  $this->setCurrent{{Entity}}(${{entity}});
2
  $this->setTemplate($this->_htmlTemplate);
 
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/controllers/Adminhtml/Module/Entity/WidgetController/02_tree.php CHANGED
@@ -5,8 +5,8 @@
5
  * {{qwertyuiop}}
6
  */
7
  public function {{entities}}JsonAction(){
8
- if ($faqcatsId = (int) $this->getRequest()->getPost('id')) {
9
- $faqcat = Mage::getModel('{{module}}/{{entity}}')->load(${{entity}}Id);
10
  if (${{entity}}->getId()) {
11
  Mage::register('{{entity}}', ${{entity}});
12
  Mage::register('current_{{entity}}', ${{entity}});
5
  * {{qwertyuiop}}
6
  */
7
  public function {{entities}}JsonAction(){
8
+ if (${{entity}}Id = (int) $this->getRequest()->getPost('id')) {
9
+ ${{entity}} = Mage::getModel('{{module}}/{{entity}}')->load(${{entity}}Id);
10
  if (${{entity}}->getId()) {
11
  Mage::register('{{entity}}', ${{entity}});
12
  Mage::register('current_{{entity}}', ${{entity}});
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/controllers/Adminhtml/Module/EntityController/IsTree/03_save.php CHANGED
@@ -9,6 +9,5 @@
9
  return;
10
  }
11
  $refreshTree = 'false';
12
- if ($data = $this->getRequest()->getPost()) {
13
- ${{entity}}->addData($data['{{entity}}']);
14
-
9
  return;
10
  }
11
  $refreshTree = 'false';
12
+ if ($data = $this->getRequest()->getPost('{{entity}}')) {
13
+ ${{entity}}->addData($data);
 
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/etc/widget/03_tree.xml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <{{module}}_{{entity}}_subtree type="{{module}}/{{entity}}_widget_subtree" translate="name description" module="{{module}}">
2
+ <name>{{EntityLabel}} subtree</name>
3
+ <description>{{EntityLabel}} subtree widget</description>
4
+ <is_email_compatible>0</is_email_compatible>
5
+ <parameters>
6
+ <{{entity}}_id type="complex" translate="label">
7
+ <visible>1</visible>
8
+ <required>1</required>
9
+ <label>{{EntityLabel}}</label>
10
+ <type>label</type>
11
+ <helper_block>
12
+ <type>{{module}}/adminhtml_{{entity}}_widget_chooser</type>
13
+ <data>
14
+ <button translate="open">
15
+ <open>Select {{EntityLabel}}</open>
16
+ </button>
17
+ </data>
18
+ </helper_block>
19
+ <sort_order>10</sort_order>
20
+ </{{entity}}_id>
21
+ <recursion type="complex" translate="label">
22
+ <visible>1</visible>
23
+ <required>1</required>
24
+ <value>0</value>
25
+ <label>Levels to show (0 for all)</label>
26
+ <type>text</type>
27
+ <sort_order>20</sort_order>
28
+ </recursion>
29
+ </parameters>
30
+ </{{module}}_{{entity}}_subtree>
app/code/community/Ultimate/ModuleCreator/etc/m/app/code/cp/Ns/Md/etc/widget/{03_footer.xml → 04_footer.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/04_subtree.xml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <reference name="head">
2
+ <action method="addCss"><js>css/{{namespace}}_{{module}}/tree.css</js></action>
3
+ </reference>
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{04_default_footer.xml → 05_default_footer.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{05_list.xml → 06_list.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{06_view.xml → 07_view.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{07_entity_rss.xml → 08_entity_rss.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{08_rss_top.xml → 09_rss_top.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{09_rss.xml → 10_rss.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{10_rss_footer.xml → 11_rss_footer.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{11_relation_product.xml → 12_relation_product.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/layout/namespace_module/{12_footer.xml → 13_footer.xml} RENAMED
File without changes
app/code/community/Ultimate/ModuleCreator/etc/m/app/design/frontend/base/default/template/namespace_module/entity/widget/subtree/01_content.phtml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ {{License}}
3
+ /**
4
+ * {{EntityLabel}} subtree template
5
+ *
6
+ * @category {{Namespace}}
7
+ * @package {{Namespace}}_{{Module}}
8
+ * {{qwertyuiop}}
9
+ */
10
+ ?>
11
+ <?php $_{{entities}} = $this->get{{Entities}}(); ?>
12
+ <?php if ($_{{entities}}->getSize() > 0) :?>
13
+ <script type="text/javascript" src="<?php echo $this->getSkinUrl('js/{{namespace}}_{{module}}/tree.js')?>"></script>
14
+ <ul id="<?php echo $this->getUniqueId()?>">
15
+ <?php foreach ($_{{entities}} as $_{{entity}}) : ?>
16
+ <?php echo $this->draw{{Entity}}($_{{entity}});?>
17
+ <?php endforeach;?>
18
+ </ul>
19
+ <script type="text/javascript">
20
+ {{module}}Tree('<?php echo $this->getUniqueId()?>');
21
+ </script>
22
+ <?php endif;?>
app/code/community/Ultimate/ModuleCreator/etc/m/app/locale/en_US/Namespace_Module/11_global_tree.csv CHANGED
@@ -3,3 +3,5 @@
3
  "ID: %s","ID: %s"
4
  "Display as tree","Display as tree"
5
  "Root","Root"
 
 
3
  "ID: %s","ID: %s"
4
  "Display as tree","Display as tree"
5
  "Root","Root"
6
+ "Levels to show (0 for all)","Levels to show (0 for all)"
7
+ "Recursion level","Recursion level"
app/code/community/Ultimate/ModuleCreator/etc/m/app/locale/en_US/Namespace_Module/12_tree_entity.csv CHANGED
@@ -10,3 +10,6 @@
10
  "{{EntityLabel}} move operation is not possible: the current {{entityLabel}} was not found.","{{EntityLabel}} move operation is not possible: the current {{entityLabel}} was not found."
11
  "{{EntityLabel}} move operation is not possible: parent {{entityLabel}} is equal to child {{entityLabel}}.","{{EntityLabel}} move operation is not possible: parent {{entityLabel}} is equal to child {{entityLabel}}."
12
  "Can't delete root {{entityLabel}}.","Can't delete root {{entityLabel}}."
 
 
 
10
  "{{EntityLabel}} move operation is not possible: the current {{entityLabel}} was not found.","{{EntityLabel}} move operation is not possible: the current {{entityLabel}} was not found."
11
  "{{EntityLabel}} move operation is not possible: parent {{entityLabel}} is equal to child {{entityLabel}}.","{{EntityLabel}} move operation is not possible: parent {{entityLabel}} is equal to child {{entityLabel}}."
12
  "Can't delete root {{entityLabel}}.","Can't delete root {{entityLabel}}."
13
+ "{{EntityLabel}} subtree","{{EntityLabel}} subtree"
14
+ "{{EntityLabel}} subtree widget","{{EntityLabel}} subtree widget"
15
+ "Select {{EntityLabel}}","Select {{EntityLabel}}"
app/code/community/Ultimate/ModuleCreator/etc/modulecreator.xml CHANGED
@@ -847,6 +847,24 @@
847
  </file>
848
  </content>
849
  </file>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  <file translate="title" module="modulecreator">
851
  <title>Flat entity admin controller.</title>
852
  <scope>entity</scope>
@@ -1542,7 +1560,15 @@
1542
  </depend>
1543
  </file>
1544
  <file>
1545
- <name>03_footer.xml</name>
 
 
 
 
 
 
 
 
1546
  </file>
1547
  </content>
1548
  </file>
@@ -1758,60 +1784,68 @@
1758
  </depend>
1759
  </file>
1760
  <file>
1761
- <name>04_default_footer.xml</name>
 
 
 
 
 
 
 
 
1762
  <depend>
1763
  <frontend_list />
1764
  </depend>
1765
  </file>
1766
  <file>
1767
- <name>05_list.xml</name>
1768
  <scope>entity</scope>
1769
  <depend>
1770
  <frontend_list />
1771
  </depend>
1772
  </file>
1773
  <file>
1774
- <name>06_view.xml</name>
1775
  <scope>entity</scope>
1776
  <depend>
1777
  <frontend_view />
1778
  </depend>
1779
  </file>
1780
  <file>
1781
- <name>07_entity_rss.xml</name>
1782
  <scope>entity</scope>
1783
  <depend>
1784
  <rss />
1785
  </depend>
1786
  </file>
1787
  <file>
1788
- <name>08_rss_top.xml</name>
1789
  <depend>
1790
  <rss />
1791
  </depend>
1792
  </file>
1793
  <file>
1794
- <name>09_rss.xml</name>
1795
  <scope>entity</scope>
1796
  <depend>
1797
  <rss />
1798
  </depend>
1799
  </file>
1800
  <file>
1801
- <name>10_rss_footer.xml</name>
1802
  <depend>
1803
  <rss />
1804
  </depend>
1805
  </file>
1806
  <file>
1807
- <name>11_relation_product.xml</name>
1808
  <scope>entity</scope>
1809
  <depend>
1810
  <show_on_product />
1811
  </depend>
1812
  </file>
1813
  <file>
1814
- <name>12_footer.xml</name>
1815
  </file>
1816
  </content>
1817
  </file>
@@ -2069,6 +2103,22 @@
2069
  </file>
2070
  </content>
2071
  </file>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2072
  <file translate="title" module="modulecreator">
2073
  <title>Adminhtml observer</title>
2074
  <scope>global</scope>
847
  </file>
848
  </content>
849
  </file>
850
+ <file translate="title" module="modulecreator">
851
+ <title>Flat entity subtree widget.</title>
852
+ <scope>entity</scope>
853
+ <filetype>php</filetype>
854
+ <depend>
855
+ <flat />
856
+ <use_frontend />
857
+ <widget />
858
+ <is_tree />
859
+ </depend>
860
+ <from>app/code/cp/Ns/Md/Block/Entity/Widget/Subtree/</from>
861
+ <to>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Widget/Subtree.php</to>
862
+ <content>
863
+ <file>
864
+ <name>01_content.php</name>
865
+ </file>
866
+ </content>
867
+ </file>
868
  <file translate="title" module="modulecreator">
869
  <title>Flat entity admin controller.</title>
870
  <scope>entity</scope>
1560
  </depend>
1561
  </file>
1562
  <file>
1563
+ <name>03_tree.xml</name>
1564
+ <scope>entity</scope>
1565
+ <depend>
1566
+ <widget />
1567
+ <is_tree />
1568
+ </depend>
1569
+ </file>
1570
+ <file>
1571
+ <name>04_footer.xml</name>
1572
  </file>
1573
  </content>
1574
  </file>
1784
  </depend>
1785
  </file>
1786
  <file>
1787
+ <name>04_subtree.xml</name>
1788
+ <scope>global</scope>
1789
+ <depend>
1790
+ <use_frontend />
1791
+ <has_tree />
1792
+ </depend>
1793
+ </file>
1794
+ <file>
1795
+ <name>05_default_footer.xml</name>
1796
  <depend>
1797
  <frontend_list />
1798
  </depend>
1799
  </file>
1800
  <file>
1801
+ <name>06_list.xml</name>
1802
  <scope>entity</scope>
1803
  <depend>
1804
  <frontend_list />
1805
  </depend>
1806
  </file>
1807
  <file>
1808
+ <name>07_view.xml</name>
1809
  <scope>entity</scope>
1810
  <depend>
1811
  <frontend_view />
1812
  </depend>
1813
  </file>
1814
  <file>
1815
+ <name>08_entity_rss.xml</name>
1816
  <scope>entity</scope>
1817
  <depend>
1818
  <rss />
1819
  </depend>
1820
  </file>
1821
  <file>
1822
+ <name>09_rss_top.xml</name>
1823
  <depend>
1824
  <rss />
1825
  </depend>
1826
  </file>
1827
  <file>
1828
+ <name>10_rss.xml</name>
1829
  <scope>entity</scope>
1830
  <depend>
1831
  <rss />
1832
  </depend>
1833
  </file>
1834
  <file>
1835
+ <name>11_rss_footer.xml</name>
1836
  <depend>
1837
  <rss />
1838
  </depend>
1839
  </file>
1840
  <file>
1841
+ <name>12_relation_product.xml</name>
1842
  <scope>entity</scope>
1843
  <depend>
1844
  <show_on_product />
1845
  </depend>
1846
  </file>
1847
  <file>
1848
+ <name>13_footer.xml</name>
1849
  </file>
1850
  </content>
1851
  </file>
2103
  </file>
2104
  </content>
2105
  </file>
2106
+ <file translate="title" module="modulecreator">
2107
+ <title>Subtree widget</title>
2108
+ <scope>entity</scope>
2109
+ <filetype>php</filetype>
2110
+ <depend>
2111
+ <widget />
2112
+ <is_tree />
2113
+ </depend>
2114
+ <from>app/design/frontend/base/default/template/namespace_module/entity/widget/subtree/</from>
2115
+ <to>app/design/frontend/{{package}}/{{theme_template}}/template/{{namespace}}_{{module}}/{{entity}}/widget/subtree.phtml</to>
2116
+ <content>
2117
+ <file>
2118
+ <name>01_content.phtml</name>
2119
+ </file>
2120
+ </content>
2121
+ </file>
2122
  <file translate="title" module="modulecreator">
2123
  <title>Adminhtml observer</title>
2124
  <scope>global</scope>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ultimate_ModuleCreator</name>
4
- <version>1.6.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/MIT">MIT License</license>
7
  <channel>community</channel>
@@ -9,11 +9,15 @@
9
  <summary>Develop custom Magento modules without writing any code. Use a module creator. Use this module creator</summary>
10
  <description>This module allows you to create custom Magento modules for your own entities. You can create as many entities as you want in one extension, you can establish relations between them, decide to generate only back-end pages or both back-end and frontend pages.</description>
11
  <notes>Bug fixes: &#xD;
12
- - `lookupStoreIds () on a non-object` error on Tree entities.</notes>
 
 
 
 
13
  <authors><author><name>Marius Strajeru</name><user>tzyganu</user><email>tzyganu@gmail.com</email></author></authors>
14
- <date>2013-05-10</date>
15
- <time>22:06:50</time>
16
- <contents><target name="magecommunity"><dir name="Ultimate"><dir name="ModuleCreator"><dir name="Block"><dir name="Adminhtml"><dir name="Modulecreator"><dir name="Edit"><file name="Form.php" hash="cb4328ae858a31a31d76016e50b56739"/><dir name="Tab"><dir name="Entities"><dir name="Entity"><file name="Attribute.php" hash="daa6787fa3f72150fc86c4350be932da"/></dir><file name="Entity.php" hash="8d5b07f735a5a7107f1abf66bbb482da"/></dir><file name="Entities.php" hash="65602b8daaa8585d9c94d7a4d8d7dcde"/><file name="Help.php" hash="304c68d68e9adf0962817e27877683b6"/><file name="Relation.php" hash="43730e74747b8e6e5985eee259e6db07"/><file name="Settings.php" hash="dee31d423d26a3efbc773530ac847afb"/></dir><file name="Tabs.php" hash="578af9256efb3d516db14db7e396e5e3"/></dir><file name="Edit.php" hash="491948d86e2e3a50fa185a407997c163"/><file name="Grid.php" hash="96ef8fa066b89937712b44991191f4de"/></dir><file name="Modulecreator.php" hash="b2630018b6f103d1a3f9e92ed7de7a54"/></dir></dir><file name="Exception.php" hash="aaef7086ff700d7132418cf68629246f"/><dir name="Helper"><file name="Adminhtml.php" hash="f913d91b1041032b35e4d0ca2fd20205"/><file name="Data.php" hash="15c1fc5975814c656c587da7db416a21"/></dir><dir name="Model"><file name="Abstract.php" hash="33a186edb30b8ff3f54fda6690a90a2c"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Codepool.php" hash="045f0555fc545799148627e081ca8727"/><file name="Install.php" hash="7fb2fd108b5bed63b31ab9cfd0da25f5"/><file name="Layout.php" hash="3d63a2221b3a93926c662b3c10effc2c"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Type"><file name="Abstract.php" hash="db70512d5a1123e8065c2237b0ce5960"/><file name="Country.php" hash="f1d8b4418c223baafed7c218acf1b640"/><file name="Decimal.php" hash="54d30f34faa1b998073a78a9abdb13b8"/><file name="File.php" hash="a8e18228577beb612f202acbe0ddb41a"/><file name="Image.php" hash="80211878524ee9ed71096d30b1c52c42"/><file name="Int.php" hash="754778ace18f36c77e5de96c2ccc4273"/><file name="Text.php" hash="237217feda93dadf93a63f181ebb8793"/><file name="Textarea.php" hash="befe5d84f69efc1a85b7f258b50ff950"/><file name="Timestamp.php" hash="05759eaa9d07cee6c47764eaaab5c292"/><file name="Website.php" hash="2ea3d85dd5e2ffa846a3da376e70ffcd"/><file name="Yesno.php" hash="689678378cfabfb54575653d109d79cf"/></dir></dir><file name="Attribute.php" hash="14b859fbda32ab06c8587e36151e6a97"/><file name="Entity.php" hash="1cc5c1021a30bd6653038a1ff1023761"/><dir name="Module"><file name="Collection.php" hash="0e413b976cbc9649ec982fe0f4b95dd1"/></dir><file name="Module.php" hash="f1058e525ad61b024da12b3fb3201cce"/><file name="Relation.php" hash="d026e9113cf9ad8c65fc4c78bdac5852"/><file name="Writer.php" hash="b47341646a1882d77e57cf6a5b30ad49"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ModulecreatorController.php" hash="11ee92957c8099af688993543b9f849e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="755c04b748c41ced20f41c725acc95c2"/><file name="config.xml" hash="575ab059a9d4cfecc14a88e6fff5cadb"/><dir name="m"><dir name="app"><dir name="code"><dir name="cp"><dir name="Ns"><dir name="Md"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><dir name="Entity"><file name="01_content.php" hash="59347ed053e0fe3dc2e25a5c5490ecd4"/><dir name="IsTree"><file name="01_content.php" hash="1eda50311bcf910106a49ad54f1681fd"/></dir></dir></dir></dir></dir></dir><dir name="Entity"><file name="01_content.php" hash="5dfc799aeee50cc5ef32d356c1cc176f"/><dir name="Abstract"><file name="01_content.php" hash="dfe60775e0f319347a8937a17733c751"/></dir><dir name="Edit"><file name="01_content.php" hash="21d1cd84da305a41e516752e39c12404"/><dir name="Form"><file name="01_content.php" hash="39f68c93dba53e650f502776c03caf20"/><dir name="IsTree"><file name="01_top.php" hash="13336661cfaf0f25ceef484d28d1f99f"/><file name="02_product_relation.php" hash="adee6754a75247b7d401d8f774d3918b"/><file name="03_entity_relation.php" hash="7f06c1f227ff6e8e1f64606bc1da6d3a"/><file name="04_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="IsTree"><file name="01_content.php" hash="6f8ab2c71f28a7618db8b94c311d6f13"/></dir><dir name="Tab"><dir name="Form"><file name="01_top.php" hash="9f6681f6bc3e012a8c711739a0ed6ae1"/><file name="02_image.php" hash="8dbf5010de2c46aabb02cd7a4df6f45e"/><file name="03_file.php" hash="64ede5038fe0edfec08671a5ca521777"/><file name="04_wysiwyg.php" hash="d25a58b233bd88a2e6d1fd5a79398394"/><file name="05_wysiwyg_is_tree.php" hash="6ef452bba45e48bbfc370ea24b61d6e0"/><file name="06_path_tree.php" hash="9991a81df109b0abbc8bd06a26694d1b"/><file name="07_parents.php" hash="476f7ebd1b04a879f3dd51b1913f9a9d"/><file name="08_attributes.php" hash="44c81d580dcf072b2ed9b5cc90fb1fac"/><file name="09_url_rewrite.php" hash="fdcf74d7a3abe5bfa32db1d5f042d8e2"/><file name="10_status.php" hash="ade9e66ee2dd546ebea8c9800b378a88"/><file name="11_rss.php" hash="0a122d46cc4826a0bd62b2f5d52b3fdc"/><file name="12_stores.php" hash="48e5e8e12b9d544496da7ee1a4997868"/><file name="13_add_values_not_tree.php" hash="dc7ba40ed78eb43b08fc46c235029c8c"/><file name="14_add_values_tree.php" hash="c569ce680f4c5328292d6bb4f4c37e69"/><file name="15_get_entity_tree.php" hash="3d9027f073bf28f89aecd6b224c350ca"/><file name="16_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Meta"><file name="01_content.php" hash="3c47ce08d25eb90d91629e0647a01d5c"/></dir><dir name="Product"><file name="01_content.php" hash="e42fb1044c47e7e1ba7c456f057b9558"/></dir><dir name="Sibling"><file name="01_content.php" hash="45cbbc5d065f5e0402a8340e14e5e6b2"/><dir name="IsTree"><file name="01_content.php" hash="0809c980a4d5059bc679e37762853f5e"/></dir></dir><dir name="Stores"><file name="01_content.php" hash="db8bf44c310b5e2522bd1dd643af5a93"/></dir></dir><dir name="Tabs"><file name="01_top.php" hash="342ee8baf7d6a634946df4f284acf8b3"/><file name="02_seo.php" hash="b24cb92d1fa9f7984163293e43f79335"/><file name="03_stores.php" hash="5da8b692e09e4c5afe1acea30029a7dc"/><file name="04_relations_tabs.php" hash="3f1eba9e9a7bf177185364cffc8468ba"/><file name="05_product_relation.php" hash="aee681c7021e9efad07a39bc8f8cf56d"/><file name="06_footer.php" hash="01b6273dfbf342c1f984c1e10b631b65"/><dir name="IsTree"><file name="01_top.php" hash="69d34e826efe0e44d6dcafe46fd8aa79"/><file name="02_seo.php" hash="b24cb92d1fa9f7984163293e43f79335"/><file name="03_stores.php" hash="5da8b692e09e4c5afe1acea30029a7dc"/><file name="04_relations_tabs.php" hash="50d5a9065062cf44f11a8aba92140790"/><file name="05_product_relation.php" hash="c5dc78d7c883af529b3adf72770d3dde"/><file name="06_footer.php" hash="5cad78a0f4dc4a2531cb6195e5e9ea5a"/></dir></dir></dir><dir name="Grid"><file name="01_top.php" hash="1a0c8754c5482692ae460fd6aafcfa6b"/><file name="02_columns_top.php" hash="1d28265e98b06fe61edde000c0d28db6"/><file name="03_parents.php" hash="011f4f2895cbaa33e753168131feedee"/><file name="04_grid_attributes.php" hash="2e7a6d5f6333b44ddf6792898a6e01c1"/><file name="05_url_rewrite.php" hash="b35f254eefea0d714de7ec6bdf5f2c4b"/><file name="06_grid_status.php" hash="f1d657a64ad855219882ac8aa6ead5b5"/><file name="07_stores.php" hash="083304c47194a612232e1554b3afdc70"/><file name="08_created_at.php" hash="15f2bf1aeab4512931cfd13461466dbf"/><file name="09_updated_at.php" hash="b416ed24d9613f8332f4191f0378c1a3"/><file name="10_grid_actions.php" hash="fbc479c06560e193e4c2177358eadc07"/><file name="11_grid_export.php" hash="3da336230cb919e5dd36e39d21ea3f0e"/><file name="12_columns_footer.php" hash="1cdf225b4a61a0036903c4e251484684"/><file name="13_mass_action_top.php" hash="4979fc362c7c0666bcfe39e89f3a88f4"/><file name="14_mass_action_status.php" hash="d504216f92f489be7857bee37cf0771c"/><file name="15_mass_action_flags.php" hash="9b0d9088708f5e84b50e7ac6ee06a632"/><file name="16_mass_action_parents.php" hash="7b36b4b3954e3913e6bdafb822ca6634"/><file name="17_footer.php" hash="671e5e1d49c4023a016c0bd1fb53fb31"/></dir><dir name="Helper"><dir name="File"><file name="01_content.php" hash="c00cdcedf171c992bb88a20402bfd70d"/></dir><dir name="Image"><file name="01_content.php" hash="62a55ac8856f4dc555d6dc373c2de7d5"/></dir></dir><dir name="Tree"><file name="01_top.php" hash="8b8eaeea900cceeccb0b12717fe440f7"/><file name="02_status.php" hash="3a0cada5dfb430e3d7b9890e3f6ac2ba"/><file name="03_footer.php" hash="1e7043194d0104f8e39c6418af00a7f4"/></dir><dir name="Widget"><dir name="Chooser"><file name="01_top.php" hash="61b31cd249d7f23aeb456eeff337c9c0"/><file name="02_top_status.php" hash="ae8d09557d6c9aa3a920e148f0cdd7d6"/><file name="03_content.php" hash="cf1a5893817a61c410f0ea5071cd75f6"/><file name="04_status.php" hash="6fb78962dd9ffb30ee5d750876a26e5d"/><file name="05_footer.php" hash="5d257efc9e4b41bf2a0efb46190e59ec"/><dir name="IsTree"><file name="01_content.php" hash="f16e81972cc4add59cefc51e37599547"/></dir></dir></dir></dir><dir name="Helper"><dir name="Wysiwyg"><file name="01_content.php" hash="50f63445cbb78d5eb1ff42eed07e76af"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><dir name="Entity"><file name="01_top.php" hash="9f3fdfa832ef7be2e51a4807d87f4248"/><file name="02_status.php" hash="716a6a2f8243c5048f90584f0bd7f888"/><file name="03_footer.php" hash="7afa811ee3b39c3717cbb8f484e32405"/></dir></dir></dir></dir><dir name="Entity"><dir name="Catalog"><dir name="Product"><dir name="List"><file name="01_content.php" hash="f9a6ec0ca31b9525357f447b5471256f"/></dir></dir></dir><dir name="Child"><dir name="List"><file name="01_content.php" hash="30ac249d25535c1a522f96bae56a4f75"/></dir></dir><dir name="Children"><file name="01_content.php" hash="e3f2d736896f8b81132ab0ce4735d08a"/></dir><dir name="List"><file name="01_top.php" hash="70e1c31772d2afaf9f27af0d5f83939c"/><file name="02_status.php" hash="716a6a2f8243c5048f90584f0bd7f888"/><file name="03_footer.php" hash="369738e4147fd032b12c1df4aa01ed9c"/><dir name="IsTree"><file name="01_top.php" hash="70e1c31772d2afaf9f27af0d5f83939c"/><file name="02_status.php" hash="716a6a2f8243c5048f90584f0bd7f888"/><file name="03_center.php" hash="514d141a95cc459de9d4eba7735ec2c4"/><file name="04_status_draw.php" hash="05f41e4fa26f8644069191a7621b6e3f"/><file name="05_children.php" hash="b59bb1c9e92637ceab3196618b8deee7"/><file name="06_active_children.php" hash="b94240db116938724f17c956514b3919"/><file name="07_active_children_no_status.php" hash="11df90ae4209241f1a3361523e9b490c"/><file name="08_footer.php" hash="90180c9a604e490752cf905fd3410efd"/></dir></dir><dir name="Rss"><file name="01_top.php" hash="3fafe99eb2eca968647283a10e847ad5"/><file name="02_status.php" hash="7a81b20fbd0ca4ac140c263e481a5b06"/><file name="03_content_top.php" hash="6e2c16bd170842cc88610692439c4674"/><file name="04_content.php" hash="f556d8f00acfa61f93bbc9b09da3508b"/><file name="05_footer.php" hash="0514ad15059f8411d3315d111aac5b84"/></dir><dir name="Sibling"><dir name="List"><file name="01_content.php" hash="09e6f490b8b2d73efdbecbb68737c81f"/></dir></dir><dir name="View"><file name="01_content.php" hash="b6824731ad9bb41ef1f84b4359596f67"/></dir><dir name="Widget"><dir name="Link"><file name="01_content.php" hash="2862dcc4937c58fbee284764732e733c"/></dir><dir name="View"><file name="01_top.php" hash="7ef1885e33a674dc952230c7a50aca81"/><file name="02_status.php" hash="fd4d2e31a4c04c13bb470ce615550310"/><file name="03_template.php" hash="e6fd0367cfbd0b14996e189ac56b2d3b"/><file name="04_status.php" hash="573160846b9e8693e966c0881103f25e"/><file name="05_footer.php" hash="1009acd5e8f54dbedb651ecffb283df1"/></dir></dir></dir><dir name="Rss"><file name="01_content.php" hash="ea37b93ec747a042dd51e2e4eaeb22ac"/></dir></dir><dir name="Controller"><dir name="Adminhtml"><dir name="Module"><file name="01_content.php" hash="938c09e00f8a7045d70c7e97dd478df8"/></dir></dir><dir name="Router"><file name="01_top.php" hash="c9dd518945d5ab5fb7508084c2206125"/><file name="02_entity.php" hash="8ba8993dd992d580cd5e3b6ced303d38"/><file name="03_footer.php" hash="17469d98f81368c7e35deb1b7321cc19"/></dir></dir><dir name="Helper"><dir name="Data"><file name="01_top.php" hash="44aa03c717b24b0086230271b07f195a"/><file name="02_entity.php" hash="378423c2b9ba4ac86328e094d6e60946"/><file name="03_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Entity"><file name="01_top.php" hash="6e37881fbe0898e930a5d7b3d1ce606f"/><file name="02_tree.php" hash="8e6d460e528f4b0e3e74bbbff06336dd"/><file name="03_rss.php" hash="9e9fa595a4a7ec7f159e1d64620119ae"/><file name="04_file.php" hash="44bc7ce84f603100f67dedc1edf3cc0d"/><file name="05_footer.php" hash="2e687c8e025cca2e891ac925406f277c"/><dir name="Image"><file name="01_content.php" hash="e09360ea17dff94a611787004030275b"/></dir></dir><dir name="Image"><dir name="Abstract"><file name="01_content.php" hash="b39acaba6cf4d242689147dfffc8f095"/></dir></dir><dir name="Product"><file name="01_top.php" hash="20709afdafe7e3fd280e7c346a441b0c"/><file name="02_content.php" hash="33fa587ea74ff5caae02e2263bd6092b"/><file name="03_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="Model"><dir name="Adminhtml"><dir name="Observer"><file name="01_top.php" hash="abec4c7c295fb57c4086fdf9d22cdf28"/><file name="02_entity.php" hash="6c64bd2314a24f6d2dafa4dedb448b8c"/><file name="03_entity_save.php" hash="6b6db7bcb0cffefc6c3406df406c497a"/><file name="04_entity_save_tree.php" hash="aca15cbb7afc5a832488addb56df157e"/><file name="05_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Search"><dir name="Entity"><file name="01_content.php" hash="824a247bcd2cadb8f1da16ec3034d1c1"/></dir></dir></dir><dir name="Entity"><file name="01_top.php" hash="37daaca4671c58ef2fb2eaa50e0d7a7b"/><file name="02_var_sibling.php" hash="cbbdeeaa7082b22b3a57508dc6bcd4fa"/><file name="03_var_product_relation.php" hash="50cd6433f6617ed2d47c2a9ab9bee4d1"/><file name="04_construct.php" hash="81fb22faf1dc0c05920f5db34061100c"/><file name="05_url.php" hash="6d955735b11308ec8087bfbf2d0c6078"/><file name="06_url_rewrite_not_status.php" hash="514c4998931a817a55e652ec6fa4a322"/><file name="07_url_rewrite_status.php" hash="c5b3cbcffc16a48989a5491e4abd2c4b"/><file name="08_editors.php" hash="615bc07ef7e14bc892bb567e3c22cef7"/><file name="09_after_save_top.php" hash="f456ae82840db694e49d527d6ad23f8f"/><file name="10_after_save_product.php" hash="7e85bbf889a5beededa975831b573d97"/><file name="11_after_save_sibling.php" hash="a7ea726ae5b4b19f78773a563a7196bf"/><file name="12_after_save_footer.php" hash="1af792cf3f94391bbe2b261a0d927a8c"/><file name="13_product_relation.php" hash="890ad6b1cad708779f0e5cb1aa745f1a"/><file name="14_sibling_relation.php" hash="09f99a030f1e9e09864cee3e5f92457c"/><file name="15_tree.php" hash="c577ef6c4d67da82d5226162345ef896"/><file name="16_tree_status.php" hash="64da48d68c1af82304cea4ee2c21800e"/><file name="17_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="Api"><file name="01_top.php" hash="c1956fcb05a9cb5130a2b736875deff7"/><file name="02_product_relation_info.php" hash="1c7bc902ac26ce46dfa0d7fc9928550b"/><file name="03_sibling_info.php" hash="e47f87465f7bc8ef58513290f79059a3"/><file name="04_info_footer.php" hash="f86ab31eddfc4e564e856d6e2e7dae19"/><file name="05_tree.php" hash="c7748f2727f04dc6abd56f7857a83fc6"/><file name="06_product_relation.php" hash="e8e82e554b7da081ad41490255233686"/><file name="07_sibling_relation.php" hash="44840138eaed0a057d6435107e9e0bf0"/><file name="08_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="V2"><file name="01_top.php" hash="e9b8c7bcd7cc8a16bcd0d88f3f889981"/><file name="02_product_relation.php" hash="cdf0cbb621852613df86f91988463608"/><file name="03_sibling_relation.php" hash="c323564cb482d85f774415585ed2b1df"/><file name="04_footer.php" hash="6a6c4437c80ae02dc771877d93a38b6c"/></dir></dir><dir name="Product"><file name="01_content.php" hash="d8dfaa0ac8ba132bf95d3d65452d9795"/></dir><dir name="Sibling"><file name="01_content.php" hash="ef2fc76324ca0afcaabab7f8272bd526"/></dir></dir><dir name="Resource"><dir name="Entity"><file name="01_top.php" hash="8584bb2dba4e8da350ad36ee91ba7094"/><file name="02_tree_var.php" hash="8a673f57e7979c6c0aa2dc38c8f29c38"/><file name="03_constructor.php" hash="c52e8b2694802192d4e4abe8ea0bac35"/><file name="04_not_tree.php" hash="d7860bfbba616ec75aaa23480d35e462"/><file name="05_tree.php" hash="153094ca24b380a2708ecb7532aaca18"/><file name="06_tree_before_save_no_url_rewrite.php" hash="721b246ab7c8011faa810f9c509cbc76"/><file name="07_tree_before_save_url_rewrite.php" hash="872a4a6d7b408bf621a52739e5d8438a"/><file name="08_children_no_status.php" hash="41b492cea369e6303ad444b16f016857"/><file name="09_children_status.php" hash="61bfda77779840f9855311137112979e"/><file name="10_content.php" hash="ad6a926a11cf4ca722b896a78bbeadab"/><file name="11_url_rewrite_status.php" hash="e32e6c2ce2419fa01181a6bc62236c07"/><file name="12_url_rewrite_not_status.php" hash="81e1b3574fb2766760b7baf9b56b89ea"/><file name="13_url_rewrite_before_save_not_tree.php" hash="2d51e7bda2f717d22bd17593851f65fa"/><file name="14_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="Collection"><file name="01_top.php" hash="d07e1e18d79b3be34193b78ff2bb0a34"/><file name="02_tree.php" hash="22c1250f162919870d08ec9aa71b949e"/><file name="03_tree_status.php" hash="fe745dc63220b3ddd5f799921077ac51"/><file name="04_product_relation.php" hash="d2f707b97df2ecf2d088aebeeb660822"/><file name="05_sibling_relation.php" hash="4563330e972ef0b0f4b96096b8594727"/><file name="06_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Product"><file name="01_content.php" hash="1545e16c25769395d3d95ec03a8cd4b3"/><dir name="Collection"><file name="01_content.php" hash="401d1dc800ddf76ea155160f3e02d162"/></dir><dir name="IsTree"><file name="01_content.php" hash="0a1b1718dec4ec27dc5310d45b388e2e"/></dir></dir><dir name="Sibling"><file name="01_top.php" hash="e78ca594012a642782fc2292084f81ca"/><file name="02_save_relation.php" hash="43dbb46224c1f8ca4a658a6a5d5077ad"/><file name="03_save_relation_tree.php" hash="1b0b458b7327dd6beaca0455d4268921"/><file name="04_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="Collection"><file name="01_content.php" hash="c48de1443823a6ff51517f8a6cab0599"/></dir></dir><dir name="Tree"><file name="01_top.php" hash="d286ac636149b07c3e1993eb4d157529"/><file name="02_status_top.php" hash="f4151c843a394922807dcb59ce6807d8"/><file name="03_content.php" hash="ec13ef4bc7eb96364605b8e6d214c9fb"/><file name="04_not_status.php" hash="d1b54f100c018fe6d5ae965e5aac8dd8"/><file name="05_status.php" hash="df0ef83645e0784f4c33534b976421ee"/><file name="06_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="Setup"><file name="01_content.php" hash="335c579a20a627c5a403e3c7ac6156c0"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Module"><dir name="Entity"><dir name="Catalog"><dir name="ProductController"><file name="01_content.php" hash="b904ef31283029cf808cc42719208874"/><dir name="IsTree"><file name="01_content.php" hash="989ec00484ec5ef3f04df8f9f0007eee"/></dir></dir></dir><dir name="WidgetController"><file name="01_content.php" hash="8d934e135109f74ac036b84d6939f6c9"/><file name="02_tree.php" hash="0662fc91f7ef5090d5b74be7c971d3b9"/><file name="03_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="EntityController"><file name="01_top.php" hash="10fa062eef953d4236da1dfc135717d1"/><file name="02_upload_image.php" hash="c111546b644ffafd26c102f095334f95"/><file name="03_upload_files.php" hash="90fd33445b8889a23e5af035da89c15e"/><file name="04_save_product_relation.php" hash="29b35c54da6069c72edd245c42aa5369"/><file name="05_save_sibling_relation.php" hash="e9fe7f25344280b483db7108cc3ae0b1"/><file name="06_save_sibling_relation_tree.php" hash="ee1dcb0a6924b8c7c074a63ec2331f53"/><file name="07_save.php" hash="11c73c7cfc8c76738fce70c466ba7c63"/><file name="08_exception_upload.php" hash="216185c48b0b0937597939a95026a1c9"/><file name="09_exception.php" hash="b4f42e91747b48665a6287faf0342bc0"/><file name="10_center.php" hash="bc1d289241de1722abb5685c63352c2e"/><file name="11_mass_status.php" hash="31d3560d9ec69d1e5f190d34ef9f54a2"/><file name="12_mass_update.php" hash="adc4ce198da420c75a45f32f9deb9d8f"/><file name="13_mass_parents.php" hash="2f6af9624a7c790d0995fb445e3b8af5"/><file name="14_product_relation_actions.php" hash="772e8ec1661ca45871bc962bdf1bbbcd"/><file name="15_sibling_actions.php" hash="8833208a9d834e7d5fda272a6b827b53"/><file name="16_sibling_actions_tree.php" hash="2994bf89f5d90bfc90e94a76444a4719"/><file name="17_footer.php" hash="044299b6435f621987f31c7c540f113c"/><dir name="IsTree"><file name="01_top.php" hash="e651cfbf97dc7451b38974611a1be692"/><file name="02_wysiwyg.php" hash="3c2ec4bab3895ca6a43bd0416b827028"/><file name="03_save.php" hash="e22bd734eb73a53a0d365f619cd8f7e6"/><file name="04_upload_image.php" hash="c111546b644ffafd26c102f095334f95"/><file name="05_upload_file.php" hash="90fd33445b8889a23e5af035da89c15e"/><file name="06_save_continue.php" hash="b277fb6a9cdb4a28b43416331154f9b8"/><file name="07_product_data.php" hash="d9050ba8bf3d0780d5077a606184e09c"/><file name="08_sibling_data.php" hash="5edd1b8750aef7c7e4fc0137d038a867"/><file name="09_real_save.php" hash="c59972f30bbca76b52376696013d9f82"/><file name="10_product_relation_action.php" hash="1a9875a99162f151e67b827e695f22a9"/><file name="11_sibling_actions.php" hash="0c165d6714a5a4b6203c9d021cdba223"/><file name="12_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir></dir></dir><dir name="EntityController"><file name="01_top.php" hash="eec876d7b63d893886bb334b09480af4"/><file name="02_list.php" hash="dfcf0e406a5a6548637bd50ce06bb1f6"/><file name="03_list_seo.php" hash="04dedfdc059b8b4b89c7c9ccc403a4b4"/><file name="04_list_footer.php" hash="1d41a3331d006d0a04ff32bb4085210b"/><file name="05_view.php" hash="64c7b0b4222d351b20885b51a6153158"/><file name="06_view_status.php" hash="fd0bc040dc135e3469757569ffcf7899"/><file name="07_view_status_tree.php" hash="2b36e7be800e6c59e12a87b0ef697097"/><file name="08_view2.php" hash="af3fc07f58fa608f8f70f2e0264fe0bd"/><file name="09_breadcrumbs.php" hash="8157b6c12ecd17df9acdf095e7eb75db"/><file name="10_breadcrumbs_tree.php" hash="f2391a45fb1ce3e64de454981973cc23"/><file name="11_breadcrumbs_footer.php" hash="b41efc51d35a4f93a3b00dc5f899e1b5"/><file name="12_view_seo.php" hash="2e56f0ef104d419dee88abf037fe9f18"/><file name="13_view_footer.php" hash="3be2b1b314c50af6fd03c53647f06e56"/><file name="14_rss.php" hash="6e2fc4485e7a2b6c3508d05d7b71748d"/><file name="15_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="data"><dir name="namespace_module_setup"><dir name="data-install-0.0.1.php"><file name="01_top.php" hash="d63e4a5fbe4435eadd52abf1534ee829"/><file name="02_entity.php" hash="df6b285616bf2741ae9288e5d9e0758e"/></dir></dir></dir><dir name="etc"><dir name="adminhtml"><file name="01_top.xml" hash="11dee4372e147adfdd6dcf549207d52c"/><file name="02_entity_acl.xml" hash="6afabb39251e5233380992ec92a7a49f"/><file name="03_center.xml" hash="c3daf849d2cc4f2b9bb10319466df7b9"/><file name="04_entity_menu.xml" hash="c940e5491e196974bd81421566bec92d"/><file name="05_footer.xml" hash="567de2825a456f5c8de1c2d3f718b333"/></dir><dir name="api"><file name="01_top.xml" hash="7836cc079929002f49056da0be781555"/><file name="02_entity_api.xml" hash="56522fd929feb8847a9b967cf476b43f"/><file name="03_resource_alias.xml" hash="b5a94f1f1ce1b7cc87fca2c80e98027a"/><file name="04_entity_resource_alias.xml" hash="532ce8db90f811adc74dc024b7024602"/><file name="05_v2.xml" hash="5fbe5be841e5295fbc5ea8d2ae85543b"/><file name="06_v2_entity.xml" hash="0d5d9f9f702c83233a18e38bc3d5c2cb"/><file name="07_acl.xml" hash="f901a483416fdaed90b5777c3bc8a8e2"/><file name="08_acl_entity.xml" hash="6c30398b3df24d454653a2a56f3fe790"/><file name="09_footer.xml" hash="080e838a7ed6930c7bf9cf17e4c6c7e8"/></dir><dir name="config"><file name="01_top.xml" hash="ab60a876013ce736e83c89e6e9be4e25"/><file name="02_tables.xml" hash="806cef86423c771c8909ba69b6780dee"/><file name="03_siblings_table.xml" hash="13cdf74c83b7d86d15717b7e31bcc5ed"/><file name="04_relation_table.xml" hash="5e50710deedcd19316110a4db8dbfe5c"/><file name="05_global.xml" hash="9e1870511df355e90da3f86acb7e88cf"/><file name="06_url_rewrite.xml" hash="d7e710748d570d29aca3d15ec4424f2d"/><file name="07_adminhtml.xml" hash="f91e8a152a9e4b7c331df0583e987c7c"/><file name="08_relation_product.xml" hash="de83346f1f657f61a23251f37016bd99"/><file name="09_global_search_top.xml" hash="24e3dddbf6fc52170457a0804c07e060"/><file name="10_global_search_entity.xml" hash="c9e6a985c2292d82c0e648b0fea07837"/><file name="11_global_search_footer.xml" hash="46e34587440f1aa3462eba45aca78be7"/><file name="12_admin.xml" hash="d4c5c6313071ffa54afb69782dbcc21e"/><file name="13_frontend.xml" hash="9617988c4eb5ab502eb57349ab1a2dec"/><file name="14_default_top.xml" hash="a306c05cad3fd6c4c46f5c162e52df68"/><file name="15_default.xml" hash="fc553b2555e09b1ab639b58649b5b4cf"/><file name="16_default_footer.xml" hash="40004610d67a1bcf5ecf317917a1b0ab"/></dir><dir name="system"><file name="01_top.xml" hash="a250611cd158a2b0f9c0adef5b3d8074"/><file name="02_entity.xml" hash="0e789a6caeecd1e7223ab6c44ca1504e"/><file name="03_footer.xml" hash="2ead9ca0742a78448b5db442581d4cd9"/></dir><dir name="widget"><file name="01_top.xml" hash="29a6efa02a0f04ce056cc53d0b4e2272"/><file name="02_entity.xml" hash="102a8cfb8f0a2c330768add309e25e97"/><file name="03_footer.xml" hash="b84026fabe4a09ef682aac220eccf07a"/></dir><dir name="wsdl"><file name="01_top.xml" hash="032cf4d009950a895bcc746d14520c4a"/><file name="02_entity_types.xml" hash="da926f1d401ef0cf6981478e600ce590"/><file name="03_schema_footer.xml" hash="11cdc73afaf5c18317842cfa4bdb18c5"/><file name="04_entity_messages.xml" hash="c6a3c8f421237712c9b6d0c18ffee1b3"/><file name="05_porttype_top.xml" hash="a0f28bf86ea809a274f5ace26c1151a1"/><file name="06_porttype_entity.xml" hash="a12705979c73a95665bfb0acec67020a"/><file name="07_porttype_footer.xml" hash="edd2f81a01c7a7ab53ac219e3858eac1"/><file name="08_binding_top.xml" hash="eb9eb6fbf3658ac82c81c7618452215a"/><file name="09_entity_binding.xml" hash="f8b0190d1667c74d566f01734f99f48e"/><file name="10_footer.xml" hash="2211f6d3fd443d15bcdcc05a5d51688a"/></dir><dir name="wsi"><file name="01_top.xml" hash="1114adc81809072b93634c4ef3f2e4c5"/><file name="02_entity_types.xml" hash="267596c149eaa51cd68289ea18f0ed99"/><file name="03_schema_footer.xml" hash="0f0f2308f6bce8a1913b262bf82b3a27"/><file name="04_entity_messages.xml" hash="fd238b2d37b4e5bc5cd4d40b1c98ce75"/><file name="05_porttype_top.xml" hash="d531a165007b9599c8d5d99217f8d351"/><file name="06_porttype_entity.xml" hash="bef6725d39c1b96cac3694cf707ea78a"/><file name="07_porttype_footer.xml" hash="edff616a12bdb1606c4e3d29e5f334bc"/><file name="08_binding_top.xml" hash="8634ae067a9a45d2321e46a3e07e856c"/><file name="09_entity_binding.xml" hash="1affab4357607e1b491b502f7789e4c8"/><file name="10_footer.xml" hash="1022e110706ee7f3cb1edfa2d491e31f"/></dir></dir><dir name="sql"><dir name="namespace_module_setup"><dir name="install-0.0.1"><file name="01_top.php" hash="50cec9cf47ccb1001b16c156bd792210"/><file name="02_entity.php" hash="fe0cd5718f68e347f92118de3ebcdbd7"/><file name="03_product_relation.php" hash="1be95058703726dc35fc985466d62129"/><file name="04_sibling_relation.php" hash="581b0adc63e3e28ab89dc576a3f2e7d6"/><file name="05_footer.php" hash="7d307239f928e12e9a9b48754777f640"/></dir><dir name="install-0.0.1-ddl"><file name="01_top.php" hash="50cec9cf47ccb1001b16c156bd792210"/><file name="02_entity.php" hash="6497a1f379b9e4d7bb35d98ad28e6767"/><file name="03_product_relation.php" hash="844585191b8c338c895e59c7162b54ab"/><file name="04_sibling_relation.php" hash="9a31f0b23781ef937045d26a48c5dcd1"/><file name="05_footer.php" hash="7d307239f928e12e9a9b48754777f640"/></dir></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="namespace_module"><file name="01_top.xml" hash="c657e63ddce2df350b7d45c57620e967"/><file name="02_entity_not_tree.xml" hash="4897e318fff890bf377ed3e8091b9986"/><file name="03_relation_product.xml" hash="4ae352696eebe3635e9df76bedaf48d6"/><file name="04_relation_sibling.xml" hash="b9f5a68c69914abeb24c9638a451b157"/><file name="05_entity_tree.xml" hash="e598aa0b93b1e6d5f180bac14f0fc20c"/><file name="06_relation_product_tree.xml" hash="897ddf70ea257a2f553bed07f1e84e3c"/><file name="07_relation_sibling_tree.xml" hash="3ae178a0a81364ec8df9935bf8a3da23"/><file name="08_footer.xml" hash="fd25391f06094530aadcbee222b433fc"/></dir></dir><dir name="template"><dir name="namespace_module"><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><dir name="entity"><file name="01_content.phtml" hash="22515160e08aec47a72e51321949ef9b"/></dir></dir></dir></dir></dir><dir name="entity"><dir name="edit"><file name="01_content.phtml" hash="ce1e8b965823d7880a5acea0de5ba26a"/><dir name="form"><file name="01_top.phtml" hash="99f82b638e08569b4be985af5a77aa26"/><file name="02_product_hidden.phtml" hash="7ef02b97f351681086ccc0f69615cbef"/><file name="03_sibling_hidden.phtml" hash="b0ab3d283c7dd99670034f439f1a7e83"/><file name="04_content.phtml" hash="887287c2135f192c2e050e7d9c2df401"/><file name="05_status.phtml" hash="3f4356540bc8cef1186b62c04e41d305"/><file name="06_content2.phtml" hash="d3d867b32ed5001de64b9d349d4a304f"/><file name="07_product_relation.phtml" hash="95ca5bc339ba49da37e0f9b5714521ea"/><file name="08_sibling_relations.phtml" hash="781a697648d00ec4c824380fae4b67ac"/><file name="09_footer.phtml" hash="5fd8d0c41500e156711c723af13f627f"/></dir><dir name="tab"><dir name="sibling"><file name="01_content.phtml" hash="59bbfec6eb6cee9778872eac55ac74bc"/></dir></dir></dir><dir name="tree"><file name="01_content.phtml" hash="0326fef77a80ddb5d154939783b52b1a"/></dir><dir name="widget"><dir name="tree"><file name="01_content.phtml" hash="e0e24d2640bdc3e4c7234564b263465f"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="namespace_module"><file name="01_top.xml" hash="bf6f2b1a2a7bfaec115c381abfa40e02"/><file name="02_default_top.xml" hash="10c0056a19cc82fbf809aa13b879b4ff"/><file name="03_default.xml" hash="e58d9aa36808b39bdd648d51fca7b992"/><file name="04_default_footer.xml" hash="22f72da3c656b5721d355607c891cc9c"/><file name="05_list.xml" hash="d612266dae53939552fb5b0a6fcb6feb"/><file name="06_view.xml" hash="7f3837e6fc2f6325304d5028fcfda532"/><file name="07_entity_rss.xml" hash="f06074f610065fbc6cb9a228402da7a7"/><file name="08_rss_top.xml" hash="54753c3cd7d42667c88c88f0084484f2"/><file name="09_rss.xml" hash="b513533d7cc561ec197ce1662bf54883"/><file name="10_rss_footer.xml" hash="3adf9a1e5301aa4221cede3ff5208785"/><file name="11_relation_product.xml" hash="309965e4062dc6f6f82dd495035e08ec"/><file name="12_footer.xml" hash="fd25391f06094530aadcbee222b433fc"/></dir></dir><dir name="template"><dir name="namespace_module"><dir name="catalog"><dir name="product"><dir name="list"><dir name="entity"><file name="01_top.phtml" hash="bb86f12fc472152437ef1be97280d258"/><file name="02_link_top.phtml" hash="62a65063f9611f31b02a5b3f3b34f524"/><file name="03_name.phtml" hash="fed55ae628836787e7a2ba05b1e695e6"/><file name="04_link_footer.phtml" hash="f01ee0fb040754cbdd4c7ca86dbec387"/><file name="05_footer.phtml" hash="d0bff7b594da78b60141591d6870556b"/></dir></dir></dir></dir><dir name="entity"><dir name="catalog"><dir name="product"><dir name="list"><file name="01_content.phtml" hash="96ec480a53c89ff5b87cfd59dc163f9e"/></dir></dir></dir><dir name="children"><file name="01_content.phtml" hash="129d29d6a49f3e6bbbd0697f55c97740"/></dir><dir name="list"><file name="01_top.phtml" hash="10c541cba8766100d47e8baadb8ce6a5"/><file name="02_rss_link.phtml" hash="cacf7866f6dd54ab37a217d7cb7466c7"/><file name="03_footer.phtml" hash="24d3a1e0224a9e59f5daa0d2660e76b4"/><file name="04_footer_is_tree.phtml" hash="098332bf5a88d8529ea3ef57ed9c75f4"/></dir><dir name="sibling"><dir name="child"><dir name="list"><file name="01_content.phtml" hash="5a1f524b49cf120201a90ee695f90544"/></dir></dir><dir name="list"><file name="01_content.phtml" hash="5a1f524b49cf120201a90ee695f90544"/></dir></dir><dir name="view"><file name="01_content.phtml" hash="205b0b21c650f28ff0e364d6ec8ce552"/></dir><dir name="widget"><dir name="link"><file name="01_content.phtml" hash="11d9e23bd1c2f8cb8a0f857c8bb393d8"/></dir><dir name="view"><file name="01_content.phtml" hash="f89f40babc5af3cd30597cd097ad9ab9"/></dir></dir></dir><dir name="rss"><file name="01_content.phtml" hash="172a345ace9b7ec84ad2e18f51d48257"/></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><dir name="Namespace_Module"><file name="01_content.xml" hash="4495317a1b8392281b68f07a546c56c2"/></dir></dir></dir><dir name="locale"><dir name="en_US"><dir name="Namespace_Module"><file name="01_global.csv" hash="f38bee4515bcc54da7f781a0bac1da66"/><file name="02_entity.csv" hash="97e1a2056ec2f49acc1c5c9598ef10d7"/><file name="03_attribute.csv" hash="0bc9532d35587f2225e398156cc3ef7f"/><file name="04_global_status.csv" hash="507d9e24387e6935b1ee629e8432f842"/><file name="05_global_rss.csv" hash="df495f10c1e7d7d3fb770d8b406b9f9b"/><file name="06_global_seo.csv" hash="1c5889d31d3410540715b6c866966178"/><file name="07_attribute_yesno.csv" hash="20eaf2d5eaa8224e5fa1c7a63634b1c0"/><file name="08_global_file.csv" hash="8bebcdd48d5ae7b533cc53e789f03ef2"/><file name="09_product_relation.csv" hash="b96f377dfa788f2772f2f8b7f156aebd"/><file name="10_relations.csv" hash="d0f7a10c89d21ade4ba17cd73dbb42fb"/><file name="11_global_tree.csv" hash="279098d455e2c1adcde8668e042541d7"/><file name="12_tree_entity.csv" hash="e3465d0427eadb644654d8e614f6a209"/><file name="13_url_rewrite.csv" hash="87e5df1e3e95f0751f362b5acf37ddce"/><file name="14_api.csv" hash="58e27bb8ef0a04a711e20207dce037a4"/><file name="15_api_entity.csv" hash="5f79e38c8a97f2e171eedc2d5246910d"/><file name="16_api_product_related.csv" hash="f6875de876ab6e34595e5513aa35628b"/><file name="17_api_tree.csv" hash="99f44156e5181aa598f1d217b8c1cbc7"/><file name="18_api_sibling.csv" hash="096605fae72bf35317dc4601406a23d0"/></dir></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="namespace_module"><dir name="tree"><file name="01_content.css" hash="7929b899ed457d539637d5083286bed4"/></dir></dir></dir><dir name="images"><dir name="namespace_module"><dir name="collapsedgif"><file name="01_content.gif" hash="ef74c08289e94b7aae81766fb00d4195"/></dir><dir name="collapsedpng"><file name="01_content.png" hash="0613450d25c762b6a40c51768b02462d"/></dir><dir name="expandedgif"><file name="01_content.gif" hash="3f5512a54f359343273caf7b3787ee8a"/></dir><dir name="expandedpng"><file name="01_content.png" hash="f7f28ae897708c78b28ead22c3692bb8"/></dir><dir name="line1gif"><file name="01_content.gif" hash="65b0c812c8d57ea72b84fc69a077a40a"/></dir><dir name="line1png"><file name="01_content.png" hash="4e01064a2c78b8885f65ff7a40f78c02"/></dir><dir name="line2gif"><file name="01_content.gif" hash="95fc5c58069ece5eb44e198ee53b3fe1"/></dir><dir name="line2png"><file name="01_content.png" hash="6adbb4ca64d943f5ee5528d713757fde"/></dir></dir><dir name="placeholder"><file name="entity.jpg" hash="6361a80d5ca988fcec45ad3767322e5e"/></dir></dir><dir name="js"><dir name="namespace_module"><dir name="tree"><file name="01_content.js" hash="1b8a1e7b1cb23e7a87e05b33a34523a0"/></dir></dir></dir></dir></dir></dir></dir></dir><file name="modulecreator.xml" hash="f7c783a31b4bc8c3836642702ecf91ed"/><file name="system.xml" hash="5446234bd875fb0740fc7430a019f987"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ultimate_modulecreator.xml" hash="f21bb3c8940eb81307817c0491caf300"/></dir><dir name="template"><dir name="ultimate_modulecreator"><dir name="edit"><dir name="tab"><dir name="entities"><dir name="entity"><file name="attribute.phtml" hash="586ebc5ca473dfcd1a0a47917c4353e4"/></dir><file name="entity.phtml" hash="ca653f56e1ad2fb6c6e54c64a462e9eb"/></dir><file name="entities.phtml" hash="df9179ffd5e72a04cf4740488521f0ce"/><file name="help.phtml" hash="f57b75302fc0e90e2cb5bba49946cd82"/><file name="relation.phtml" hash="17a41ecbecdf7af519d11c3d026a800b"/></dir></dir><file name="edit.phtml" hash="8d10e82ae89d9e4ede28e6c59c9e724c"/><file name="tooltip.phtml" hash="d3598ad3f978d708b1f7f36feee39560"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ultimate_ModuleCreator.xml" hash="324d2b364541a7355c9ff4248c0518f2"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Ultimate_ModuleCreator.csv" hash="0a37d4e248c2dcccc63dac60ddbc3b3f"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="ultimate_modulecreator.css" hash="781a789d72dc08f660479543ff09b143"/><dir name="images"><dir name="ultimate_modulecreator"><file name="logo.png" hash="9c9ca3b07295cab1cb1503865905ee50"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="LICENSE_UMC.txt" hash="1372b858e10f4c6feb2967766a0b7a62"/><file name="readme_UMC.txt" hash="7b8cd5baf640a5078be5c7136b56b5d9"/></dir></target><target name="mageweb"><dir name="."><file name="modman" hash="f2259e0ec25ae1812bf192bdddb1fa7a"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ultimate_ModuleCreator</name>
4
+ <version>1.6.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/MIT">MIT License</license>
7
  <channel>community</channel>
9
  <summary>Develop custom Magento modules without writing any code. Use a module creator. Use this module creator</summary>
10
  <description>This module allows you to create custom Magento modules for your own entities. You can create as many entities as you want in one extension, you can establish relations between them, decide to generate only back-end pages or both back-end and frontend pages.</description>
11
  <notes>Bug fixes: &#xD;
12
+ - upladed images &amp; files lost when saving a tree entity twice.&#xD;
13
+ - widget chooser broken for tree entities.&#xD;
14
+ - translations missing.&#xD;
15
+ Features:&#xD;
16
+ - added subtree widget for tree entities.</notes>
17
  <authors><author><name>Marius Strajeru</name><user>tzyganu</user><email>tzyganu@gmail.com</email></author></authors>
18
+ <date>2013-05-29</date>
19
+ <time>21:32:20</time>
20
+ <contents><target name="magecommunity"><dir name="Ultimate"><dir name="ModuleCreator"><dir name="Block"><dir name="Adminhtml"><dir name="Modulecreator"><dir name="Edit"><file name="Form.php" hash="cb4328ae858a31a31d76016e50b56739"/><dir name="Tab"><dir name="Entities"><dir name="Entity"><file name="Attribute.php" hash="daa6787fa3f72150fc86c4350be932da"/></dir><file name="Entity.php" hash="8d5b07f735a5a7107f1abf66bbb482da"/></dir><file name="Entities.php" hash="65602b8daaa8585d9c94d7a4d8d7dcde"/><file name="Help.php" hash="304c68d68e9adf0962817e27877683b6"/><file name="Relation.php" hash="43730e74747b8e6e5985eee259e6db07"/><file name="Settings.php" hash="dee31d423d26a3efbc773530ac847afb"/></dir><file name="Tabs.php" hash="578af9256efb3d516db14db7e396e5e3"/></dir><file name="Edit.php" hash="491948d86e2e3a50fa185a407997c163"/><file name="Grid.php" hash="96ef8fa066b89937712b44991191f4de"/></dir><file name="Modulecreator.php" hash="b2630018b6f103d1a3f9e92ed7de7a54"/></dir></dir><file name="Exception.php" hash="aaef7086ff700d7132418cf68629246f"/><dir name="Helper"><file name="Adminhtml.php" hash="f913d91b1041032b35e4d0ca2fd20205"/><file name="Data.php" hash="19418525ea13a4a2d4f3d36d5af6d884"/></dir><dir name="Model"><file name="Abstract.php" hash="33a186edb30b8ff3f54fda6690a90a2c"/><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Codepool.php" hash="045f0555fc545799148627e081ca8727"/><file name="Install.php" hash="7fb2fd108b5bed63b31ab9cfd0da25f5"/><file name="Layout.php" hash="3d63a2221b3a93926c662b3c10effc2c"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Type"><file name="Abstract.php" hash="db70512d5a1123e8065c2237b0ce5960"/><file name="Country.php" hash="f1d8b4418c223baafed7c218acf1b640"/><file name="Decimal.php" hash="54d30f34faa1b998073a78a9abdb13b8"/><file name="File.php" hash="a8e18228577beb612f202acbe0ddb41a"/><file name="Image.php" hash="80211878524ee9ed71096d30b1c52c42"/><file name="Int.php" hash="754778ace18f36c77e5de96c2ccc4273"/><file name="Text.php" hash="237217feda93dadf93a63f181ebb8793"/><file name="Textarea.php" hash="befe5d84f69efc1a85b7f258b50ff950"/><file name="Timestamp.php" hash="05759eaa9d07cee6c47764eaaab5c292"/><file name="Website.php" hash="2ea3d85dd5e2ffa846a3da376e70ffcd"/><file name="Yesno.php" hash="689678378cfabfb54575653d109d79cf"/></dir></dir><file name="Attribute.php" hash="14b859fbda32ab06c8587e36151e6a97"/><file name="Entity.php" hash="7a17ff6e2aef523643a3ae1dfba3365a"/><dir name="Module"><file name="Collection.php" hash="0e413b976cbc9649ec982fe0f4b95dd1"/></dir><file name="Module.php" hash="f1058e525ad61b024da12b3fb3201cce"/><file name="Relation.php" hash="d026e9113cf9ad8c65fc4c78bdac5852"/><file name="Writer.php" hash="b47341646a1882d77e57cf6a5b30ad49"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ModulecreatorController.php" hash="11ee92957c8099af688993543b9f849e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="755c04b748c41ced20f41c725acc95c2"/><file name="config.xml" hash="f70b7a6fd70ba98055ddee50d18981da"/><dir name="m"><dir name="app"><dir name="code"><dir name="cp"><dir name="Ns"><dir name="Md"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><dir name="Entity"><file name="01_content.php" hash="59347ed053e0fe3dc2e25a5c5490ecd4"/><dir name="IsTree"><file name="01_content.php" hash="1eda50311bcf910106a49ad54f1681fd"/></dir></dir></dir></dir></dir></dir><dir name="Entity"><file name="01_content.php" hash="5dfc799aeee50cc5ef32d356c1cc176f"/><dir name="Abstract"><file name="01_content.php" hash="dfe60775e0f319347a8937a17733c751"/></dir><dir name="Edit"><file name="01_content.php" hash="21d1cd84da305a41e516752e39c12404"/><dir name="Form"><file name="01_content.php" hash="39f68c93dba53e650f502776c03caf20"/><dir name="IsTree"><file name="01_top.php" hash="13336661cfaf0f25ceef484d28d1f99f"/><file name="02_product_relation.php" hash="adee6754a75247b7d401d8f774d3918b"/><file name="03_entity_relation.php" hash="7f06c1f227ff6e8e1f64606bc1da6d3a"/><file name="04_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="IsTree"><file name="01_content.php" hash="6f8ab2c71f28a7618db8b94c311d6f13"/></dir><dir name="Tab"><dir name="Form"><file name="01_top.php" hash="9f6681f6bc3e012a8c711739a0ed6ae1"/><file name="02_image.php" hash="8dbf5010de2c46aabb02cd7a4df6f45e"/><file name="03_file.php" hash="64ede5038fe0edfec08671a5ca521777"/><file name="04_wysiwyg.php" hash="d25a58b233bd88a2e6d1fd5a79398394"/><file name="05_wysiwyg_is_tree.php" hash="6ef452bba45e48bbfc370ea24b61d6e0"/><file name="06_path_tree.php" hash="9991a81df109b0abbc8bd06a26694d1b"/><file name="07_parents.php" hash="476f7ebd1b04a879f3dd51b1913f9a9d"/><file name="08_attributes.php" hash="44c81d580dcf072b2ed9b5cc90fb1fac"/><file name="09_url_rewrite.php" hash="fdcf74d7a3abe5bfa32db1d5f042d8e2"/><file name="10_status.php" hash="ade9e66ee2dd546ebea8c9800b378a88"/><file name="11_rss.php" hash="0a122d46cc4826a0bd62b2f5d52b3fdc"/><file name="12_stores.php" hash="48e5e8e12b9d544496da7ee1a4997868"/><file name="13_add_values_not_tree.php" hash="dc7ba40ed78eb43b08fc46c235029c8c"/><file name="14_add_values_tree.php" hash="c569ce680f4c5328292d6bb4f4c37e69"/><file name="15_get_entity_tree.php" hash="3d9027f073bf28f89aecd6b224c350ca"/><file name="16_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Meta"><file name="01_content.php" hash="3c47ce08d25eb90d91629e0647a01d5c"/></dir><dir name="Product"><file name="01_content.php" hash="e42fb1044c47e7e1ba7c456f057b9558"/></dir><dir name="Sibling"><file name="01_content.php" hash="45cbbc5d065f5e0402a8340e14e5e6b2"/><dir name="IsTree"><file name="01_content.php" hash="0809c980a4d5059bc679e37762853f5e"/></dir></dir><dir name="Stores"><file name="01_content.php" hash="db8bf44c310b5e2522bd1dd643af5a93"/></dir></dir><dir name="Tabs"><file name="01_top.php" hash="342ee8baf7d6a634946df4f284acf8b3"/><file name="02_seo.php" hash="b24cb92d1fa9f7984163293e43f79335"/><file name="03_stores.php" hash="5da8b692e09e4c5afe1acea30029a7dc"/><file name="04_relations_tabs.php" hash="3f1eba9e9a7bf177185364cffc8468ba"/><file name="05_product_relation.php" hash="aee681c7021e9efad07a39bc8f8cf56d"/><file name="06_footer.php" hash="01b6273dfbf342c1f984c1e10b631b65"/><dir name="IsTree"><file name="01_top.php" hash="69d34e826efe0e44d6dcafe46fd8aa79"/><file name="02_seo.php" hash="b24cb92d1fa9f7984163293e43f79335"/><file name="03_stores.php" hash="5da8b692e09e4c5afe1acea30029a7dc"/><file name="04_relations_tabs.php" hash="50d5a9065062cf44f11a8aba92140790"/><file name="05_product_relation.php" hash="c5dc78d7c883af529b3adf72770d3dde"/><file name="06_footer.php" hash="5cad78a0f4dc4a2531cb6195e5e9ea5a"/></dir></dir></dir><dir name="Grid"><file name="01_top.php" hash="1a0c8754c5482692ae460fd6aafcfa6b"/><file name="02_columns_top.php" hash="1d28265e98b06fe61edde000c0d28db6"/><file name="03_parents.php" hash="011f4f2895cbaa33e753168131feedee"/><file name="04_grid_attributes.php" hash="2e7a6d5f6333b44ddf6792898a6e01c1"/><file name="05_url_rewrite.php" hash="b35f254eefea0d714de7ec6bdf5f2c4b"/><file name="06_grid_status.php" hash="f1d657a64ad855219882ac8aa6ead5b5"/><file name="07_stores.php" hash="083304c47194a612232e1554b3afdc70"/><file name="08_created_at.php" hash="15f2bf1aeab4512931cfd13461466dbf"/><file name="09_updated_at.php" hash="b416ed24d9613f8332f4191f0378c1a3"/><file name="10_grid_actions.php" hash="fbc479c06560e193e4c2177358eadc07"/><file name="11_grid_export.php" hash="3da336230cb919e5dd36e39d21ea3f0e"/><file name="12_columns_footer.php" hash="1cdf225b4a61a0036903c4e251484684"/><file name="13_mass_action_top.php" hash="4979fc362c7c0666bcfe39e89f3a88f4"/><file name="14_mass_action_status.php" hash="d504216f92f489be7857bee37cf0771c"/><file name="15_mass_action_flags.php" hash="9b0d9088708f5e84b50e7ac6ee06a632"/><file name="16_mass_action_parents.php" hash="7b36b4b3954e3913e6bdafb822ca6634"/><file name="17_footer.php" hash="671e5e1d49c4023a016c0bd1fb53fb31"/></dir><dir name="Helper"><dir name="File"><file name="01_content.php" hash="c00cdcedf171c992bb88a20402bfd70d"/></dir><dir name="Image"><file name="01_content.php" hash="62a55ac8856f4dc555d6dc373c2de7d5"/></dir></dir><dir name="Tree"><file name="01_top.php" hash="8b8eaeea900cceeccb0b12717fe440f7"/><file name="02_status.php" hash="3a0cada5dfb430e3d7b9890e3f6ac2ba"/><file name="03_footer.php" hash="1e7043194d0104f8e39c6418af00a7f4"/></dir><dir name="Widget"><dir name="Chooser"><file name="01_top.php" hash="61b31cd249d7f23aeb456eeff337c9c0"/><file name="02_top_status.php" hash="ae8d09557d6c9aa3a920e148f0cdd7d6"/><file name="03_content.php" hash="cf1a5893817a61c410f0ea5071cd75f6"/><file name="04_status.php" hash="6fb78962dd9ffb30ee5d750876a26e5d"/><file name="05_footer.php" hash="5d257efc9e4b41bf2a0efb46190e59ec"/><dir name="IsTree"><file name="01_content.php" hash="f16e81972cc4add59cefc51e37599547"/></dir></dir></dir></dir><dir name="Helper"><dir name="Wysiwyg"><file name="01_content.php" hash="50f63445cbb78d5eb1ff42eed07e76af"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><dir name="Entity"><file name="01_top.php" hash="9f3fdfa832ef7be2e51a4807d87f4248"/><file name="02_status.php" hash="716a6a2f8243c5048f90584f0bd7f888"/><file name="03_footer.php" hash="7afa811ee3b39c3717cbb8f484e32405"/></dir></dir></dir></dir><dir name="Entity"><dir name="Catalog"><dir name="Product"><dir name="List"><file name="01_content.php" hash="f9a6ec0ca31b9525357f447b5471256f"/></dir></dir></dir><dir name="Child"><dir name="List"><file name="01_content.php" hash="30ac249d25535c1a522f96bae56a4f75"/></dir></dir><dir name="Children"><file name="01_content.php" hash="e3f2d736896f8b81132ab0ce4735d08a"/></dir><dir name="List"><file name="01_top.php" hash="70e1c31772d2afaf9f27af0d5f83939c"/><file name="02_status.php" hash="716a6a2f8243c5048f90584f0bd7f888"/><file name="03_footer.php" hash="369738e4147fd032b12c1df4aa01ed9c"/><dir name="IsTree"><file name="01_top.php" hash="70e1c31772d2afaf9f27af0d5f83939c"/><file name="02_status.php" hash="716a6a2f8243c5048f90584f0bd7f888"/><file name="03_center.php" hash="89eba8f23a4e2e23131fc5b348e12720"/><file name="04_status_draw.php" hash="05f41e4fa26f8644069191a7621b6e3f"/><file name="05_children.php" hash="b59bb1c9e92637ceab3196618b8deee7"/><file name="06_active_children.php" hash="120eb8df2a740a128e0aed2c9f75cbd3"/><file name="07_active_children_no_status.php" hash="11df90ae4209241f1a3361523e9b490c"/><file name="08_footer.php" hash="e0ec1d8776ac3dc8ff3ff46f9acc8804"/></dir></dir><dir name="Rss"><file name="01_top.php" hash="3fafe99eb2eca968647283a10e847ad5"/><file name="02_status.php" hash="7a81b20fbd0ca4ac140c263e481a5b06"/><file name="03_content_top.php" hash="6e2c16bd170842cc88610692439c4674"/><file name="04_content.php" hash="f556d8f00acfa61f93bbc9b09da3508b"/><file name="05_footer.php" hash="0514ad15059f8411d3315d111aac5b84"/></dir><dir name="Sibling"><dir name="List"><file name="01_content.php" hash="09e6f490b8b2d73efdbecbb68737c81f"/></dir></dir><dir name="View"><file name="01_content.php" hash="b6824731ad9bb41ef1f84b4359596f67"/></dir><dir name="Widget"><dir name="Link"><file name="01_content.php" hash="2862dcc4937c58fbee284764732e733c"/></dir><dir name="Subtree"><file name="01_content.php" hash="eccc92ed894c9df674d142e749a338fb"/></dir><dir name="View"><file name="01_top.php" hash="7ef1885e33a674dc952230c7a50aca81"/><file name="02_status.php" hash="425b825164587bb9c96ebbb68c9a54f7"/><file name="03_template.php" hash="c61c97e00373d41bc7d531c37dd7aae7"/><file name="04_status.php" hash="573160846b9e8693e966c0881103f25e"/><file name="05_footer.php" hash="1009acd5e8f54dbedb651ecffb283df1"/></dir></dir></dir><dir name="Rss"><file name="01_content.php" hash="ea37b93ec747a042dd51e2e4eaeb22ac"/></dir></dir><dir name="Controller"><dir name="Adminhtml"><dir name="Module"><file name="01_content.php" hash="938c09e00f8a7045d70c7e97dd478df8"/></dir></dir><dir name="Router"><file name="01_top.php" hash="c9dd518945d5ab5fb7508084c2206125"/><file name="02_entity.php" hash="8ba8993dd992d580cd5e3b6ced303d38"/><file name="03_footer.php" hash="17469d98f81368c7e35deb1b7321cc19"/></dir></dir><dir name="Helper"><dir name="Data"><file name="01_top.php" hash="44aa03c717b24b0086230271b07f195a"/><file name="02_entity.php" hash="378423c2b9ba4ac86328e094d6e60946"/><file name="03_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Entity"><file name="01_top.php" hash="6e37881fbe0898e930a5d7b3d1ce606f"/><file name="02_tree.php" hash="8e6d460e528f4b0e3e74bbbff06336dd"/><file name="03_rss.php" hash="9e9fa595a4a7ec7f159e1d64620119ae"/><file name="04_file.php" hash="44bc7ce84f603100f67dedc1edf3cc0d"/><file name="05_footer.php" hash="2e687c8e025cca2e891ac925406f277c"/><dir name="Image"><file name="01_content.php" hash="e09360ea17dff94a611787004030275b"/></dir></dir><dir name="Image"><dir name="Abstract"><file name="01_content.php" hash="b39acaba6cf4d242689147dfffc8f095"/></dir></dir><dir name="Product"><file name="01_top.php" hash="20709afdafe7e3fd280e7c346a441b0c"/><file name="02_content.php" hash="33fa587ea74ff5caae02e2263bd6092b"/><file name="03_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="Model"><dir name="Adminhtml"><dir name="Observer"><file name="01_top.php" hash="abec4c7c295fb57c4086fdf9d22cdf28"/><file name="02_entity.php" hash="6c64bd2314a24f6d2dafa4dedb448b8c"/><file name="03_entity_save.php" hash="6b6db7bcb0cffefc6c3406df406c497a"/><file name="04_entity_save_tree.php" hash="aca15cbb7afc5a832488addb56df157e"/><file name="05_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Search"><dir name="Entity"><file name="01_content.php" hash="824a247bcd2cadb8f1da16ec3034d1c1"/></dir></dir></dir><dir name="Entity"><file name="01_top.php" hash="37daaca4671c58ef2fb2eaa50e0d7a7b"/><file name="02_var_sibling.php" hash="cbbdeeaa7082b22b3a57508dc6bcd4fa"/><file name="03_var_product_relation.php" hash="50cd6433f6617ed2d47c2a9ab9bee4d1"/><file name="04_construct.php" hash="81fb22faf1dc0c05920f5db34061100c"/><file name="05_url.php" hash="6d955735b11308ec8087bfbf2d0c6078"/><file name="06_url_rewrite_not_status.php" hash="514c4998931a817a55e652ec6fa4a322"/><file name="07_url_rewrite_status.php" hash="c5b3cbcffc16a48989a5491e4abd2c4b"/><file name="08_editors.php" hash="615bc07ef7e14bc892bb567e3c22cef7"/><file name="09_after_save_top.php" hash="f456ae82840db694e49d527d6ad23f8f"/><file name="10_after_save_product.php" hash="7e85bbf889a5beededa975831b573d97"/><file name="11_after_save_sibling.php" hash="a7ea726ae5b4b19f78773a563a7196bf"/><file name="12_after_save_footer.php" hash="1af792cf3f94391bbe2b261a0d927a8c"/><file name="13_product_relation.php" hash="890ad6b1cad708779f0e5cb1aa745f1a"/><file name="14_sibling_relation.php" hash="09f99a030f1e9e09864cee3e5f92457c"/><file name="15_tree.php" hash="c577ef6c4d67da82d5226162345ef896"/><file name="16_tree_status.php" hash="64da48d68c1af82304cea4ee2c21800e"/><file name="17_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="Api"><file name="01_top.php" hash="c1956fcb05a9cb5130a2b736875deff7"/><file name="02_product_relation_info.php" hash="1c7bc902ac26ce46dfa0d7fc9928550b"/><file name="03_sibling_info.php" hash="e47f87465f7bc8ef58513290f79059a3"/><file name="04_info_footer.php" hash="f86ab31eddfc4e564e856d6e2e7dae19"/><file name="05_tree.php" hash="c7748f2727f04dc6abd56f7857a83fc6"/><file name="06_product_relation.php" hash="e8e82e554b7da081ad41490255233686"/><file name="07_sibling_relation.php" hash="44840138eaed0a057d6435107e9e0bf0"/><file name="08_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="V2"><file name="01_top.php" hash="e9b8c7bcd7cc8a16bcd0d88f3f889981"/><file name="02_product_relation.php" hash="cdf0cbb621852613df86f91988463608"/><file name="03_sibling_relation.php" hash="c323564cb482d85f774415585ed2b1df"/><file name="04_footer.php" hash="6a6c4437c80ae02dc771877d93a38b6c"/></dir></dir><dir name="Product"><file name="01_content.php" hash="d8dfaa0ac8ba132bf95d3d65452d9795"/></dir><dir name="Sibling"><file name="01_content.php" hash="ef2fc76324ca0afcaabab7f8272bd526"/></dir></dir><dir name="Resource"><dir name="Entity"><file name="01_top.php" hash="8584bb2dba4e8da350ad36ee91ba7094"/><file name="02_tree_var.php" hash="8a673f57e7979c6c0aa2dc38c8f29c38"/><file name="03_constructor.php" hash="c52e8b2694802192d4e4abe8ea0bac35"/><file name="04_not_tree.php" hash="d7860bfbba616ec75aaa23480d35e462"/><file name="05_tree.php" hash="153094ca24b380a2708ecb7532aaca18"/><file name="06_tree_before_save_no_url_rewrite.php" hash="721b246ab7c8011faa810f9c509cbc76"/><file name="07_tree_before_save_url_rewrite.php" hash="872a4a6d7b408bf621a52739e5d8438a"/><file name="08_children_no_status.php" hash="41b492cea369e6303ad444b16f016857"/><file name="09_children_status.php" hash="61bfda77779840f9855311137112979e"/><file name="10_content.php" hash="ad6a926a11cf4ca722b896a78bbeadab"/><file name="11_url_rewrite_status.php" hash="e32e6c2ce2419fa01181a6bc62236c07"/><file name="12_url_rewrite_not_status.php" hash="81e1b3574fb2766760b7baf9b56b89ea"/><file name="13_url_rewrite_before_save_not_tree.php" hash="2d51e7bda2f717d22bd17593851f65fa"/><file name="14_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="Collection"><file name="01_top.php" hash="d07e1e18d79b3be34193b78ff2bb0a34"/><file name="02_tree.php" hash="22c1250f162919870d08ec9aa71b949e"/><file name="03_tree_status.php" hash="fe745dc63220b3ddd5f799921077ac51"/><file name="04_product_relation.php" hash="d2f707b97df2ecf2d088aebeeb660822"/><file name="05_sibling_relation.php" hash="4563330e972ef0b0f4b96096b8594727"/><file name="06_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir><dir name="Product"><file name="01_content.php" hash="1545e16c25769395d3d95ec03a8cd4b3"/><dir name="Collection"><file name="01_content.php" hash="401d1dc800ddf76ea155160f3e02d162"/></dir><dir name="IsTree"><file name="01_content.php" hash="0a1b1718dec4ec27dc5310d45b388e2e"/></dir></dir><dir name="Sibling"><file name="01_top.php" hash="e78ca594012a642782fc2292084f81ca"/><file name="02_save_relation.php" hash="43dbb46224c1f8ca4a658a6a5d5077ad"/><file name="03_save_relation_tree.php" hash="1b0b458b7327dd6beaca0455d4268921"/><file name="04_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/><dir name="Collection"><file name="01_content.php" hash="c48de1443823a6ff51517f8a6cab0599"/></dir></dir><dir name="Tree"><file name="01_top.php" hash="d286ac636149b07c3e1993eb4d157529"/><file name="02_status_top.php" hash="f4151c843a394922807dcb59ce6807d8"/><file name="03_content.php" hash="ec13ef4bc7eb96364605b8e6d214c9fb"/><file name="04_not_status.php" hash="d1b54f100c018fe6d5ae965e5aac8dd8"/><file name="05_status.php" hash="df0ef83645e0784f4c33534b976421ee"/><file name="06_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="Setup"><file name="01_content.php" hash="335c579a20a627c5a403e3c7ac6156c0"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Module"><dir name="Entity"><dir name="Catalog"><dir name="ProductController"><file name="01_content.php" hash="b904ef31283029cf808cc42719208874"/><dir name="IsTree"><file name="01_content.php" hash="989ec00484ec5ef3f04df8f9f0007eee"/></dir></dir></dir><dir name="WidgetController"><file name="01_content.php" hash="8d934e135109f74ac036b84d6939f6c9"/><file name="02_tree.php" hash="d55efcf5646338d0922c5ae22b1ba870"/><file name="03_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="EntityController"><file name="01_top.php" hash="10fa062eef953d4236da1dfc135717d1"/><file name="02_upload_image.php" hash="c111546b644ffafd26c102f095334f95"/><file name="03_upload_files.php" hash="90fd33445b8889a23e5af035da89c15e"/><file name="04_save_product_relation.php" hash="29b35c54da6069c72edd245c42aa5369"/><file name="05_save_sibling_relation.php" hash="e9fe7f25344280b483db7108cc3ae0b1"/><file name="06_save_sibling_relation_tree.php" hash="ee1dcb0a6924b8c7c074a63ec2331f53"/><file name="07_save.php" hash="11c73c7cfc8c76738fce70c466ba7c63"/><file name="08_exception_upload.php" hash="216185c48b0b0937597939a95026a1c9"/><file name="09_exception.php" hash="b4f42e91747b48665a6287faf0342bc0"/><file name="10_center.php" hash="bc1d289241de1722abb5685c63352c2e"/><file name="11_mass_status.php" hash="31d3560d9ec69d1e5f190d34ef9f54a2"/><file name="12_mass_update.php" hash="adc4ce198da420c75a45f32f9deb9d8f"/><file name="13_mass_parents.php" hash="2f6af9624a7c790d0995fb445e3b8af5"/><file name="14_product_relation_actions.php" hash="772e8ec1661ca45871bc962bdf1bbbcd"/><file name="15_sibling_actions.php" hash="8833208a9d834e7d5fda272a6b827b53"/><file name="16_sibling_actions_tree.php" hash="2994bf89f5d90bfc90e94a76444a4719"/><file name="17_footer.php" hash="044299b6435f621987f31c7c540f113c"/><dir name="IsTree"><file name="01_top.php" hash="e651cfbf97dc7451b38974611a1be692"/><file name="02_wysiwyg.php" hash="3c2ec4bab3895ca6a43bd0416b827028"/><file name="03_save.php" hash="bf3757fb1a44b0b786741dc1d98ca8bc"/><file name="04_upload_image.php" hash="c111546b644ffafd26c102f095334f95"/><file name="05_upload_file.php" hash="90fd33445b8889a23e5af035da89c15e"/><file name="06_save_continue.php" hash="b277fb6a9cdb4a28b43416331154f9b8"/><file name="07_product_data.php" hash="d9050ba8bf3d0780d5077a606184e09c"/><file name="08_sibling_data.php" hash="5edd1b8750aef7c7e4fc0137d038a867"/><file name="09_real_save.php" hash="c59972f30bbca76b52376696013d9f82"/><file name="10_product_relation_action.php" hash="1a9875a99162f151e67b827e695f22a9"/><file name="11_sibling_actions.php" hash="0c165d6714a5a4b6203c9d021cdba223"/><file name="12_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir></dir></dir><dir name="EntityController"><file name="01_top.php" hash="eec876d7b63d893886bb334b09480af4"/><file name="02_list.php" hash="dfcf0e406a5a6548637bd50ce06bb1f6"/><file name="03_list_seo.php" hash="04dedfdc059b8b4b89c7c9ccc403a4b4"/><file name="04_list_footer.php" hash="1d41a3331d006d0a04ff32bb4085210b"/><file name="05_view.php" hash="64c7b0b4222d351b20885b51a6153158"/><file name="06_view_status.php" hash="fd0bc040dc135e3469757569ffcf7899"/><file name="07_view_status_tree.php" hash="2b36e7be800e6c59e12a87b0ef697097"/><file name="08_view2.php" hash="af3fc07f58fa608f8f70f2e0264fe0bd"/><file name="09_breadcrumbs.php" hash="8157b6c12ecd17df9acdf095e7eb75db"/><file name="10_breadcrumbs_tree.php" hash="f2391a45fb1ce3e64de454981973cc23"/><file name="11_breadcrumbs_footer.php" hash="b41efc51d35a4f93a3b00dc5f899e1b5"/><file name="12_view_seo.php" hash="2e56f0ef104d419dee88abf037fe9f18"/><file name="13_view_footer.php" hash="3be2b1b314c50af6fd03c53647f06e56"/><file name="14_rss.php" hash="6e2fc4485e7a2b6c3508d05d7b71748d"/><file name="15_footer.php" hash="cbb184dd8e05c9709e5dcaedaa0495cf"/></dir></dir><dir name="data"><dir name="namespace_module_setup"><dir name="data-install-0.0.1.php"><file name="01_top.php" hash="d63e4a5fbe4435eadd52abf1534ee829"/><file name="02_entity.php" hash="df6b285616bf2741ae9288e5d9e0758e"/></dir></dir></dir><dir name="etc"><dir name="adminhtml"><file name="01_top.xml" hash="11dee4372e147adfdd6dcf549207d52c"/><file name="02_entity_acl.xml" hash="6afabb39251e5233380992ec92a7a49f"/><file name="03_center.xml" hash="c3daf849d2cc4f2b9bb10319466df7b9"/><file name="04_entity_menu.xml" hash="c940e5491e196974bd81421566bec92d"/><file name="05_footer.xml" hash="567de2825a456f5c8de1c2d3f718b333"/></dir><dir name="api"><file name="01_top.xml" hash="7836cc079929002f49056da0be781555"/><file name="02_entity_api.xml" hash="56522fd929feb8847a9b967cf476b43f"/><file name="03_resource_alias.xml" hash="b5a94f1f1ce1b7cc87fca2c80e98027a"/><file name="04_entity_resource_alias.xml" hash="532ce8db90f811adc74dc024b7024602"/><file name="05_v2.xml" hash="5fbe5be841e5295fbc5ea8d2ae85543b"/><file name="06_v2_entity.xml" hash="0d5d9f9f702c83233a18e38bc3d5c2cb"/><file name="07_acl.xml" hash="f901a483416fdaed90b5777c3bc8a8e2"/><file name="08_acl_entity.xml" hash="6c30398b3df24d454653a2a56f3fe790"/><file name="09_footer.xml" hash="080e838a7ed6930c7bf9cf17e4c6c7e8"/></dir><dir name="config"><file name="01_top.xml" hash="ab60a876013ce736e83c89e6e9be4e25"/><file name="02_tables.xml" hash="806cef86423c771c8909ba69b6780dee"/><file name="03_siblings_table.xml" hash="13cdf74c83b7d86d15717b7e31bcc5ed"/><file name="04_relation_table.xml" hash="5e50710deedcd19316110a4db8dbfe5c"/><file name="05_global.xml" hash="9e1870511df355e90da3f86acb7e88cf"/><file name="06_url_rewrite.xml" hash="d7e710748d570d29aca3d15ec4424f2d"/><file name="07_adminhtml.xml" hash="f91e8a152a9e4b7c331df0583e987c7c"/><file name="08_relation_product.xml" hash="de83346f1f657f61a23251f37016bd99"/><file name="09_global_search_top.xml" hash="24e3dddbf6fc52170457a0804c07e060"/><file name="10_global_search_entity.xml" hash="c9e6a985c2292d82c0e648b0fea07837"/><file name="11_global_search_footer.xml" hash="46e34587440f1aa3462eba45aca78be7"/><file name="12_admin.xml" hash="d4c5c6313071ffa54afb69782dbcc21e"/><file name="13_frontend.xml" hash="9617988c4eb5ab502eb57349ab1a2dec"/><file name="14_default_top.xml" hash="a306c05cad3fd6c4c46f5c162e52df68"/><file name="15_default.xml" hash="fc553b2555e09b1ab639b58649b5b4cf"/><file name="16_default_footer.xml" hash="40004610d67a1bcf5ecf317917a1b0ab"/></dir><dir name="system"><file name="01_top.xml" hash="a250611cd158a2b0f9c0adef5b3d8074"/><file name="02_entity.xml" hash="0e789a6caeecd1e7223ab6c44ca1504e"/><file name="03_footer.xml" hash="2ead9ca0742a78448b5db442581d4cd9"/></dir><dir name="widget"><file name="01_top.xml" hash="29a6efa02a0f04ce056cc53d0b4e2272"/><file name="02_entity.xml" hash="102a8cfb8f0a2c330768add309e25e97"/><file name="03_tree.xml" hash="58a3fc6c42db65a98ccd54b21c71595c"/><file name="04_footer.xml" hash="b84026fabe4a09ef682aac220eccf07a"/></dir><dir name="wsdl"><file name="01_top.xml" hash="032cf4d009950a895bcc746d14520c4a"/><file name="02_entity_types.xml" hash="da926f1d401ef0cf6981478e600ce590"/><file name="03_schema_footer.xml" hash="11cdc73afaf5c18317842cfa4bdb18c5"/><file name="04_entity_messages.xml" hash="c6a3c8f421237712c9b6d0c18ffee1b3"/><file name="05_porttype_top.xml" hash="a0f28bf86ea809a274f5ace26c1151a1"/><file name="06_porttype_entity.xml" hash="a12705979c73a95665bfb0acec67020a"/><file name="07_porttype_footer.xml" hash="edd2f81a01c7a7ab53ac219e3858eac1"/><file name="08_binding_top.xml" hash="eb9eb6fbf3658ac82c81c7618452215a"/><file name="09_entity_binding.xml" hash="f8b0190d1667c74d566f01734f99f48e"/><file name="10_footer.xml" hash="2211f6d3fd443d15bcdcc05a5d51688a"/></dir><dir name="wsi"><file name="01_top.xml" hash="1114adc81809072b93634c4ef3f2e4c5"/><file name="02_entity_types.xml" hash="267596c149eaa51cd68289ea18f0ed99"/><file name="03_schema_footer.xml" hash="0f0f2308f6bce8a1913b262bf82b3a27"/><file name="04_entity_messages.xml" hash="fd238b2d37b4e5bc5cd4d40b1c98ce75"/><file name="05_porttype_top.xml" hash="d531a165007b9599c8d5d99217f8d351"/><file name="06_porttype_entity.xml" hash="bef6725d39c1b96cac3694cf707ea78a"/><file name="07_porttype_footer.xml" hash="edff616a12bdb1606c4e3d29e5f334bc"/><file name="08_binding_top.xml" hash="8634ae067a9a45d2321e46a3e07e856c"/><file name="09_entity_binding.xml" hash="1affab4357607e1b491b502f7789e4c8"/><file name="10_footer.xml" hash="1022e110706ee7f3cb1edfa2d491e31f"/></dir></dir><dir name="sql"><dir name="namespace_module_setup"><dir name="install-0.0.1"><file name="01_top.php" hash="50cec9cf47ccb1001b16c156bd792210"/><file name="02_entity.php" hash="fe0cd5718f68e347f92118de3ebcdbd7"/><file name="03_product_relation.php" hash="1be95058703726dc35fc985466d62129"/><file name="04_sibling_relation.php" hash="581b0adc63e3e28ab89dc576a3f2e7d6"/><file name="05_footer.php" hash="7d307239f928e12e9a9b48754777f640"/></dir><dir name="install-0.0.1-ddl"><file name="01_top.php" hash="50cec9cf47ccb1001b16c156bd792210"/><file name="02_entity.php" hash="6497a1f379b9e4d7bb35d98ad28e6767"/><file name="03_product_relation.php" hash="844585191b8c338c895e59c7162b54ab"/><file name="04_sibling_relation.php" hash="9a31f0b23781ef937045d26a48c5dcd1"/><file name="05_footer.php" hash="7d307239f928e12e9a9b48754777f640"/></dir></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="namespace_module"><file name="01_top.xml" hash="c657e63ddce2df350b7d45c57620e967"/><file name="02_entity_not_tree.xml" hash="4897e318fff890bf377ed3e8091b9986"/><file name="03_relation_product.xml" hash="4ae352696eebe3635e9df76bedaf48d6"/><file name="04_relation_sibling.xml" hash="b9f5a68c69914abeb24c9638a451b157"/><file name="05_entity_tree.xml" hash="e598aa0b93b1e6d5f180bac14f0fc20c"/><file name="06_relation_product_tree.xml" hash="897ddf70ea257a2f553bed07f1e84e3c"/><file name="07_relation_sibling_tree.xml" hash="3ae178a0a81364ec8df9935bf8a3da23"/><file name="08_footer.xml" hash="fd25391f06094530aadcbee222b433fc"/></dir></dir><dir name="template"><dir name="namespace_module"><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><dir name="entity"><file name="01_content.phtml" hash="22515160e08aec47a72e51321949ef9b"/></dir></dir></dir></dir></dir><dir name="entity"><dir name="edit"><file name="01_content.phtml" hash="ce1e8b965823d7880a5acea0de5ba26a"/><dir name="form"><file name="01_top.phtml" hash="99f82b638e08569b4be985af5a77aa26"/><file name="02_product_hidden.phtml" hash="7ef02b97f351681086ccc0f69615cbef"/><file name="03_sibling_hidden.phtml" hash="b0ab3d283c7dd99670034f439f1a7e83"/><file name="04_content.phtml" hash="887287c2135f192c2e050e7d9c2df401"/><file name="05_status.phtml" hash="3f4356540bc8cef1186b62c04e41d305"/><file name="06_content2.phtml" hash="d3d867b32ed5001de64b9d349d4a304f"/><file name="07_product_relation.phtml" hash="95ca5bc339ba49da37e0f9b5714521ea"/><file name="08_sibling_relations.phtml" hash="781a697648d00ec4c824380fae4b67ac"/><file name="09_footer.phtml" hash="5fd8d0c41500e156711c723af13f627f"/></dir><dir name="tab"><dir name="sibling"><file name="01_content.phtml" hash="59bbfec6eb6cee9778872eac55ac74bc"/></dir></dir></dir><dir name="tree"><file name="01_content.phtml" hash="0326fef77a80ddb5d154939783b52b1a"/></dir><dir name="widget"><dir name="tree"><file name="01_content.phtml" hash="e0e24d2640bdc3e4c7234564b263465f"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="namespace_module"><file name="01_top.xml" hash="bf6f2b1a2a7bfaec115c381abfa40e02"/><file name="02_default_top.xml" hash="10c0056a19cc82fbf809aa13b879b4ff"/><file name="03_default.xml" hash="e58d9aa36808b39bdd648d51fca7b992"/><file name="04_subtree.xml" hash="1740cd1d04a8cec148eff1448718e6b7"/><file name="05_default_footer.xml" hash="22f72da3c656b5721d355607c891cc9c"/><file name="06_list.xml" hash="d612266dae53939552fb5b0a6fcb6feb"/><file name="07_view.xml" hash="7f3837e6fc2f6325304d5028fcfda532"/><file name="08_entity_rss.xml" hash="f06074f610065fbc6cb9a228402da7a7"/><file name="09_rss_top.xml" hash="54753c3cd7d42667c88c88f0084484f2"/><file name="10_rss.xml" hash="b513533d7cc561ec197ce1662bf54883"/><file name="11_rss_footer.xml" hash="3adf9a1e5301aa4221cede3ff5208785"/><file name="12_relation_product.xml" hash="309965e4062dc6f6f82dd495035e08ec"/><file name="13_footer.xml" hash="fd25391f06094530aadcbee222b433fc"/></dir></dir><dir name="template"><dir name="namespace_module"><dir name="catalog"><dir name="product"><dir name="list"><dir name="entity"><file name="01_top.phtml" hash="bb86f12fc472152437ef1be97280d258"/><file name="02_link_top.phtml" hash="62a65063f9611f31b02a5b3f3b34f524"/><file name="03_name.phtml" hash="fed55ae628836787e7a2ba05b1e695e6"/><file name="04_link_footer.phtml" hash="f01ee0fb040754cbdd4c7ca86dbec387"/><file name="05_footer.phtml" hash="d0bff7b594da78b60141591d6870556b"/></dir></dir></dir></dir><dir name="entity"><dir name="catalog"><dir name="product"><dir name="list"><file name="01_content.phtml" hash="96ec480a53c89ff5b87cfd59dc163f9e"/></dir></dir></dir><dir name="children"><file name="01_content.phtml" hash="129d29d6a49f3e6bbbd0697f55c97740"/></dir><dir name="list"><file name="01_top.phtml" hash="10c541cba8766100d47e8baadb8ce6a5"/><file name="02_rss_link.phtml" hash="cacf7866f6dd54ab37a217d7cb7466c7"/><file name="03_footer.phtml" hash="24d3a1e0224a9e59f5daa0d2660e76b4"/><file name="04_footer_is_tree.phtml" hash="098332bf5a88d8529ea3ef57ed9c75f4"/></dir><dir name="sibling"><dir name="child"><dir name="list"><file name="01_content.phtml" hash="5a1f524b49cf120201a90ee695f90544"/></dir></dir><dir name="list"><file name="01_content.phtml" hash="5a1f524b49cf120201a90ee695f90544"/></dir></dir><dir name="view"><file name="01_content.phtml" hash="205b0b21c650f28ff0e364d6ec8ce552"/></dir><dir name="widget"><dir name="link"><file name="01_content.phtml" hash="11d9e23bd1c2f8cb8a0f857c8bb393d8"/></dir><dir name="subtree"><file name="01_content.phtml" hash="b46bcc38a3c598606ceb5fcf61f1e340"/></dir><dir name="view"><file name="01_content.phtml" hash="f89f40babc5af3cd30597cd097ad9ab9"/></dir></dir></dir><dir name="rss"><file name="01_content.phtml" hash="172a345ace9b7ec84ad2e18f51d48257"/></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><dir name="Namespace_Module"><file name="01_content.xml" hash="4495317a1b8392281b68f07a546c56c2"/></dir></dir></dir><dir name="locale"><dir name="en_US"><dir name="Namespace_Module"><file name="01_global.csv" hash="f38bee4515bcc54da7f781a0bac1da66"/><file name="02_entity.csv" hash="97e1a2056ec2f49acc1c5c9598ef10d7"/><file name="03_attribute.csv" hash="0bc9532d35587f2225e398156cc3ef7f"/><file name="04_global_status.csv" hash="507d9e24387e6935b1ee629e8432f842"/><file name="05_global_rss.csv" hash="df495f10c1e7d7d3fb770d8b406b9f9b"/><file name="06_global_seo.csv" hash="1c5889d31d3410540715b6c866966178"/><file name="07_attribute_yesno.csv" hash="20eaf2d5eaa8224e5fa1c7a63634b1c0"/><file name="08_global_file.csv" hash="8bebcdd48d5ae7b533cc53e789f03ef2"/><file name="09_product_relation.csv" hash="b96f377dfa788f2772f2f8b7f156aebd"/><file name="10_relations.csv" hash="d0f7a10c89d21ade4ba17cd73dbb42fb"/><file name="11_global_tree.csv" hash="37bf0971ca18e0e4222ae2b0d3ba6311"/><file name="12_tree_entity.csv" hash="d49d63121e1633afe8c2f28a802ca7c3"/><file name="13_url_rewrite.csv" hash="87e5df1e3e95f0751f362b5acf37ddce"/><file name="14_api.csv" hash="58e27bb8ef0a04a711e20207dce037a4"/><file name="15_api_entity.csv" hash="5f79e38c8a97f2e171eedc2d5246910d"/><file name="16_api_product_related.csv" hash="f6875de876ab6e34595e5513aa35628b"/><file name="17_api_tree.csv" hash="99f44156e5181aa598f1d217b8c1cbc7"/><file name="18_api_sibling.csv" hash="096605fae72bf35317dc4601406a23d0"/></dir></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="namespace_module"><dir name="tree"><file name="01_content.css" hash="7929b899ed457d539637d5083286bed4"/></dir></dir></dir><dir name="images"><dir name="namespace_module"><dir name="collapsedgif"><file name="01_content.gif" hash="ef74c08289e94b7aae81766fb00d4195"/></dir><dir name="collapsedpng"><file name="01_content.png" hash="0613450d25c762b6a40c51768b02462d"/></dir><dir name="expandedgif"><file name="01_content.gif" hash="3f5512a54f359343273caf7b3787ee8a"/></dir><dir name="expandedpng"><file name="01_content.png" hash="f7f28ae897708c78b28ead22c3692bb8"/></dir><dir name="line1gif"><file name="01_content.gif" hash="65b0c812c8d57ea72b84fc69a077a40a"/></dir><dir name="line1png"><file name="01_content.png" hash="4e01064a2c78b8885f65ff7a40f78c02"/></dir><dir name="line2gif"><file name="01_content.gif" hash="95fc5c58069ece5eb44e198ee53b3fe1"/></dir><dir name="line2png"><file name="01_content.png" hash="6adbb4ca64d943f5ee5528d713757fde"/></dir></dir><dir name="placeholder"><file name="entity.jpg" hash="6361a80d5ca988fcec45ad3767322e5e"/></dir></dir><dir name="js"><dir name="namespace_module"><dir name="tree"><file name="01_content.js" hash="1b8a1e7b1cb23e7a87e05b33a34523a0"/></dir></dir></dir></dir></dir></dir></dir></dir><file name="modulecreator.xml" hash="33644ddaaf6a594cce7d54ae233f8d20"/><file name="system.xml" hash="5446234bd875fb0740fc7430a019f987"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ultimate_modulecreator.xml" hash="f21bb3c8940eb81307817c0491caf300"/></dir><dir name="template"><dir name="ultimate_modulecreator"><dir name="edit"><dir name="tab"><dir name="entities"><dir name="entity"><file name="attribute.phtml" hash="586ebc5ca473dfcd1a0a47917c4353e4"/></dir><file name="entity.phtml" hash="ca653f56e1ad2fb6c6e54c64a462e9eb"/></dir><file name="entities.phtml" hash="df9179ffd5e72a04cf4740488521f0ce"/><file name="help.phtml" hash="f57b75302fc0e90e2cb5bba49946cd82"/><file name="relation.phtml" hash="17a41ecbecdf7af519d11c3d026a800b"/></dir></dir><file name="edit.phtml" hash="8d10e82ae89d9e4ede28e6c59c9e724c"/><file name="tooltip.phtml" hash="d3598ad3f978d708b1f7f36feee39560"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ultimate_ModuleCreator.xml" hash="324d2b364541a7355c9ff4248c0518f2"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Ultimate_ModuleCreator.csv" hash="0a37d4e248c2dcccc63dac60ddbc3b3f"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="ultimate_modulecreator.css" hash="781a789d72dc08f660479543ff09b143"/><dir name="images"><dir name="ultimate_modulecreator"><file name="logo.png" hash="9c9ca3b07295cab1cb1503865905ee50"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="LICENSE_UMC.txt" hash="1372b858e10f4c6feb2967766a0b7a62"/><file name="readme_UMC.txt" hash="7b8cd5baf640a5078be5c7136b56b5d9"/></dir></target><target name="mageweb"><dir name="."><file name="modman" hash="f2259e0ec25ae1812bf192bdddb1fa7a"/></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
23
  </package>