Version Notes
Updated for Magento 1.4.2
Download this release
Release Info
Developer | Magento Core Team |
Extension | Manufacturer_Model_Number |
Version | 3.4 |
Comparing to | |
See all releases |
Code changes from version 3.2 to 3.4
- app/code/local/Pektsekye/Mmn/Block/Product/View.php +17 -0
- app/code/local/Pektsekye/Mmn/Model/Mysql4/Mmn.php +13 -3
- app/code/local/Pektsekye/Mmn/Model/Resource/Eav/Mysql4/Category.php +4 -8
- app/code/local/Pektsekye/MmnAdmin/etc/adminhtml.xml +45 -0
- app/code/local/Pektsekye/MmnAdmin/etc/config.xml +18 -61
- app/design/frontend/default/default/layout/mmn.xml +40 -24
- app/design/frontend/default/default/template/mmn/mmn.phtml +41 -38
- package.xml +5 -5
app/code/local/Pektsekye/Mmn/Block/Product/View.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
class Pektsekye_Mmn_Block_Product_View extends Mage_Catalog_Block_Product_View
|
5 |
+
{
|
6 |
+
|
7 |
+
|
8 |
+
public function __construct()
|
9 |
+
{
|
10 |
+
$restrictions = Mage::getResourceModel('mmn/mmn')->getRestrictionsByProductSku($this->getProduct()->getSku());
|
11 |
+
|
12 |
+
$this->assign('restrictions', $restrictions);
|
13 |
+
|
14 |
+
}
|
15 |
+
|
16 |
+
|
17 |
+
}
|
app/code/local/Pektsekye/Mmn/Model/Mysql4/Mmn.php
CHANGED
@@ -4,7 +4,17 @@ class Pektsekye_Mmn_Model_Mysql4_Mmn extends Mage_Core_Model_Mysql4_Abstract
|
|
4 |
{
|
5 |
public function _construct()
|
6 |
{
|
7 |
-
// Note that the mmn_id refers to the key field in your database table.
|
8 |
$this->_init('mmn/mmn', 'mmn_id');
|
9 |
-
}
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
{
|
5 |
public function _construct()
|
6 |
{
|
|
|
7 |
$this->_init('mmn/mmn', 'mmn_id');
|
8 |
+
}
|
9 |
+
|
10 |
+
public function getRestrictionsByProductSku($productSku)
|
11 |
+
{
|
12 |
+
$select = $this->_getReadAdapter()->select()
|
13 |
+
->distinct(true)
|
14 |
+
->from($this->getMainTable())
|
15 |
+
->where('sku = ?', $productSku)
|
16 |
+
->order(array('manufacturer', 'model', 'number'));
|
17 |
+
|
18 |
+
return $this->_getReadAdapter()->fetchAll($select);
|
19 |
+
}
|
20 |
+
}
|
app/code/local/Pektsekye/Mmn/Model/Resource/Eav/Mysql4/Category.php
CHANGED
@@ -27,16 +27,12 @@ class Pektsekye_Mmn_Model_Resource_Eav_Mysql4_Category extends Mage_Catalog_Mode
|
|
27 |
|
28 |
$pids = implode(',',$ids);
|
29 |
$resource = Mage::getSingleton('core/resource');
|
30 |
-
$read= $resource->getConnection('core_read');
|
31 |
$categoryTable = $resource->getTableName('catalog_category_entity');
|
32 |
$category_productTable = $resource->getTableName('catalog/category_product_index');
|
33 |
-
$
|
34 |
-
|
35 |
-
if(count($rows)>0)
|
36 |
-
foreach ($rows as $r)
|
37 |
-
$ids [] = $r['entity_id'];
|
38 |
|
39 |
-
$tree->addInactiveCategoryIds($
|
40 |
|
41 |
}
|
42 |
|
@@ -55,4 +51,4 @@ class Pektsekye_Mmn_Model_Resource_Eav_Mysql4_Category extends Mage_Catalog_Mode
|
|
55 |
}
|
56 |
|
57 |
|
58 |
-
}
|
27 |
|
28 |
$pids = implode(',',$ids);
|
29 |
$resource = Mage::getSingleton('core/resource');
|
30 |
+
$read = $resource->getConnection('core_read');
|
31 |
$categoryTable = $resource->getTableName('catalog_category_entity');
|
32 |
$category_productTable = $resource->getTableName('catalog/category_product_index');
|
33 |
+
$excludeCategories = $read->fetchCol("SELECT entity_id FROM $categoryTable WHERE entity_id NOT IN (SELECT DISTINCT category_id FROM $category_productTable WHERE product_id in ($pids)) ");
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
$tree->addInactiveCategoryIds($excludeCategories);
|
36 |
|
37 |
}
|
38 |
|
51 |
}
|
52 |
|
53 |
|
54 |
+
}
|
app/code/local/Pektsekye/MmnAdmin/etc/adminhtml.xml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<menu>
|
4 |
+
<mmnadmin module="mmnadmin">
|
5 |
+
<title>Mmn</title>
|
6 |
+
<sort_order>71</sort_order>
|
7 |
+
<children>
|
8 |
+
<items module="mmnadmin">
|
9 |
+
<title>Manage Items</title>
|
10 |
+
<sort_order>0</sort_order>
|
11 |
+
<action>mmnadmin/items</action>
|
12 |
+
</items>
|
13 |
+
<import module="mmnadmin">
|
14 |
+
<title>Import / Export</title>
|
15 |
+
<sort_order>1</sort_order>
|
16 |
+
<action>mmnadmin/items/importExport</action>
|
17 |
+
</import>
|
18 |
+
</children>
|
19 |
+
</mmnadmin>
|
20 |
+
</menu>
|
21 |
+
<acl>
|
22 |
+
<resources>
|
23 |
+
<all>
|
24 |
+
<title>Allow Everything</title>
|
25 |
+
</all>
|
26 |
+
<admin>
|
27 |
+
<children>
|
28 |
+
<mmnadmin>
|
29 |
+
<title>MmnAdmin Module</title>
|
30 |
+
<children>
|
31 |
+
<items>
|
32 |
+
<title>Manage Items</title>
|
33 |
+
<sort_order>0</sort_order>
|
34 |
+
</items>
|
35 |
+
<import>
|
36 |
+
<title>Import / Export</title>
|
37 |
+
<sort_order>1</sort_order>
|
38 |
+
</import>
|
39 |
+
</children>
|
40 |
+
</mmnadmin>
|
41 |
+
</children>
|
42 |
+
</admin>
|
43 |
+
</resources>
|
44 |
+
</acl>
|
45 |
+
</config>
|
app/code/local/Pektsekye/MmnAdmin/etc/config.xml
CHANGED
@@ -7,66 +7,24 @@
|
|
7 |
</modules>
|
8 |
<admin>
|
9 |
<routers>
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
</routers>
|
18 |
</admin>
|
19 |
-
<adminhtml>
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
<action>mmnadmin/items</action>
|
29 |
-
</items>
|
30 |
-
<import module="mmnadmin">
|
31 |
-
<title>Import / Export</title>
|
32 |
-
<sort_order>1</sort_order>
|
33 |
-
<action>mmnadmin/items/importExport</action>
|
34 |
-
</import>
|
35 |
-
</children>
|
36 |
-
</mmnadmin>
|
37 |
-
</menu>
|
38 |
-
<acl>
|
39 |
-
<resources>
|
40 |
-
<all>
|
41 |
-
<title>Allow Everything</title>
|
42 |
-
</all>
|
43 |
-
<admin>
|
44 |
-
<children>
|
45 |
-
<mmnadmin>
|
46 |
-
<title>MmnAdmin Module</title>
|
47 |
-
<children>
|
48 |
-
<items>
|
49 |
-
<title>Manage Items</title>
|
50 |
-
<sort_order>0</sort_order>
|
51 |
-
</items>
|
52 |
-
<import>
|
53 |
-
<title>Import / Export</title>
|
54 |
-
<sort_order>1</sort_order>
|
55 |
-
</import>
|
56 |
-
</children>
|
57 |
-
</mmnadmin>
|
58 |
-
</children>
|
59 |
-
</admin>
|
60 |
-
</resources>
|
61 |
-
</acl>
|
62 |
-
<layout>
|
63 |
-
<updates>
|
64 |
-
<mmnadmin>
|
65 |
-
<file>mmnadmin.xml</file>
|
66 |
-
</mmnadmin>
|
67 |
-
</updates>
|
68 |
-
</layout>
|
69 |
-
</adminhtml>
|
70 |
<global>
|
71 |
<models>
|
72 |
<mmnadmin>
|
@@ -82,8 +40,7 @@
|
|
82 |
</entities>
|
83 |
</mmnadmin_mysql4>
|
84 |
</models>
|
85 |
-
<resources>
|
86 |
-
|
87 |
<mmnadmin_setup>
|
88 |
<setup>
|
89 |
<module>Pektsekye_MmnAdmin</module>
|
@@ -114,4 +71,4 @@
|
|
114 |
</mmnadmin>
|
115 |
</helpers>
|
116 |
</global>
|
117 |
-
</config>
|
7 |
</modules>
|
8 |
<admin>
|
9 |
<routers>
|
10 |
+
<mmnadmin>
|
11 |
+
<use>admin</use>
|
12 |
+
<args>
|
13 |
+
<module>Pektsekye_MmnAdmin</module>
|
14 |
+
<frontName>mmnadmin</frontName>
|
15 |
+
</args>
|
16 |
+
</mmnadmin>
|
17 |
</routers>
|
18 |
</admin>
|
19 |
+
<adminhtml>
|
20 |
+
<layout>
|
21 |
+
<updates>
|
22 |
+
<mmnadmin>
|
23 |
+
<file>mmnadmin.xml</file>
|
24 |
+
</mmnadmin>
|
25 |
+
</updates>
|
26 |
+
</layout>
|
27 |
+
</adminhtml>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
<global>
|
29 |
<models>
|
30 |
<mmnadmin>
|
40 |
</entities>
|
41 |
</mmnadmin_mysql4>
|
42 |
</models>
|
43 |
+
<resources>
|
|
|
44 |
<mmnadmin_setup>
|
45 |
<setup>
|
46 |
<module>Pektsekye_MmnAdmin</module>
|
71 |
</mmnadmin>
|
72 |
</helpers>
|
73 |
</global>
|
74 |
+
</config>
|
app/design/frontend/default/default/layout/mmn.xml
CHANGED
@@ -1,27 +1,43 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<layout version="0.1.0">
|
3 |
-
|
4 |
-
<default>
|
5 |
-
<reference name="right">
|
6 |
-
<block type="mmn/mmn" name="mmn" before="-" template="mmn/mmn.phtml"/>
|
7 |
-
</reference>
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</block>
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
</layout>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.0">
|
3 |
+
|
4 |
+
<default>
|
5 |
+
<reference name="right">
|
6 |
+
<block type="mmn/mmn" name="mmn" before="-" template="mmn/mmn.phtml"/>
|
7 |
+
</reference>
|
8 |
+
</default>
|
9 |
+
|
10 |
+
<catalog_product_view>
|
11 |
+
<reference name="product.info.additional">
|
12 |
+
<block type="mmn/product_view" name="mmn_product_view" after="-" template="mmn/product/view.phtml"/>
|
13 |
+
</reference>
|
14 |
+
</catalog_product_view>
|
15 |
+
|
16 |
+
<mmn_product_list>
|
17 |
+
<reference name="right">
|
18 |
+
<block type="catalogsearch/layer" name="catalogsearch.leftnav" after="mmn" template="catalog/layer/view.phtml"/>
|
19 |
+
</reference>
|
20 |
+
<reference name="root">
|
21 |
+
<action method="setTemplate"><template>page/2columns-right.phtml</template></action>
|
22 |
+
</reference>
|
23 |
+
<reference name="content">
|
24 |
+
<block type="mmn/product_result" name="mmn_products" template="catalogsearch/result.phtml">
|
25 |
+
<block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml">
|
26 |
+
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
|
27 |
+
<block type="page/html_pager" name="product_list_toolbar_pager"/>
|
28 |
+
</block>
|
29 |
+
<action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
|
30 |
+
<action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
|
31 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
|
32 |
+
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
|
33 |
+
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
|
34 |
+
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
35 |
</block>
|
36 |
+
<action method="setListOrders"/>
|
37 |
+
<action method="setListModes"/>
|
38 |
+
<action method="setListCollection"/>
|
39 |
+
</block>
|
40 |
+
</reference>
|
41 |
+
</mmn_product_list>
|
42 |
|
43 |
+
</layout>
|
app/design/frontend/default/default/template/mmn/mmn.phtml
CHANGED
@@ -11,7 +11,7 @@ $select = $read->select()
|
|
11 |
->from($mmnTable,array('manufacturer','model','number'))
|
12 |
->where('manufacturer != ?','')
|
13 |
->where('model != ?','')
|
14 |
-
->where('
|
15 |
->order(array('manufacturer', 'model', 'number')) ;
|
16 |
|
17 |
$rows = $read->fetchAll($select);
|
@@ -129,10 +129,10 @@ function pop_number(){
|
|
129 |
echo $javascript;
|
130 |
|
131 |
?>
|
132 |
-
<div class="
|
133 |
-
<div class="
|
134 |
-
<
|
135 |
-
</div>
|
136 |
<form id="mmn_form" action="<?php
|
137 |
$hidden = '';
|
138 |
if($module == 'catalog_category_view'){
|
@@ -145,41 +145,44 @@ function pop_number(){
|
|
145 |
|
146 |
?>" method="get" onsubmit="return $('mmn_manufacturer').value != 'all' ? true : false">
|
147 |
<?php echo $hidden; ?>
|
148 |
-
<div
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
|
|
169 |
</div>
|
|
|
170 |
<div class="actions">
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
|
|
183 |
</div>
|
184 |
</form>
|
185 |
</div>
|
11 |
->from($mmnTable,array('manufacturer','model','number'))
|
12 |
->where('manufacturer != ?','')
|
13 |
->where('model != ?','')
|
14 |
+
->where('number != ?','')
|
15 |
->order(array('manufacturer', 'model', 'number')) ;
|
16 |
|
17 |
$rows = $read->fetchAll($select);
|
129 |
echo $javascript;
|
130 |
|
131 |
?>
|
132 |
+
<div class="block">
|
133 |
+
<div class="block-title">
|
134 |
+
<strong><span><?php echo $this->__('Select Printer') ?></span></strong>
|
135 |
+
</div>
|
136 |
<form id="mmn_form" action="<?php
|
137 |
$hidden = '';
|
138 |
if($module == 'catalog_category_view'){
|
145 |
|
146 |
?>" method="get" onsubmit="return $('mmn_manufacturer').value != 'all' ? true : false">
|
147 |
<?php echo $hidden; ?>
|
148 |
+
<div class="block-content">
|
149 |
+
<div style="padding:10px;">
|
150 |
+
<select name="Manufacturer" id="mmn_manufacturer" onchange="pop_model();" style="width: 100%">
|
151 |
+
<?php
|
152 |
+
foreach($Manufacturer_array as $option)
|
153 |
+
echo '<option value="'.$option['id'].'" '.(isset($Manufacturer_selected_var) && $Manufacturer_selected_var == $option['id'] ? 'SELECTED' : '').'>'.$option['text'].'</option>';
|
154 |
+
?>
|
155 |
+
</select><br/><br/>
|
156 |
+
<span id="model_select">
|
157 |
+
<select name="Model" id="mmn_model" onchange="pop_number();" style="width: 100%">
|
158 |
+
<?php
|
159 |
+
foreach($Model_array as $option)
|
160 |
+
echo '<option value="'.$option['id'].'" '.(isset($Model_selected_var) && $Model_selected_var == $option['id'] ? 'SELECTED' : '').'>'.$option['text'].'</option>';
|
161 |
+
?>
|
162 |
+
</select></span><br/><br/>
|
163 |
+
<span id="number_select">
|
164 |
+
<select name="Number" onchange="$('mmn_form').submit();" style="width: 100%">
|
165 |
+
<?php
|
166 |
+
foreach($Number_array as $option)
|
167 |
+
echo '<option value="'.$option['id'].'" '.(isset($Number_selected_var) && $Number_selected_var == $option['id'] ? 'SELECTED' : '').'>'.$option['text'].'</option>';
|
168 |
+
?>
|
169 |
+
</select></span><br/><br/>
|
170 |
</div>
|
171 |
+
|
172 |
<div class="actions">
|
173 |
+
<button class="button" type="submit" title="<?php echo $this->__('Go') ?>"><span><span><?php echo $this->__('Go') ?></span></span></button>
|
174 |
+
<?php if(isset($Manufacturer_selected_var)): ?>
|
175 |
+
<a href="<?php
|
176 |
+
if($module == 'catalog_category_view'){
|
177 |
+
echo '?';
|
178 |
+
} elseif ($module == 'catalogsearch_result_index' && Mage::getStoreConfig('catalog/search/filtering', Mage::app()->getStore()->getStoreId())){
|
179 |
+
echo '?q=' . $request->getParam('q') . '&';
|
180 |
+
} else {
|
181 |
+
echo Mage::getBaseUrl() . '?';
|
182 |
+
}
|
183 |
+
?>Manufacturer=all&Model=all&Number=all"><?php echo $this->__('Clear Printer'); ?></a>
|
184 |
+
<?php endif ?>
|
185 |
+
</div>
|
186 |
</div>
|
187 |
</form>
|
188 |
</div>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Manufacturer_Model_Number</name>
|
4 |
-
<version>3.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -11,11 +11,11 @@
|
|
11 |
|
12 |
HOW TO USE:
|
13 |
Go to your Magento admin panel ->Mmn -> Manage Items and add MMN items to all your products.</description>
|
14 |
-
<notes>
|
15 |
<authors><author><name>Stanislav</name><user>auto-converted</user><email>pektsekye@gmail.com</email></author></authors>
|
16 |
-
<date>2010-
|
17 |
-
<time>16:
|
18 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mmnadmin.xml" hash="1c4ab9b3a0d5ee6006d48e1cf517fbd4"/></dir><dir name="template"><dir name="mmnadmin"><file name="importExport.phtml" hash="969bbdaa5588c3acb426366ef6b8c689"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="mmn.xml" hash="
|
19 |
<compatible/>
|
20 |
<dependencies/>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Manufacturer_Model_Number</name>
|
4 |
+
<version>3.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
11 |
|
12 |
HOW TO USE:
|
13 |
Go to your Magento admin panel ->Mmn -> Manage Items and add MMN items to all your products.</description>
|
14 |
+
<notes>Updated for Magento 1.4.2</notes>
|
15 |
<authors><author><name>Stanislav</name><user>auto-converted</user><email>pektsekye@gmail.com</email></author></authors>
|
16 |
+
<date>2010-12-14</date>
|
17 |
+
<time>21:16:36</time>
|
18 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mmnadmin.xml" hash="1c4ab9b3a0d5ee6006d48e1cf517fbd4"/></dir><dir name="template"><dir name="mmnadmin"><file name="importExport.phtml" hash="969bbdaa5588c3acb426366ef6b8c689"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="mmn.xml" hash="66be1261f11efb25968941eb987005d6"/></dir><dir name="template"><dir name="mmn"><file name="mmn.phtml" hash="b30d435927ad759f224434ea80e78c0a"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Pektsekye_Mmn.csv" hash="3b26c323d14dbeb131a21770ab5de639"/></dir></target><target name="mageetc"><dir name="modules"><file name="Pektsekye_Mmn.xml" hash="44dbf66ea36b134b159edb1d51878a2a"/><file name="Pektsekye_MmnAdmin.xml" hash="766e5fddfef3d7ab1612aee866c9c6f6"/></dir></target><target name="magelocal"><dir name="Pektsekye"><dir name="Mmn"><dir name="Block"><dir name="Product"><file name="Result.php" hash="00641875e34a3bc2851f6785a9975f81"/><file name="View.php" hash="782ba34e4a6575550d97cdc10d693345"/></dir><file name="Mmn.php" hash="9c6bc640466ef349fc9fac3023f9f332"/></dir><dir name="controllers"><file name="IndexController.php" hash="aa43963369f7166820a20bec5c2d1c8b"/><file name="ProductController.php" hash="6f36953551c101f2d0e890b2569b8444"/></dir><dir name="etc"><file name="config.xml" hash="f984aeaa9a3ae72d4c57f29d5c191e63"/><file name="system.xml" hash="9d2b000bba821307bde419a4e2b2fb13"/></dir><dir name="Helper"><file name="Data.php" hash="93b6eb686e54179e17c3df81e330699f"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Mmn"><file name="Collection.php" hash="7a9240e2cef54b5e1796fb12d2d9369f"/></dir><file name="Mmn.php" hash="25d00e654e33808b37ef2879e01bb5ca"/></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Category.php" hash="1d3f253e7428657635480d31586dadcf"/></dir></dir></dir><file name="Category.php" hash="d6b6854f6090bba3b54247811c3d69d5"/><file name="Layer.php" hash="75097f50e9ae267c4a325dde6f8e006d"/><file name="Mmn.php" hash="cef143b02735b99c273a8188efee3a38"/></dir></dir><dir name="MmnAdmin"><dir name="Block"><dir name="Items"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="53380d8415c9b6f68daff30456c29b8c"/></dir><file name="Form.php" hash="9f739cc340c4e5d246359971da9facf8"/><file name="Tabs.php" hash="b731215470e3c2fc415fc02ec66256df"/></dir><file name="Edit.php" hash="e80d1d960fcc55b6863067e8638dede4"/><file name="Grid.php" hash="b44477549067c9f2881f233c0d410b63"/><file name="ImportExport.php" hash="41aec23361b81bbda43c1049a957beff"/></dir><file name="Items.php" hash="04b1560f32b4358c01499035d8b6d6c9"/></dir><dir name="controllers"><file name="ItemsController.php" hash="1c81526c02e47da2775b8c789aceb0bd"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b4db41e51554dc15b62b1253e1c94855"/><file name="config.xml" hash="51b3ccccf36428bd499e34a2c074c48a"/></dir><dir name="Helper"><file name="Data.php" hash="b66a742ba975a1899e6af68bf7590b9f"/></dir><dir name="Model"><dir name="Mysql4"><dir name="MmnAdmin"><file name="Collection.php" hash="4bc7a84e358d1ea19cdbd705a2fe09fb"/></dir><file name="MmnAdmin.php" hash="3819c4baa9fd61e4d86ae843ed9fc923"/></dir><file name="MmnAdmin.php" hash="d11f9217294fb8f8f23c53fd13bfb1ab"/></dir><dir name="sql"><dir name="mmnadmin_setup"><file name="mysql4-install-0.1.0.php" hash="05fce556a39db1283ab4e315f27a1a27"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="a42d585ee17b2cdf0b9290c22b95051b"/></dir></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies/>
|
21 |
</package>
|