manufacturer_brand_logo - Version 1.1.2

Version Notes

Depends on the manufacturer attribute.

Download this release

Release Info

Developer Magento Core Team
Extension manufacturer_brand_logo
Version 1.1.2
Comparing to
See all releases


Code changes from version 1.1.1 to 1.1.2

app/code/local/Bc/Bcall/Helper/Data.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Codnitive
16
+ * @package Codnitive_Codall
17
+ * @author Hassan Barza <support@codnitive.com>
18
+ * @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ class Bc_Bcall_Helper_Data extends Mage_Core_Helper_Data
23
+ {
24
+
25
+ }
app/code/local/Bc/Bcall/etc/adminhtml.xml ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
15
+ * versions in the future. If you wish to customize Magento for your
16
+ * needs please refer to http://www.magentocommerce.com for more information.
17
+ *
18
+ * @category Codnitive
19
+ * @package Codnitive_Codall
20
+ * @author Hassan Barza <support@codnitive.com>
21
+ * @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
22
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
23
+ */
24
+ -->
25
+ <config>
26
+ <menu>
27
+ <biztech module="bcall">
28
+ <title>Biztech Extension</title>
29
+ <sort_order>90</sort_order>
30
+ </biztech>
31
+ </menu>
32
+ <acl>
33
+ <resources>
34
+ <all>
35
+ <title>Allow Everything</title>
36
+ </all>
37
+ <admin>
38
+ <children>
39
+ <system>
40
+ <children>
41
+ <config>
42
+ <children>
43
+ <bcall>
44
+ <title>Biztech Extention</title>
45
+ </bcall>
46
+ </children>
47
+ </config>
48
+ </children>
49
+ </system>
50
+ </children>
51
+ </admin>
52
+ </resources>
53
+ </acl>
54
+ </config>
app/code/local/Bc/Bcall/etc/config.xml ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
15
+ * versions in the future. If you wish to customize Magento for your
16
+ * needs please refer to http://www.magentocommerce.com for more information.
17
+ *
18
+ * @category bcnitive
19
+ * @package bcnitive_bcall
20
+ * @author Hassan Barza <support@bcnitive.com>
21
+ * @copyright Copyright (c) 2011 bcNITIVE Co. (http://www.bcnitive.com)
22
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
23
+ */
24
+ -->
25
+ <config>
26
+ <modules>
27
+ <Bc_bcall>
28
+ <version>1.1.1</version>
29
+ <title>Biztech Extentions</title>
30
+ </Bc_bcall>
31
+ </modules>
32
+
33
+ <global>
34
+ <models>
35
+ <bcall>
36
+ <class>Bc_Bcall_Model</class>
37
+ </bcall>
38
+ </models>
39
+ <helpers>
40
+ <bcall>
41
+ <class>Bc_Bcall_Helper</class>
42
+ </bcall>
43
+ </helpers>
44
+ <resources>
45
+ <bcall_setup>
46
+ <setup>
47
+ <module>Bc_Bcall</module>
48
+ </setup>
49
+ <connection>
50
+ <use>core_setup</use>
51
+ </connection>
52
+ </bcall_setup>
53
+ <bcall_write>
54
+ <connection>
55
+ <use>core_write</use>
56
+ </connection>
57
+ </bcall_write>
58
+ <bcall_read>
59
+ <connection>
60
+ <use>core_read</use>
61
+ </connection>
62
+ </bcall_read>
63
+ </resources>
64
+ <blocks>
65
+ <bcall>
66
+ <class>Bc_Bcall_Block</class>
67
+ </bcall>
68
+ </blocks>
69
+ </global>
70
+
71
+ <adminhtml>
72
+ <translate>
73
+ <modules>
74
+ <Bc_bcall>
75
+ <files>
76
+ <default>Bc_Bcall.csv</default>
77
+ </files>
78
+ </Bc_bcall>
79
+ </modules>
80
+ </translate>
81
+
82
+ <acl>
83
+ <resources>
84
+ <all>
85
+ <title>Allow Everything</title>
86
+ </all>
87
+ <admin>
88
+ <children>
89
+ <system>
90
+ <children>
91
+ <config>
92
+ <children>
93
+ <bcall>
94
+ <title>Biztech Extention</title>
95
+ </bcall>
96
+ </children>
97
+ </config>
98
+ </children>
99
+ </system>
100
+ </children>
101
+ </admin>
102
+ </resources>
103
+ </acl>
104
+ </adminhtml>
105
+ </config>
app/code/local/Bc/Bcall/etc/system.xml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
15
+ * versions in the future. If you wish to customize Magento for your
16
+ * needs please refer to http://www.magentocommerce.com for more information.
17
+ *
18
+ * @category Codnitive
19
+ * @package Codnitive_Codall
20
+ * @author Hassan Barza <support@codnitive.com>
21
+ * @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
22
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
23
+ */
24
+ -->
25
+ <config>
26
+ <tabs>
27
+ <biztech translate="label" module="codall">
28
+ <label>Biztech Extentions</label>
29
+ <sort_order>250</sort_order>
30
+ </biztech>
31
+ </tabs>
32
+ </config>
app/code/local/Bc/Manufacturer/etc/adminhtml.xml CHANGED
@@ -9,9 +9,7 @@
9
  -->
10
  <config>
11
  <menu>
12
- <manufacturer module="manufacturer">
13
- <title>Manufacturer</title>
14
- <sort_order>71</sort_order>
15
  <children>
16
  <logo module="manufacturer">
17
  <title>Manage Manufacturer</title>
@@ -19,7 +17,7 @@
19
  <action>manufacturer/adminhtml_manufacturer</action>
20
  </logo>
21
  </children>
22
- </manufacturer>
23
  </menu>
24
  <acl>
25
  <resources>
9
  -->
10
  <config>
11
  <menu>
12
+ <biztech module="manufacturer">
 
 
13
  <children>
14
  <logo module="manufacturer">
15
  <title>Manage Manufacturer</title>
17
  <action>manufacturer/adminhtml_manufacturer</action>
18
  </logo>
19
  </children>
20
+ </biztech>
21
  </menu>
22
  <acl>
23
  <resources>
app/code/local/Bc/Manufacturer/etc/config.xml CHANGED
@@ -35,19 +35,6 @@
35
  </routers>
36
  </admin>
37
  <adminhtml>
38
- <menu>
39
- <manufacturer module="manufacturer">
40
- <title>Manufacturer</title>
41
- <sort_order>71</sort_order>
42
- <children>
43
- <items module="manufacturer">
44
- <title>Manage Items</title>
45
- <sort_order>0</sort_order>
46
- <action>manufacturer/adminhtml_manufacturer</action>
47
- </items>
48
- </children>
49
- </manufacturer>
50
- </menu>
51
  <acl>
52
  <resources>
53
  <all>
35
  </routers>
36
  </admin>
37
  <adminhtml>
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  <acl>
39
  <resources>
40
  <all>
app/etc/modules/Bc_Bcall.xml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
15
+ * versions in the future. If you wish to customize Magento for your
16
+ * needs please refer to http://www.magentocommerce.com for more information.
17
+ *
18
+ * @category Codnitive
19
+ * @package Codnitive_Codall
20
+ * @author Hassan Barza <support@codnitive.com>
21
+ * @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
22
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
23
+ */
24
+ -->
25
+ <config>
26
+ <modules>
27
+ <Bc_Bcall>
28
+ <active>true</active>
29
+ <codePool>local</codePool>
30
+ <version>1.0.15</version>
31
+ </Bc_Bcall>
32
+ </modules>
33
+ </config>
package.xml CHANGED
@@ -1,42 +1,49 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>manufacturer_brand_logo</name>
4
- <version>1.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Extension will allow to upload logo for individual brand from admin panel.</summary>
10
- <description>&lt;h1&gt;Brand Logo Upload&lt;/h1&gt;&#xD;
11
- &#xD;
12
- &lt;p&gt;Extension Key : http://connect20.magentocommerce.com/community/manufacturer&lt;/p&gt;&#xD;
13
- &#xD;
14
- &lt;p&gt;Extension will allow to upload logo for individual brand from admin panel. Uploaded brand logo will be display on product detail page as well as brand list page. &lt;/p&gt;&#xD;
15
- &#xD;
16
- &lt;p&gt;Guideline to upload brand logo &lt;/p&gt;&#xD;
17
- &#xD;
18
- &lt;ul&gt;&#xD;
19
- &lt;li&gt;Go to Manufacturer &gt; Manage manufacture&lt;/li&gt;&#xD;
20
- &lt;li&gt;Click Add Manufacturer button&lt;/li&gt;&#xD;
21
- &lt;li&gt;Choose brand and upload logo for that perticular brand&lt;/li&gt;&#xD;
22
- &lt;li&gt;Click on Save button and You are done. &lt;/li&gt;&#xD;
23
- &lt;/ul&gt;&#xD;
24
- &#xD;
25
- &#xD;
26
- &lt;p&gt;Use below code to display brand logo on product detail page &lt;/p&gt;&#xD;
27
- $this-&gt;getLayout()-&gt;createBlock('manufacturer/manufacturer')-&gt;setProduct($_product)-&gt;setTemplate('manufacturer/product_manufacturer.phtml')-&gt;toHtml();&#xD;
28
- &#xD;
29
- &lt;p&gt;&#xD;
30
- Extension will also provide a block which display all the brand logo list in one page. You can put below code at any place wher you want list to be display.&lt;/p&gt;&#xD;
31
- &#xD;
32
- &#xD;
33
- &#xD;
34
- &lt;p&gt;&lt;b&gt;Note :&lt;/b&gt; Extension will auto create manufacturer attribute if it will not exists. You need to assing this new attribute to current attribute set which is used to create a products in catalog. Once you will add option to that attribute extension will be available for brand image uplaod. &lt;/p&gt;</description>
 
 
 
 
 
 
 
35
  <notes>Depends on the manufacturer attribute.</notes>
36
- <authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
37
- <date>2012-06-28</date>
38
- <time>14:15:21</time>
39
- <contents><target name="mageetc"><dir name="modules"><file name="Bc_Manufacturer.xml" hash="249a2c05a5a03d448b358c7708d286e7"/></dir></target><target name="magelocal"><dir name="Bc"><dir name="Manufacturer"><dir name="Block"><dir name="Adminhtml"><dir name="Grid"><dir name="Renderer1"><file name="Image.php" hash="1495538d3c82b6f24d481fff93fd1420"/></dir></dir><dir name="Manufacturer"><dir name="Edit"><file name="Form.php" hash="1320621adc17dbfb1b8983659a0a876c"/><dir name="Tab"><file name="Form.php" hash="575f2e28024132c4b2aec26ddb4abb5a"/></dir><file name="Tabs.php" hash="517ebac339c5972144ecbdfd5d36c84a"/></dir><file name="Edit.php" hash="5cf324603cbd50996ff6d988c2a5728e"/><file name="Grid.php" hash="6e2e3e6cb4a63d42386f8593b222c3f8"/></dir><file name="Manufacturer.php" hash="0e14f5e8413ba076e7cdce61a0d12c89"/></dir><file name="Manufacturer.php" hash="e3782cc49c8b2bb9f8c4725d829ca379"/></dir><dir name="Helper"><file name="Data.php" hash="793e861143a0495183031410cfa01cbf"/></dir><dir name="Model"><file name="Manufacturer.php" hash="07a159edce18fa9be0969cc2295988df"/><dir name="Mysql4"><dir name="Manufacturer"><file name="Collection.php" hash="b0ff7e1a7abe2cd2c612fdd4067df99f"/></dir><file name="Manufacturer.php" hash="f8e269187b2dedd3ed3affb582aaef9a"/></dir><file name="Status.php" hash="e702ab395b380899a636fc1ffa8e76eb"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ManufacturerController.php" hash="e6433fa99dbd211518526bfc72595f08"/></dir><file name="IndexController.php" hash="96cdf068cb8f579766eda5fb662532c2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="fefcf2e2b0f7b6d4aea9353cab4f8708"/><file name="config.xml" hash="7537a5b235b2e76cc89e6168f9237f56"/></dir><dir name="sql"><dir name="manufacturer_setup"><file name="mysql4-install-0.1.0.php" hash="f7d7c267a8f73b7637d29dc224907bb1"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="manufacturer.xml" hash="5e5ae1543ac26dc7427bd7e6be0b3437"/></dir><dir name="template"><dir name="manufacturer"><file name="manufacturer.phtml" hash=""/><file name="manufacturer_resize.phtml" hash=""/><file name="product_manufacturer.phtml" hash=""/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="manufacturer.xml" hash="6dea17bcb6d2ae8f5fe686ef259b7a7b"/></dir></dir></dir></dir></target></contents>
40
  <compatible/>
41
- <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
42
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>manufacturer_brand_logo</name>
4
+ <version>1.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Our manufacturer extension allows merchants to upload brand logos and display on product pages</summary>
10
+ <description>&lt;h3&gt;Magento Manufacturer Brand Logo Upload Extension&lt;/h3&gt;
11
+
12
+ &lt;p&gt;Seamlessly upload brand logos and manage these from the admin panel of your magento store. &lt;/p&gt;
13
+
14
+ &lt;p&gt;Our powerful magento manufacturer brand logo upload extension allows online merchants to easily upload brand logos, and display these on both the product pages as well as brand list pages. The extension can be seamlessly integrated with your online store in a hassle-free manner&lt;/p&gt;
15
+
16
+ &lt;p&gt;You can easily download and install the magento manufacturer brand upload extension using magento connect. The magento extension is optimized in the best manner so that it does not affect the layout and functioning of your magento e-commerce website. As an online merchant, you need to remember that this magento extension automatically creates manufacturer attributes if it does not exist. You will have to assign the new attribute to the current attribute set which is used for creating products in the catalog. Once you add the option to that attribute, the extension will be available for brand image upload&lt;/p&gt;
17
+
18
+
19
+ &lt;h3&gt;Extension Features&lt;/h3&gt;
20
+ &lt;ul&gt;
21
+ &lt;li&gt;Go to Manufacturer &gt; Manage manufacture&lt;/li&gt;
22
+ &lt;li&gt; Quickly upload different manufacturer brands from admin panel&lt;/li&gt;
23
+ &lt;li&gt; Create a custom brand list page&lt;/li&gt;
24
+ &lt;li&gt; Display brands logo in the most professional manner on product pages&lt;/li&gt;
25
+ &lt;li&gt; Categorize products according to different brands&lt;/li&gt;
26
+ &lt;/ul&gt;
27
+
28
+ &lt;h3&gt;Guidelines for uploading manufacturers&#x2019; brand logo&lt;/h3&gt;
29
+ &lt;ul&gt;
30
+ &lt;li&gt;First you need to go to Manufacturer and select Manage Manufacture&lt;/li&gt;
31
+ &lt;li&gt;Next, you need to click on the Add Manufacture button&lt;/li&gt;
32
+ &lt;li&gt;Once this is done you have to choose the brand and upload its logo&lt;/li&gt;
33
+ &lt;li&gt;Now, just click on the save button and that&#x2019;s it by now must have successfully upload the brand logo &lt;/li&gt;
34
+ &lt;/ul&gt;
35
+
36
+ &lt;p&gt;&lt;strong&gt;Mentioned below is the code you need to use for displaying brand logo on product detail page&lt;/strong&gt;&lt;/p&gt;
37
+
38
+ $this-&gt;getLayout()-&gt;createBlock('manufacturer/manufacturer')-&gt;setProduct($_product)-&gt;setTemplate('manufacturer/product_manufacturer.phtml')-&gt;toHtml();
39
+
40
+ &lt;p&gt;
41
+ The magento extension also provides a block which displays the entire brand logos list in one page. You can use this code wherever you want the list to be displayed.&lt;/p&gt;</description>
42
  <notes>Depends on the manufacturer attribute.</notes>
43
+ <authors><author><name>biztechc</name><user>auto-converted</user><email>sales@biztechconsultancy.com</email></author></authors>
44
+ <date>2012-07-20</date>
45
+ <time>10:58:21</time>
46
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="manufacturer.xml" hash="6dea17bcb6d2ae8f5fe686ef259b7a7b"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="manufacturer.xml" hash="5e5ae1543ac26dc7427bd7e6be0b3437"/></dir><dir name="template"><dir name="manufacturer"><file name="manufacturer.phtml" hash="794329c95e2c61433dee7b24b4af1e0c"/><file name="manufacturer_resize.phtml" hash="067da142ddff552968601241e3f75ef5"/><file name="product_manufacturer.phtml" hash="15f6282fcd354c462cf6fc7c22ec0d9a"/></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Bc"><dir name="Bcall"><dir name="etc"><file name="adminhtml.xml" hash="731f14fbea2388ca1f3f9e085b089c62"/><file name="config.xml" hash="040dc658cc2e7ac30a4b5204306984ea"/><file name="system.xml" hash="f7faf674eaf08a5cd6783645bd3f1aae"/></dir><dir name="Helper"><file name="Data.php" hash="89bd8d7b99721ceaaf31d039cd27a381"/></dir></dir><dir name="Manufacturer"><dir name="Block"><file name="Manufacturer.php" hash="e3782cc49c8b2bb9f8c4725d829ca379"/><dir name="Adminhtml"><file name="Manufacturer.php" hash="0e14f5e8413ba076e7cdce61a0d12c89"/><dir name="Grid"><dir name="Renderer1"><file name="Image.php" hash="1495538d3c82b6f24d481fff93fd1420"/></dir></dir><dir name="Manufacturer"><file name="Edit.php" hash="5cf324603cbd50996ff6d988c2a5728e"/><file name="Grid.php" hash="6e2e3e6cb4a63d42386f8593b222c3f8"/><dir name="Edit"><file name="Form.php" hash="1320621adc17dbfb1b8983659a0a876c"/><file name="Tabs.php" hash="517ebac339c5972144ecbdfd5d36c84a"/><dir name="Tab"><file name="Form.php" hash="575f2e28024132c4b2aec26ddb4abb5a"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="96cdf068cb8f579766eda5fb662532c2"/><dir name="Adminhtml"><file name="ManufacturerController.php" hash="e6433fa99dbd211518526bfc72595f08"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7fe093d52dadfeb161acfb86fcf39564"/><file name="config.xml" hash="337ec10b69a99d2811da5d18186f1ddb"/></dir><dir name="Helper"><file name="Data.php" hash="793e861143a0495183031410cfa01cbf"/></dir><dir name="Model"><file name="Manufacturer.php" hash="07a159edce18fa9be0969cc2295988df"/><file name="Status.php" hash="e702ab395b380899a636fc1ffa8e76eb"/><dir name="Mysql4"><file name="Manufacturer.php" hash="f8e269187b2dedd3ed3affb582aaef9a"/><dir name="Manufacturer"><file name="Collection.php" hash="b0ff7e1a7abe2cd2c612fdd4067df99f"/></dir></dir></dir><dir name="sql"><dir name="manufacturer_setup"><file name="mysql4-install-0.1.0.php" hash="f7d7c267a8f73b7637d29dc224907bb1"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Bc_Bcall.xml" hash="89be5607bd577a43766fdf8c17c03698"/><file name="Bc_Manufacturer.xml" hash="249a2c05a5a03d448b358c7708d286e7"/></dir></target></contents>
47
  <compatible/>
48
+ <dependencies/>
49
  </package>