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 +25 -0
- app/code/local/Bc/Bcall/etc/adminhtml.xml +54 -0
- app/code/local/Bc/Bcall/etc/config.xml +105 -0
- app/code/local/Bc/Bcall/etc/system.xml +32 -0
- app/code/local/Bc/Manufacturer/etc/adminhtml.xml +2 -4
- app/code/local/Bc/Manufacturer/etc/config.xml +0 -13
- app/etc/modules/Bc_Bcall.xml +33 -0
- package.xml +39 -32
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 |
-
<
|
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 |
-
</
|
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.
|
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>
|
10 |
-
<description><
|
11 |
-
|
12 |
-
<p>
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
<p>
|
17 |
-
|
18 |
-
|
19 |
-
<
|
20 |
-
<
|
21 |
-
<li>
|
22 |
-
<li>
|
23 |
-
</
|
24 |
-
|
25 |
-
|
26 |
-
<
|
27 |
-
|
28 |
-
&#
|
29 |
-
<
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
&#
|
34 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
<notes>Depends on the manufacturer attribute.</notes>
|
36 |
-
<authors><author><name>
|
37 |
-
<date>2012-
|
38 |
-
<time>
|
39 |
-
<contents><target name="
|
40 |
<compatible/>
|
41 |
-
<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><h3>Magento Manufacturer Brand Logo Upload Extension</h3>
|
11 |
+
|
12 |
+
<p>Seamlessly upload brand logos and manage these from the admin panel of your magento store. </p>
|
13 |
+
|
14 |
+
<p>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</p>
|
15 |
+
|
16 |
+
<p>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</p>
|
17 |
+
|
18 |
+
|
19 |
+
<h3>Extension Features</h3>
|
20 |
+
<ul>
|
21 |
+
<li>Go to Manufacturer > Manage manufacture</li>
|
22 |
+
<li> Quickly upload different manufacturer brands from admin panel</li>
|
23 |
+
<li> Create a custom brand list page</li>
|
24 |
+
<li> Display brands logo in the most professional manner on product pages</li>
|
25 |
+
<li> Categorize products according to different brands</li>
|
26 |
+
</ul>
|
27 |
+
|
28 |
+
<h3>Guidelines for uploading manufacturers’ brand logo</h3>
|
29 |
+
<ul>
|
30 |
+
<li>First you need to go to Manufacturer and select Manage Manufacture</li>
|
31 |
+
<li>Next, you need to click on the Add Manufacture button</li>
|
32 |
+
<li>Once this is done you have to choose the brand and upload its logo</li>
|
33 |
+
<li>Now, just click on the save button and that’s it by now must have successfully upload the brand logo </li>
|
34 |
+
</ul>
|
35 |
+
|
36 |
+
<p><strong>Mentioned below is the code you need to use for displaying brand logo on product detail page</strong></p>
|
37 |
+
|
38 |
+
$this->getLayout()->createBlock('manufacturer/manufacturer')->setProduct($_product)->setTemplate('manufacturer/product_manufacturer.phtml')->toHtml();
|
39 |
+
|
40 |
+
<p>
|
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.</p></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>
|