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 +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/Feedback/etc/adminhtml.xml +45 -36
- app/code/local/Bc/Feedback/etc/system.xml +71 -77
- app/etc/modules/Bc_Bcall.xml +33 -0
- package.xml +17 -13
- skin/frontend/base/default/feedback/images/Thumbs.db +0 -0
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 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
<config>
|
11 |
-
<acl>
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
</
|
29 |
-
</
|
30 |
-
</
|
31 |
-
</
|
32 |
-
</
|
33 |
-
</
|
34 |
-
</
|
35 |
-
</
|
36 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
<
|
30 |
-
<
|
31 |
-
<
|
32 |
-
<
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
<
|
38 |
-
<
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
<
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
<
|
59 |
-
<
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
<
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
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.
|
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 & send email to admin for information filled by customer.</summary>
|
10 |
-
<description><h1>Customer FeedBack Manager</h1>
|
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 > configuration > Biztech Extensions > Feedback > configuration</description>
|
17 |
-
<notes>-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
22 |
<compatible/>
|
23 |
-
<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 & send email to admin for information filled by customer.</summary>
|
10 |
+
<description><h1>Customer FeedBack Manager</h1>
|
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 > configuration > Biztech Extensions > Feedback > 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
|