bc_feedback - Version 1.0.0.5

Version Notes

- Feedback module activation control from admin panel
- Email configuration for recipients of customer feedback email
- Pop up display for feedback form

- Solved the issue of access denied for magento versions 1.4

Download this release

Release Info

Developer Magento Core Team
Extension bc_feedback
Version 1.0.0.5
Comparing to
See all releases


Code changes from version 1.0.0.4 to 1.0.0.5

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>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>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>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>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="bcall">
28
+ <label>Extentions</label>
29
+ <sort_order>250</sort_order>
30
+ </biztech>
31
+ </tabs>
32
+ </config>
app/code/local/Bc/Feedback/etc/adminhtml.xml CHANGED
@@ -1,37 +1,46 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * @category Bc
5
- * @package Bc_Feedback
6
- * @author ModuleCreator
7
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
- */
9
- -->
10
- <config>
11
- <acl>
12
- <resources>
13
- <all>
14
- <title>Allow Everything</title>
15
- </all>
16
- <admin>
17
- <children>
18
- <feedback>
19
- <title>FeedBack Module</title>
20
- <sort_order>10</sort_order>
21
- </feedback>
22
- <system>
23
- <children>
24
- <config>
25
- <children>
26
- <feedback>
27
- <title>FeedBack Module</title>
28
- </feedback>
29
- </children>
30
- </config>
31
- </children>
32
- </system>
33
- </children>
34
- </admin>
35
- </resources>
36
- </acl>
 
 
 
 
 
 
 
 
 
37
  </config>
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * @category Bc
5
+ * @package Bc_Font
6
+ * @author ModuleCreator
7
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
+ */
9
+ -->
10
+ <config>
11
+ <acl>
12
+ <resources>
13
+ <all>
14
+ <title>Allow Everything</title>
15
+ </all>
16
+ <admin>
17
+ <children>
18
+ <feedback>
19
+ <title>FeedBack Module</title>
20
+ <sort_order>10</sort_order>
21
+ </feedback>
22
+ <system>
23
+ <children>
24
+ <config>
25
+ <children>
26
+ <feedback translate="title" module="feedback">
27
+ <title>Customer FeedBack</title>
28
+ <sort_order>100</sort_order>
29
+ </feedback>
30
+ </children>
31
+ </config>
32
+ </children>
33
+ </system>
34
+ </children>
35
+ </admin>
36
+ </resources>
37
+ </acl>
38
+ <layout>
39
+ <updates>
40
+ <feedback>
41
+ <file>feedback.xml</file>
42
+ </feedback>
43
+ </updates>
44
+ </layout>
45
+
46
  </config>
app/code/local/Bc/Feedback/etc/system.xml CHANGED
@@ -1,77 +1,71 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magentocommerce.com for more information.
21
- *
22
- * @category Mage
23
- * @package Mage_Customer
24
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <config>
29
- <tabs>
30
- <biztech translate="label" module="feedback">
31
- <label>Biztech Extensions</label>
32
- <sort_order>900</sort_order>
33
- </biztech>
34
- </tabs>
35
- <sections>
36
- <feedback translate="label" module="feedback">
37
- <class>separator-top</class>
38
- <label>Feedback</label>
39
- <tab>biztech</tab>
40
- <sort_order>130</sort_order>
41
- <show_in_default>1</show_in_default>
42
- <show_in_website>1</show_in_website>
43
- <show_in_store>1</show_in_store>
44
- <groups>
45
- <feedback translate="label">
46
- <label>Configuration</label>
47
- <frontend_type>text</frontend_type>
48
- <sort_order>10</sort_order>
49
- <show_in_default>1</show_in_default>
50
- <show_in_website>0</show_in_website>
51
- <show_in_store>0</show_in_store>
52
- <fields>
53
- <feedback_from_mail translate="label">
54
- <label>Recipient Email</label>
55
- <frontend_type>text</frontend_type>
56
- <sort_order>2</sort_order>
57
- <show_in_default>1</show_in_default>
58
- <show_in_website>1</show_in_website>
59
- <show_in_store>0</show_in_store>
60
- </feedback_from_mail>
61
- </fields>
62
- <fields>
63
- <active translate="label">
64
- <label>Enable</label>
65
- <frontend_type>select</frontend_type>
66
- <source_model>adminhtml/system_config_source_yesno</source_model>
67
- <sort_order>1</sort_order>
68
- <show_in_default>1</show_in_default>
69
- <show_in_website>1</show_in_website>
70
- <show_in_store>0</show_in_store>
71
- </active>
72
- </fields>
73
- </feedback>
74
- </groups>
75
- </feedback>
76
- </sections>
77
- </config>
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Academic Free License (AFL 3.0)
9
+ * that is bundled with this package in the file LICENSE_AFL.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/afl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * DISCLAIMER
17
+ *
18
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
19
+ * versions in the future. If you wish to customize Magento for your
20
+ * needs please refer to http://www.magentocommerce.com for more information.
21
+ *
22
+ * @category Mage
23
+ * @package Mage_Customer
24
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+ -->
28
+ <config>
29
+ <sections>
30
+ <feedback translate="label" module="feedback">
31
+ <class>separator-top</class>
32
+ <label>Feedback</label>
33
+ <tab>biztech</tab>
34
+ <sort_order>130</sort_order>
35
+ <show_in_default>1</show_in_default>
36
+ <show_in_website>1</show_in_website>
37
+ <show_in_store>1</show_in_store>
38
+ <groups>
39
+ <feedback translate="label">
40
+ <label>Configuration</label>
41
+ <frontend_type>text</frontend_type>
42
+ <sort_order>10</sort_order>
43
+ <show_in_default>1</show_in_default>
44
+ <show_in_website>0</show_in_website>
45
+ <show_in_store>0</show_in_store>
46
+ <fields>
47
+ <feedback_from_mail translate="label">
48
+ <label>Recipient Email</label>
49
+ <frontend_type>text</frontend_type>
50
+ <sort_order>2</sort_order>
51
+ <show_in_default>1</show_in_default>
52
+ <show_in_website>1</show_in_website>
53
+ <show_in_store>0</show_in_store>
54
+ </feedback_from_mail>
55
+ </fields>
56
+ <fields>
57
+ <active translate="label">
58
+ <label>Enable</label>
59
+ <frontend_type>select</frontend_type>
60
+ <source_model>adminhtml/system_config_source_yesno</source_model>
61
+ <sort_order>1</sort_order>
62
+ <show_in_default>1</show_in_default>
63
+ <show_in_website>1</show_in_website>
64
+ <show_in_store>0</show_in_store>
65
+ </active>
66
+ </fields>
67
+ </feedback>
68
+ </groups>
69
+ </feedback>
70
+ </sections>
71
+ </config>
 
 
 
 
 
 
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,24 +1,28 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>bc_feedback</name>
4
- <version>1.0.0.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>
8
  <extends/>
9
  <summary>Display feedback panel in popup &amp; send email to admin for information filled by customer.</summary>
10
- <description>&lt;h1&gt;Customer FeedBack Manager&lt;/h1&gt;&#xD;
11
- &#xD;
12
- Extension will provide visitor to send feedback/comment to admin via Feedback form in pop up. Feedback button located on screen left side will open up feedback popup and allow guest to write comment to be send to admin via email. &#xD;
13
- &#xD;
14
- Extension will provide interface for admin to enable/disable module from backend and configure recipents email address for feedback email. &#xD;
15
- &#xD;
16
  Goto System &gt; configuration &gt; Biztech Extensions &gt; Feedback &gt; configuration</description>
17
- <notes>- IF Feedback recipient email is not specified then email will be sent to the recipient specified for contact us form.</notes>
18
- <authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
19
- <date>2012-07-19</date>
20
- <time>10:11:11</time>
21
- <contents><target name="mageetc"><dir name="modules"><file name="Bc_Feedback.xml" hash="24ae9a181967f28f7444f32c79680c42"/></dir></target><target name="magelocal"><dir name="Bc"><dir name="Feedback"><dir name="Block"><file name="Feedback.php" hash="79437eefd19f20e8acba1320b0687e5f"/></dir><dir name="Helper"><file name="Data.php" hash="c247278ee540a94e0ffb9c1c3fd48748"/></dir><dir name="controllers"><file name="IndexController.php" hash="b2fc732e07a4b17181847fab0376584e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="545940b926b739e44e9d56f503d02e0f"/><file name="config.xml" hash="2436d192b39c7783ca06de0b00e794c8"/><file name="system.xml" hash="5dfc5e2e16707ce585412cf1cb318062"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="feedback"><dir name="css"><file name="popup.css" hash="67b406a6038fab9430ee42fafc5748d2"/></dir><dir name="images"><file name="Thumbs.db" hash="193b43145c8da8f05fb24cc31bec23ec"/><file name="ajax-loader-onestep.gif" hash="cf9953e0d5241b49c3dee9d0051cca3d"/><file name="closebox.png" hash="f2aace763cfcc4d6f3427a8a0842e55c"/><file name="feedbacktab.png" hash="f4efb82c0d823c56ee5cc37ebf9851f1"/><file name="general-btn.gif" hash="d04f8bf3e7bc194a031bb5b2ac7433ba"/><file name="general-input-bg.jpg" hash="5a63d17240be2d5acdd8d432c4e1caff"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/></dir><dir name="js"><file name="popup.js" hash="9354c99f4310a309f49b9bbb3af78afb"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="feedback"><file name="feedback.html" hash="fad80bccd037f798f48fb4208bb8871a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="feedback"><file name="popup_html.phtml" hash="6c8e7cea68737737700724dc96b75d2e"/></dir></dir><dir name="layout"><file name="feedback.xml" hash="32a183a464fce0a65d8169cf80317916"/></dir></dir></dir></dir></target></contents>
 
 
 
 
22
  <compatible/>
23
- <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
24
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>bc_feedback</name>
4
+ <version>1.0.0.5</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>Display feedback panel in popup &amp; send email to admin for information filled by customer.</summary>
10
+ <description>&lt;h1&gt;Customer FeedBack Manager&lt;/h1&gt;
11
+
12
+ Extension will provide visitor to send feedback/comment to admin via Feedback form in pop up. Feedback button located on screen left side will open up feedback popup and allow guest to write comment to be send to admin via email.
13
+
14
+ Extension will provide interface for admin to enable/disable module from backend and configure recipents email address for feedback email.
15
+
16
  Goto System &gt; configuration &gt; Biztech Extensions &gt; Feedback &gt; configuration</description>
17
+ <notes>- Feedback module activation control from admin panel
18
+ - Email configuration for recipients of customer feedback email
19
+ - Pop up display for feedback form
20
+
21
+ - Solved the issue of access denied for magento versions 1.4</notes>
22
+ <authors><author><name>biztechc</name><user>auto-converted</user><email>sales@biztechconsultancy.com</email></author></authors>
23
+ <date>2012-07-27</date>
24
+ <time>13:22:42</time>
25
+ <contents><target name="magelocal"><dir name="Bc"><dir name="Bcall"><dir name="etc"><file name="adminhtml.xml" hash="8920ca37aa9ca02526e66a440c537164"/><file name="config.xml" hash="b04ecf114ba681ac31b057af49cb2219"/><file name="system.xml" hash="0481ac69f34911e7e216b47404b04052"/></dir><dir name="Helper"><file name="Data.php" hash="89bd8d7b99721ceaaf31d039cd27a381"/></dir></dir><dir name="Feedback"><dir name="Block"><file name="Feedback.php" hash="79437eefd19f20e8acba1320b0687e5f"/></dir><dir name="controllers"><file name="IndexController.php" hash="b2fc732e07a4b17181847fab0376584e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b1654199bde32302ff359518686e4195"/><file name="config.xml" hash="2436d192b39c7783ca06de0b00e794c8"/><file name="system.xml" hash="e97a91348394f4ea2ac72760934aa935"/></dir><dir name="Helper"><file name="Data.php" hash="c247278ee540a94e0ffb9c1c3fd48748"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="feedback"><file name="feedback.html" hash="fad80bccd037f798f48fb4208bb8871a"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="feedback"><dir name="css"><file name="popup.css" hash="67b406a6038fab9430ee42fafc5748d2"/></dir><dir name="images"><file name="ajax-loader-onestep.gif" hash="cf9953e0d5241b49c3dee9d0051cca3d"/><file name="closebox.png" hash="f2aace763cfcc4d6f3427a8a0842e55c"/><file name="feedbacktab.png" hash="f4efb82c0d823c56ee5cc37ebf9851f1"/><file name="general-btn.gif" hash="d04f8bf3e7bc194a031bb5b2ac7433ba"/><file name="general-input-bg.jpg" hash="5a63d17240be2d5acdd8d432c4e1caff"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="Thumbs.db" hash="57a3d87fce0750ab4bef582f209e4012"/></dir><dir name="js"><file name="popup.js" hash="9354c99f4310a309f49b9bbb3af78afb"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="feedback.xml" hash="32a183a464fce0a65d8169cf80317916"/></dir><dir name="template"><dir name="feedback"><file name="popup_html.phtml" hash="6c8e7cea68737737700724dc96b75d2e"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Bc_Bcall.xml" hash="89be5607bd577a43766fdf8c17c03698"/><file name="Bc_Feedback.xml" hash="24ae9a181967f28f7444f32c79680c42"/></dir></target></contents>
26
  <compatible/>
27
+ <dependencies/>
28
  </package>
skin/frontend/base/default/feedback/images/Thumbs.db CHANGED
Binary file