orderrequest_module - Version 0.1.1

Version Notes

compatible patch supee 6788

Download this release

Release Info

Developer Biztech
Extension orderrequest_module
Version 0.1.1
Comparing to
See all releases


Code changes from version 0.1.0 to 0.1.1

app/code/local/Biztech/All/Helper/Data.php DELETED
@@ -1,6 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Helper_Data extends Mage_Core_Helper_Abstract
4
- {
5
-
6
- }
 
 
 
 
 
 
app/code/local/Biztech/All/Model/All.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_All extends Mage_Core_Model_Abstract
4
- {
5
- public function _construct()
6
- {
7
- parent::_construct();
8
- $this->_init('all/all');
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Mysql4/All.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Mysql4_All extends Mage_Core_Model_Mysql4_Abstract
4
- {
5
- public function _construct()
6
- {
7
- // Note that the all_id refers to the key field in your database table.
8
- $this->_init('all/all', 'all_id');
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Mysql4/All/Collection.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Mysql4_All_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
- {
5
- public function _construct()
6
- {
7
- parent::_construct();
8
- $this->_init('all/all');
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Source/Updates/Type.php DELETED
@@ -1,50 +0,0 @@
1
- <?php
2
- /**
3
-
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the EULA
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
- */
11
-
12
- class Biztech_All_Model_Source_Updates_Type extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
13
- {
14
- const TYPE_UPDATE_RELEASE = 'UPDATE_RELEASE';
15
- const TYPE_INSTALLED_UPDATE = 'INSTALLED_UPDATE';
16
- public function toOptionArray()
17
- {
18
- return array(
19
- array('value' => self::TYPE_INSTALLED_UPDATE, 'label' => Mage::helper('all')->__('My extensions updates')),
20
- array('value' => self::TYPE_UPDATE_RELEASE, 'label' => Mage::helper('all')->__('All extensions updates')),
21
- );
22
- }
23
-
24
- public function getAllOptions()
25
- {
26
- return $this->toOptionArray();
27
- }
28
-
29
-
30
- public function getLabel($value)
31
- {
32
- $options = $this->toOptionArray();
33
- foreach ($options as $v) {
34
- if ($v['value'] == $value) {
35
- return $v['label'];
36
- }
37
- }
38
- return '';
39
- }
40
-
41
- public function getGridOptions()
42
- {
43
- $items = $this->getAllOptions();
44
- $out = array();
45
- foreach ($items as $item) {
46
- $out[$item['value']] = $item['label'];
47
- }
48
- return $out;
49
- }
50
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Status.php DELETED
@@ -1,15 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Status extends Varien_Object
4
- {
5
- const STATUS_ENABLED = 1;
6
- const STATUS_DISABLED = 2;
7
-
8
- static public function getOptionArray()
9
- {
10
- return array(
11
- self::STATUS_ENABLED => Mage::helper('all')->__('Enabled'),
12
- self::STATUS_DISABLED => Mage::helper('all')->__('Disabled')
13
- );
14
- }
15
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Update.php DELETED
@@ -1,86 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Update extends Mage_Core_Helper_Abstract
4
- {
5
-
6
- const UPDATE_NOTIFICATION_FEED_URL = 'http://store.biztechconsultancy.com/rss/catalog/new/store_id/1/';
7
- public function getInterests()
8
- {
9
- $types = @explode(',', Mage::getStoreConfig('all/all_general/interests'));
10
- return $types;
11
- }
12
- public function isExtensionInstalled($code)
13
- {
14
-
15
- $modules = array_keys((array)Mage::getConfig()->getNode('modules')->children());
16
- foreach ($modules as $moduleName) {
17
- if ($moduleName == $code) {
18
- return true;
19
- }
20
- }
21
- return false;
22
- }
23
-
24
- public function check()
25
- {
26
- if ((time() - Mage::app()->loadCache('biztech_all_updates_feed_lastcheck')) > Mage::getStoreConfig('all/all_general/check_frequency')) {
27
- $this->refresh();
28
- }
29
- }
30
-
31
- public function refresh()
32
- {
33
- $types = array();
34
- $feedData = array();
35
- $extensio_module = array();
36
- try{
37
- $xml = file_get_contents(self::UPDATE_NOTIFICATION_FEED_URL);
38
- $xml = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);//LIBXML_NOCDATA LIBXML_NOWARNING
39
-
40
- $interests = $this->getInterests();
41
- if(!empty($interests[0])){
42
- $isInterestedInSelfUpgrades = in_array(Biztech_All_Model_Source_Updates_Type::TYPE_INSTALLED_UPDATE, $interests);
43
- $isInterestedInAllUpgrades = in_array(Biztech_All_Model_Source_Updates_Type::TYPE_UPDATE_RELEASE, $interests);
44
- $modules = Mage::getConfig()->getNode('modules')->children();
45
- $modulesArray = (array)$modules;
46
- foreach($xml->channel->item as $keys=>$extensions) {
47
- $types[] = (string) $extensions->update_notifications->type;
48
- $extensions_name = (string)$extensions->update_notifications->extensions;
49
-
50
- if((string)$extensions->update_notifications->date!=""&&(string)$extensions->update_notifications->extension_title!=""&&(string)$extensions->update_notifications->extension_content!=""&&(string)$extensions->update_notifications->product_url!=""){
51
- if(!$isInterestedInAllUpgrades){
52
- if ($this->isExtensionInstalled($extensions_name)) {
53
- $feedData[] = array(
54
- 'severity' => 4,
55
- 'date_added' => (string) $extensions->update_notifications->date,
56
- 'title' => (string)$extensions->update_notifications->extension_title,
57
- 'description' => (string)$extensions->update_notifications->extension_content,
58
- 'url' => (string)$extensions->update_notifications->product_url,
59
- );
60
- }
61
- } else{
62
- $feedData[] = array(
63
- 'severity' => 4,
64
- 'date_added' => (string)$extensions->update_notifications->date,
65
- 'title' => (string)$extensions->update_notifications->extension_title,
66
- 'description' => (string)$extensions->update_notifications->extension_content,
67
- 'url' => (string)$extensions->update_notifications->product_url,
68
- );
69
- }
70
- }
71
- }
72
- if ($feedData) {
73
- foreach($feedData as $data){
74
- if ((array_intersect($types,$interests) && $isInterestedInSelfUpgrades)) {
75
- Mage::getModel('adminnotification/inbox')->parse(array_reverse(array($data)));
76
- }
77
- }
78
- }
79
- Mage::app()->saveCache(time(), 'biztech_all_updates_feed_lastcheck');
80
- return true;
81
- }
82
- }catch (Exception $e) {
83
- Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
84
- }
85
- }
86
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/etc/config.xml DELETED
@@ -1,147 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * @category Biztech
5
- * @package Biztech_All
6
- * @author ModuleCreator
7
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
- */
9
- -->
10
- <config>
11
- <modules>
12
- <Biztech_All>
13
- <version>0.1.0</version>
14
- </Biztech_All>
15
- </modules>
16
- <frontend>
17
- <routers>
18
- <all>
19
- <use>standard</use>
20
- <args>
21
- <module>Biztech_All</module>
22
- <frontName>all</frontName>
23
- </args>
24
- </all>
25
- </routers>
26
- <!--<layout>
27
- <updates>
28
- <all>
29
- <file>all.xml</file>
30
- </all>
31
- </updates>
32
- </layout>-->
33
- </frontend>
34
- <admin>
35
- <routers>
36
- <all>
37
- <use>admin</use>
38
- <args>
39
- <module>Biztech_All</module>
40
- <frontName>all</frontName>
41
- </args>
42
- </all>
43
- </routers>
44
- </admin>
45
- <adminhtml>
46
- <!--<menu>
47
- <all module="all">
48
- <title>All</title>
49
- <sort_order>71</sort_order>
50
- <children>
51
- <items module="all">
52
- <title>Manage Items</title>
53
- <sort_order>0</sort_order>
54
- <action>all/adminhtml_all</action>
55
- </items>
56
- </children>
57
- </all>
58
- </menu> -->
59
- <acl>
60
- <resources>
61
- <all>
62
- <title>Allow Everything</title>
63
- </all>
64
- <admin>
65
- <children>
66
- <Biztech_All>
67
- <title>All Module</title>
68
- <sort_order>10</sort_order>
69
- </Biztech_All>
70
- </children>
71
- </admin>
72
- </resources>
73
- </acl>
74
- <events>
75
- <controller_action_predispatch>
76
- <observers>
77
-
78
- <bzall_upds>
79
- <type>singleton</type>
80
- <class>all/update</class>
81
- <method>check</method>
82
- </bzall_upds>
83
- </observers>
84
- </controller_action_predispatch>
85
- </events>
86
- <!--<layout>
87
- <updates>
88
- <all>
89
- <file>all.xml</file>
90
- </all>
91
- </updates>
92
- </layout> -->
93
- </adminhtml>
94
- <global>
95
- <models>
96
- <all>
97
- <class>Biztech_All_Model</class>
98
- <resourceModel>all_mysql4</resourceModel>
99
- </all>
100
- <all_mysql4>
101
- <class>Biztech_All_Model_Mysql4</class>
102
- <entities>
103
- <all>
104
- <table>all</table>
105
- </all>
106
- </entities>
107
- </all_mysql4>
108
- </models>
109
- <resources>
110
- <all_setup>
111
- <setup>
112
- <module>Biztech_All</module>
113
- </setup>
114
- <connection>
115
- <use>core_setup</use>
116
- </connection>
117
- </all_setup>
118
- <all_write>
119
- <connection>
120
- <use>core_write</use>
121
- </connection>
122
- </all_write>
123
- <all_read>
124
- <connection>
125
- <use>core_read</use>
126
- </connection>
127
- </all_read>
128
- </resources>
129
- <blocks>
130
- <all>
131
- <class>Biztech_All_Block</class>
132
- </all>
133
- </blocks>
134
- <helpers>
135
- <all>
136
- <class>Biztech_All_Helper</class>
137
- </all>
138
- </helpers>
139
- </global>
140
- <default>
141
- <all>
142
- <all_general>
143
- <check_frequency>86400</check_frequency>
144
- </all_general>
145
- </all>
146
- </default>
147
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/etc/system.xml DELETED
@@ -1,46 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" ?>
2
- <config>
3
- <tabs>
4
- <biztech translate="label" module="all">
5
- <label>Biztech Extensions</label>
6
- <sort_order>400</sort_order>
7
- </biztech>
8
- </tabs>
9
- <sections>
10
- <all translate="label" module="all">
11
- <label>Info</label>
12
- <tab>biztech</tab>
13
- <frontend_type>text</frontend_type>
14
- <sort_order>10</sort_order>
15
- <show_in_default>1</show_in_default>
16
- <show_in_website>1</show_in_website>
17
- <show_in_store>1</show_in_store>
18
- <groups>
19
-
20
- <all_general translate="label">
21
- <label>General</label>
22
- <frontend_type>text</frontend_type>
23
- <sort_order>10</sort_order>
24
- <show_in_default>1</show_in_default>
25
- <show_in_website>1</show_in_website>
26
- <show_in_store>1</show_in_store>
27
- <fields>
28
-
29
- <interests translate="label">
30
- <label>I'd like to be informed by Biztech about:</label>
31
- <comment></comment>
32
- <frontend_type>multiselect</frontend_type>
33
- <sort_order>100</sort_order>
34
- <show_in_default>1</show_in_default>
35
- <show_in_website>1</show_in_website>
36
- <show_in_store>1</show_in_store>
37
- <can_be_empty>1</can_be_empty>
38
- <source_model>all/source_updates_type</source_model>
39
- </interests>
40
-
41
- </fields>
42
- </all_general>
43
- </groups>
44
- </all>
45
- </sections>
46
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/Orderrequest/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Biztech_Orderrequest>
13
- <version>0.1.0</version>
14
  </Biztech_Orderrequest>
15
  </modules>
16
 
@@ -77,16 +77,15 @@
77
  </orderrequest>
78
  </helpers>
79
  </global>
80
-
81
  <admin>
82
  <routers>
83
- <orderrequest>
84
- <use>admin</use>
85
- <args>
86
- <module>Biztech_Orderrequest</module>
87
- <frontName>orderrequest</frontName>
88
- </args>
89
- </orderrequest>
90
  </routers>
91
  </admin>
92
 
@@ -99,7 +98,7 @@
99
  <items module="orderrequest">
100
  <title>Customer Order Comments</title>
101
  <sort_order>0</sort_order>
102
- <action>orderrequest/adminhtml_orderrequest</action>
103
  </items>
104
  </children>
105
  </orderrequest>
10
  <config>
11
  <modules>
12
  <Biztech_Orderrequest>
13
+ <version>0.1.1</version>
14
  </Biztech_Orderrequest>
15
  </modules>
16
 
77
  </orderrequest>
78
  </helpers>
79
  </global>
 
80
  <admin>
81
  <routers>
82
+ <adminhtml>
83
+ <args>
84
+ <modules>
85
+ <orderrequest after="Mage_Adminhtml">Biztech_Orderrequest_Adminhtml</orderrequest>
86
+ </modules>
87
+ </args>
88
+ </adminhtml>
89
  </routers>
90
  </admin>
91
 
98
  <items module="orderrequest">
99
  <title>Customer Order Comments</title>
100
  <sort_order>0</sort_order>
101
+ <action>adminhtml/orderrequest</action>
102
  </items>
103
  </children>
104
  </orderrequest>
app/design/adminhtml/default/default/layout/orderrequest.xml CHANGED
@@ -1,14 +1,14 @@
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
- <orderrequest_adminhtml_orderrequest_index>
4
  <reference name="content">
5
  <block type="orderrequest/adminhtml_orderrequest" name="orderrequest" />
6
  </reference>
7
- </orderrequest_adminhtml_orderrequest_index>
8
 
9
- <orderrequest_adminhtml_orderrequest_edit>
10
  <reference name="content">
11
  <block type="orderrequest/adminhtml_orderrequest" name="orderrequest" template="orderrequest/orderrequest.phtml" />
12
  </reference>
13
- </orderrequest_adminhtml_orderrequest_edit>
14
  </layout>
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
+ <adminhtml_orderrequest_index>
4
  <reference name="content">
5
  <block type="orderrequest/adminhtml_orderrequest" name="orderrequest" />
6
  </reference>
7
+ </adminhtml_orderrequest_index>
8
 
9
+ <adminhtml_orderrequest_edit>
10
  <reference name="content">
11
  <block type="orderrequest/adminhtml_orderrequest" name="orderrequest" template="orderrequest/orderrequest.phtml" />
12
  </reference>
13
+ </adminhtml_orderrequest_edit>
14
  </layout>
app/etc/modules/Biztech_All.xml DELETED
@@ -1,52 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * @category Biztech
5
- * @package Biztech_All
6
- * @author ModuleCreator
7
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
- */
9
- -->
10
- <config>
11
- <modules>
12
- <Biztech_All>
13
- <active>true</active>
14
- <codePool>local</codePool>
15
- </Biztech_All>
16
- </modules>
17
- <adminhtml>
18
- <acl>
19
- <resources>
20
- <all>
21
- <title>Allow Everything</title>
22
- </all>
23
- <admin>
24
- <children>
25
- <Biztech_All>
26
- <title>All</title>
27
- <sort_order>10</sort_order>
28
- </Biztech_All>
29
- <system>
30
- <children>
31
- <config>
32
- <children>
33
- <all>
34
- <title>All</title>
35
- </all>
36
- </children>
37
- </config>
38
- </children>
39
- </system>
40
- </children>
41
- </admin>
42
- </resources>
43
- </acl>
44
- <layout>
45
- <updates>
46
- <all>
47
- <file>all.xml</file>
48
- </all>
49
- </updates>
50
- </layout>
51
- </adminhtml>
52
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,35 +1,34 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>orderrequest_module</name>
4
- <version>0.1.0</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>Customer Order Comment Management Extension will help you get your customers&#x2019; comments/views before they shop from your store, helping you know your customers closely</summary>
10
  <description>Can your customers comment on their orders prior to placing any order? It is important to understand what your customers think about your products or if they wish to comment something to improve their customer experience or for your store! &#xD;
11
- You can now add this facility in your Magento store by configuring Customer Order Comment Management Extension. It will add a comment box in the checkout page and order page in the customer account for the customer to have a view of the history of comments being posted by him/her for various orders placed.&#xD;
12
- Core Features &#xD;
13
- &#x27A2; Adds Request Box&#xD;
14
- Admin can add order request comment box in the last step of checkout process.&#xD;
15
- &#x27A2; Displays Order Comment in Two Places&#xD;
16
- Admin can view order comments in the form of grid listing or in order detail page as customer order request.&#xD;
17
- &#xD;
18
- &#x27A2; Comment Visible to Customers&#xD;
19
- Customer can view order comment from order details page under &#x2018;my account.&#x2019;&#xD;
20
- &#xD;
21
- &#x27A2; Adds New Comment&#xD;
22
- Customers can also add new request/comment from order details page under &#x2018;my account.&#x2019;&#xD;
23
- Users Gain&#xD;
24
- &#x27A2; Happy Customers as they get opportunity to comment&#xD;
25
- &#x27A2; Customers feel they are heard and important to business&#xD;
26
- &#x27A2; Develops customer retention and loyalty &#xD;
27
- </description>
28
- <notes>New Release</notes>
29
  <authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
30
- <date>2014-12-26</date>
31
- <time>10:02:47</time>
32
- <contents><target name="mageetc"><dir name="modules"><file name="Biztech_Orderrequest.xml" hash="48b1e9bbd625368c032363c709ef78c3"/><file name="Biztech_All.xml" hash="f4c3b9c029e56da8f09d7d71336c00f7"/></dir></target><target name="magelocal"><dir name="Biztech"><dir name="Orderrequest"><dir name="Block"><dir name="Adminhtml"><dir name="Orderrequest"><file name="Grid.php" hash="0c4fe9af377aca9635a0763cda82b28a"/></dir><file name="Orderrequest.php" hash="c401f951d409bb1c1baa06bb3b548a6f"/></dir><dir name="Email"><file name="Info.php" hash="5b09822c783eb08f141c44fb4b6e319f"/></dir><dir name="Order"><file name="View.php" hash="717551e6077b59d896285b1acf7e3a39"/></dir><file name="Orderrequest.php" hash="232dd62df54fd9c52fe7e455508ffda0"/></dir><dir name="Helper"><file name="Data.php" hash="31fb96a29df5a3b28538e1daf68c6aff"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Orderrequest"><file name="Collection.php" hash="4d74f5d9563e9bffb3ca9238ed778088"/></dir><file name="Orderrequest.php" hash="8a044dce2885a970adc6981ab1bd0a1a"/></dir><file name="Observer.php" hash="ca6fc470834bbe2ed6259515ee4346fc"/><file name="Orderrequest.php" hash="59e9f773919cdaaf41a139d14e1c4d44"/><file name="Status.php" hash="59269d75640f86f8954a0522f8d9ca23"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="OrderrequestController.php" hash="b15f4d5a4d49af21f794e227f010ffcd"/></dir><file name="IndexController.php" hash="2dd5737ea5721b375a63da9384ace851"/></dir><dir name="etc"><file name="config.xml" hash="cc3f8ab9c82b72aecec38fa19c133102"/><file name="system.xml" hash="6328d96275a2920defdbddca8a5fe39b"/></dir><dir name="sql"><dir name="orderrequest_setup"><file name="mysql4-install-0.1.0.php" hash="e25d6c2b1059b87555959642acfe17ee"/></dir></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="e856726fd089e7f73ca7de450b696419"/></dir><dir name="Model"><file name="All.php" hash="a9aeeb9c6d7be9cf20414f405efc878d"/><dir name="Mysql4"><dir name="All"><file name="Collection.php" hash="a1909236183d126f38e628b85bb57e81"/></dir><file name="All.php" hash="f02542393eb26eadfb9b92d901d2ac12"/></dir><dir name="Source"><dir name="Updates"><file name="Type.php" hash="fa695bf4764c2d93c7436ed54bde89ba"/></dir></dir><file name="Status.php" hash="30a6f0da7d9d45e1082da532d5f8dabc"/><file name="Update.php" hash="83ceddbab4d621545b9c7c4bccdec7c0"/></dir><dir name="etc"><file name="config.xml" hash="27e403cedb861da03753d28527d9c664"/><file name="system.xml" hash="17262087dc933d934e09ac04cafb4c51"/></dir></dir></dir><dir name="modules"><file name="Biztech_Orderrequest.xml" hash=""/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="orderrequest.xml" hash="9bf9e996a6e2086545df15219bdb9e06"/></dir><dir name="template"><dir name="orderrequest"><file name="orderrequest.phtml" hash="c98e0c0d5052909d2879e191500c30d5"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="orderrequest.xml" hash="38c1a23aafe0ce557849d0de58d5fec8"/></dir><dir name="template"><dir name="orderrequest"><dir name="checkout"><dir name="multishipping"><file name="overview.phtml" hash="bd6cfe4fb9cafac8b34b7eafedf8b7c4"/></dir><dir name="onepage"><file name="orderrequest.phtml" hash="f37eee75e1c7e47239a659fc20ddc075"/><file name="review.phtml" hash="d88ab2da4a144e734e5d2a8ff79d53f9"/></dir></dir><dir name="email"><file name="info.phtml" hash="7ade9e9142b0383cc47ed1f7c710307a"/></dir><dir name="order"><file name="view.phtml" hash="54e142f07702dd90d87d8f8a63b498d7"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="orderrequest"><dir name="css"><file name="orderrequest.css" hash="4a597d7c279315b54c012ce40a24f857"/></dir><dir name="js"><file name="orderrequest.js" hash="3cb8bad416ffc6d93196228b81ae4e6a"/></dir></dir></dir></dir></dir></target></contents>
33
  <compatible/>
34
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
35
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>orderrequest_module</name>
4
+ <version>0.1.1</version>
5
+ <stability>devel</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Customer Order Comment Management Extension will help you get your customers&#x2019; comments/views before they shop from your store, helping you know your customers closely</summary>
10
  <description>Can your customers comment on their orders prior to placing any order? It is important to understand what your customers think about your products or if they wish to comment something to improve their customer experience or for your store! &#xD;
11
+ You can now add this facility in your Magento store by configuring Customer Order Comment Management Extension. It will add a comment box in the checkout page and order page in the customer account for the customer to have a view of the history of comments being posted by him/her for various orders placed.&#xD;
12
+ Core Features &#xD;
13
+ &#x27A2; Adds Request Box&#xD;
14
+ Admin can add order request comment box in the last step of checkout process.&#xD;
15
+ &#x27A2; Displays Order Comment in Two Places&#xD;
16
+ Admin can view order comments in the form of grid listing or in order detail page as customer order request.&#xD;
17
+ &#xD;
18
+ &#x27A2; Comment Visible to Customers&#xD;
19
+ Customer can view order comment from order details page under &#x2018;my account.&#x2019;&#xD;
20
+ &#xD;
21
+ &#x27A2; Adds New Comment&#xD;
22
+ Customers can also add new request/comment from order details page under &#x2018;my account.&#x2019;&#xD;
23
+ Users Gain&#xD;
24
+ &#x27A2; Happy Customers as they get opportunity to comment&#xD;
25
+ &#x27A2; Customers feel they are heard and important to business&#xD;
26
+ &#x27A2; Develops customer retention and loyalty</description>
27
+ <notes>compatible patch supee 6788 </notes>
 
28
  <authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
29
+ <date>2016-03-14</date>
30
+ <time>05:43:38</time>
31
+ <contents><target name="magelocal"><dir name="Biztech"><dir name="Orderrequest"><dir name="Block"><dir name="Adminhtml"><dir name="Orderrequest"><file name="Grid.php" hash="0c4fe9af377aca9635a0763cda82b28a"/></dir><file name="Orderrequest.php" hash="c401f951d409bb1c1baa06bb3b548a6f"/></dir><dir name="Email"><file name="Info.php" hash="5b09822c783eb08f141c44fb4b6e319f"/></dir><dir name="Order"><file name="View.php" hash="717551e6077b59d896285b1acf7e3a39"/></dir><file name="Orderrequest.php" hash="232dd62df54fd9c52fe7e455508ffda0"/></dir><dir name="Helper"><file name="Data.php" hash="31fb96a29df5a3b28538e1daf68c6aff"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Orderrequest"><file name="Collection.php" hash="4d74f5d9563e9bffb3ca9238ed778088"/></dir><file name="Orderrequest.php" hash="8a044dce2885a970adc6981ab1bd0a1a"/></dir><file name="Observer.php" hash="ca6fc470834bbe2ed6259515ee4346fc"/><file name="Orderrequest.php" hash="59e9f773919cdaaf41a139d14e1c4d44"/><file name="Status.php" hash="59269d75640f86f8954a0522f8d9ca23"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="OrderrequestController.php" hash="b15f4d5a4d49af21f794e227f010ffcd"/></dir><file name="IndexController.php" hash="2dd5737ea5721b375a63da9384ace851"/></dir><dir name="etc"><file name="config.xml" hash="414343aea5555213b605a890bec43a7e"/><file name="system.xml" hash="6328d96275a2920defdbddca8a5fe39b"/></dir><dir name="sql"><dir name="orderrequest_setup"><file name="mysql4-install-0.1.0.php" hash="e25d6c2b1059b87555959642acfe17ee"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Biztech_Orderrequest.xml" hash="48b1e9bbd625368c032363c709ef78c3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="orderrequest.xml" hash="eade640aa85dafa90c5506076b4a2e4b"/></dir><dir name="template"><dir name="orderrequest"><file name="orderrequest.phtml" hash="c98e0c0d5052909d2879e191500c30d5"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="orderrequest.xml" hash="38c1a23aafe0ce557849d0de58d5fec8"/></dir><dir name="template"><dir name="orderrequest"><dir name="checkout"><dir name="multishipping"><file name="overview.phtml" hash="bd6cfe4fb9cafac8b34b7eafedf8b7c4"/></dir><dir name="onepage"><file name="orderrequest.phtml" hash="f37eee75e1c7e47239a659fc20ddc075"/><file name="review.phtml" hash="d88ab2da4a144e734e5d2a8ff79d53f9"/></dir></dir><dir name="email"><file name="info.phtml" hash="7ade9e9142b0383cc47ed1f7c710307a"/></dir><dir name="order"><file name="view.phtml" hash="54e142f07702dd90d87d8f8a63b498d7"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="orderrequest"><dir name="css"><file name="orderrequest.css" hash="4a597d7c279315b54c012ce40a24f857"/></dir><dir name="js"><file name="orderrequest.js" hash="3cb8bad416ffc6d93196228b81ae4e6a"/></dir></dir></dir></dir></dir></target></contents>
32
  <compatible/>
33
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
34
  </package>