Order_Comment_Checkout - Version 1.0.1

Version Notes

Second Release

Download this release

Release Info

Developer Chandan Kumar Singh
Extension Order_Comment_Checkout
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

Files changed (26) hide show
  1. app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment.php +1 -1
  2. app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit.php +1 -1
  3. app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit/Form.php +1 -1
  4. app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit/Tab/Form.php +2 -2
  5. app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit/Tabs.php +1 -1
  6. app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Grid.php +1 -1
  7. app/code/community/{Goigi → Chandan}/Comment/Block/Comment.php +1 -1
  8. app/code/community/{Goigi → Chandan}/Comment/Block/Commentpage.php +1 -1
  9. app/code/community/Chandan/Comment/Helper/Data.php +6 -0
  10. app/code/community/{Goigi → Chandan}/Comment/Model/Comment.php +1 -1
  11. app/code/community/{Goigi → Chandan}/Comment/Model/Mysql4/Comment.php +1 -1
  12. app/code/community/{Goigi → Chandan}/Comment/Model/Mysql4/Comment/Collection.php +1 -1
  13. app/code/community/{Goigi → Chandan}/Comment/Model/Observer.php +1 -1
  14. app/code/community/{Goigi → Chandan}/Comment/Model/Order/Default.php +1 -1
  15. app/code/community/{Goigi → Chandan}/Comment/Model/Order/Invoice.php +1 -1
  16. app/code/community/{Goigi → Chandan}/Comment/Model/Status.php +1 -1
  17. app/code/community/{Goigi → Chandan}/Comment/controllers/Adminhtml/CommentController.php +1 -1
  18. app/code/community/{Goigi → Chandan}/Comment/controllers/IndexController.php +1 -1
  19. app/code/community/{Goigi → Chandan}/Comment/etc/config.xml +42 -19
  20. app/code/community/Chandan/Comment/etc/system.xml +40 -0
  21. app/code/community/{Goigi → Chandan}/Comment/sql/comment_setup/mysql4-install-1.0.0.php +0 -0
  22. app/code/community/Goigi/Comment/Helper/Data.php +0 -6
  23. app/design/frontend/{rwd → base}/default/layout/comment.xml +0 -0
  24. app/design/frontend/{rwd → base}/default/template/comment/comment.phtml +3 -1
  25. app/etc/modules/{Goigi_Comment.xml → Chandan_Comment.xml} +2 -2
  26. package.xml +9 -9
app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Goigi_Comment_Block_Adminhtml_Comment extends Mage_Adminhtml_Block_Widget_Grid_Container
3
  {
4
  public function __construct()
5
  {
1
  <?php
2
+ class Chandan_Comment_Block_Adminhtml_Comment extends Mage_Adminhtml_Block_Widget_Grid_Container
3
  {
4
  public function __construct()
5
  {
app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Block_Adminhtml_Comment_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
  {
5
  public function __construct()
6
  {
1
  <?php
2
 
3
+ class Chandan_Comment_Block_Adminhtml_Comment_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
  {
5
  public function __construct()
6
  {
app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit/Form.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Block_Adminhtml_Comment_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
  {
5
  protected function _prepareForm()
6
  {
1
  <?php
2
 
3
+ class Chandan_Comment_Block_Adminhtml_Comment_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
  {
5
  protected function _prepareForm()
6
  {
app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit/Tab/Form.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Block_Adminhtml_Comment_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
4
  {
5
  protected function _prepareForm()
6
  {
@@ -29,7 +29,7 @@ class Goigi_Comment_Block_Adminhtml_Comment_Edit_Tab_Form extends Mage_Adminhtml
29
  'label' => Mage::helper('comment')->__('Order Comment'),
30
  'title' => Mage::helper('comment')->__('Order Comment'),
31
  'style' => 'width:500px; height:300px;',
32
- 'wysiwyg' => true,
33
  'required' => true,
34
  'readonly' => TRUE,
35
  ));
1
  <?php
2
 
3
+ class Chandan_Comment_Block_Adminhtml_Comment_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
4
  {
5
  protected function _prepareForm()
6
  {
29
  'label' => Mage::helper('comment')->__('Order Comment'),
30
  'title' => Mage::helper('comment')->__('Order Comment'),
31
  'style' => 'width:500px; height:300px;',
32
+ 'wysiwyg' => false,
33
  'required' => true,
34
  'readonly' => TRUE,
35
  ));
app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Edit/Tabs.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Block_Adminhtml_Comment_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
  {
5
 
6
  public function __construct()
1
  <?php
2
 
3
+ class Chandan_Comment_Block_Adminhtml_Comment_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
  {
5
 
6
  public function __construct()
app/code/community/{Goigi → Chandan}/Comment/Block/Adminhtml/Comment/Grid.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Block_Adminhtml_Comment_Grid extends Mage_Adminhtml_Block_Widget_Grid
4
  {
5
  public function __construct()
6
  {
1
  <?php
2
 
3
+ class Chandan_Comment_Block_Adminhtml_Comment_Grid extends Mage_Adminhtml_Block_Widget_Grid
4
  {
5
  public function __construct()
6
  {
app/code/community/{Goigi → Chandan}/Comment/Block/Comment.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Goigi_Comment_Block_Comment extends Mage_Core_Block_Template
3
  {
4
  public function _prepareLayout()
5
  {
1
  <?php
2
+ class Chandan_Comment_Block_Comment extends Mage_Core_Block_Template
3
  {
4
  public function _prepareLayout()
5
  {
app/code/community/{Goigi → Chandan}/Comment/Block/Commentpage.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Goigi_Comment_Block_Commentpage extends Mage_Core_Block_Template
3
  {
4
  protected function _toHtml()
5
  {
1
  <?php
2
+ class Chandan_Comment_Block_Commentpage extends Mage_Core_Block_Template
3
  {
4
  protected function _toHtml()
5
  {
app/code/community/Chandan/Comment/Helper/Data.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Chandan_Comment_Helper_Data extends Mage_Core_Helper_Abstract
4
+ {
5
+
6
+ }
app/code/community/{Goigi → Chandan}/Comment/Model/Comment.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Model_Comment extends Mage_Core_Model_Abstract
4
  {
5
  public function _construct()
6
  {
1
  <?php
2
 
3
+ class Chandan_Comment_Model_Comment extends Mage_Core_Model_Abstract
4
  {
5
  public function _construct()
6
  {
app/code/community/{Goigi → Chandan}/Comment/Model/Mysql4/Comment.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Model_Mysql4_Comment extends Mage_Core_Model_Mysql4_Abstract
4
  {
5
  public function _construct()
6
  {
1
  <?php
2
 
3
+ class Chandan_Comment_Model_Mysql4_Comment extends Mage_Core_Model_Mysql4_Abstract
4
  {
5
  public function _construct()
6
  {
app/code/community/{Goigi → Chandan}/Comment/Model/Mysql4/Comment/Collection.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Model_Mysql4_Comment_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
  {
5
  public function _construct()
6
  {
1
  <?php
2
 
3
+ class Chandan_Comment_Model_Mysql4_Comment_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
  {
5
  public function _construct()
6
  {
app/code/community/{Goigi → Chandan}/Comment/Model/Observer.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Model_Observer extends Varien_Object
4
  {
5
  public function commentadd(Varien_Event_Observer $observer) {
6
  $order = $observer->getEvent()->getOrder();
1
  <?php
2
 
3
+ class Chandan_Comment_Model_Observer extends Varien_Object
4
  {
5
  public function commentadd(Varien_Event_Observer $observer) {
6
  $order = $observer->getEvent()->getOrder();
app/code/community/{Goigi → Chandan}/Comment/Model/Order/Default.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Goigi_Comment_Model_Order_Default extends Mage_Sales_Model_Order_Pdf_Items_Invoice_Default
3
  {
4
  public function draw()
5
  {
1
  <?php
2
+ class Chandan_Comment_Model_Order_Default extends Mage_Sales_Model_Order_Pdf_Items_Invoice_Default
3
  {
4
  public function draw()
5
  {
app/code/community/{Goigi → Chandan}/Comment/Model/Order/Invoice.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Goigi_Comment_Model_Order_Invoice extends Mage_Sales_Model_Order_Pdf_Invoice
3
  {
4
  public function getPdf($invoices = array())
5
  {
1
  <?php
2
+ class Chandan_Comment_Model_Order_Invoice extends Mage_Sales_Model_Order_Pdf_Invoice
3
  {
4
  public function getPdf($invoices = array())
5
  {
app/code/community/{Goigi → Chandan}/Comment/Model/Status.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Model_Status extends Varien_Object
4
  {
5
  const STATUS_ENABLED = 1;
6
  const STATUS_DISABLED = 2;
1
  <?php
2
 
3
+ class Chandan_Comment_Model_Status extends Varien_Object
4
  {
5
  const STATUS_ENABLED = 1;
6
  const STATUS_DISABLED = 2;
app/code/community/{Goigi → Chandan}/Comment/controllers/Adminhtml/CommentController.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Goigi_Comment_Adminhtml_CommentController extends Mage_Adminhtml_Controller_action
4
  {
5
 
6
  protected function _initAction() {
1
  <?php
2
 
3
+ class Chandan_Comment_Adminhtml_CommentController extends Mage_Adminhtml_Controller_action
4
  {
5
 
6
  protected function _initAction() {
app/code/community/{Goigi → Chandan}/Comment/controllers/IndexController.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Goigi_Comment_IndexController extends Mage_Core_Controller_Front_Action
3
  {
4
  public function indexAction()
5
  {
1
  <?php
2
+ class Chandan_Comment_IndexController extends Mage_Core_Controller_Front_Action
3
  {
4
  public function indexAction()
5
  {
app/code/community/{Goigi → Chandan}/Comment/etc/config.xml RENAMED
@@ -1,16 +1,16 @@
1
  <?xml version="1.0"?>
2
  <config>
3
  <modules>
4
- <Goigi_Comment>
5
  <version>1.0.0</version>
6
- </Goigi_Comment>
7
  </modules>
8
  <frontend>
9
  <routers>
10
  <comment>
11
  <use>standard</use>
12
  <args>
13
- <module>Goigi_Comment</module>
14
  <frontName>comment</frontName>
15
  </args>
16
  </comment>
@@ -28,7 +28,7 @@
28
  <comment>
29
  <use>admin</use>
30
  <args>
31
- <module>Goigi_Comment</module>
32
  <frontName>comment</frontName>
33
  </args>
34
  </comment>
@@ -41,7 +41,7 @@
41
  <sort_order>71</sort_order>
42
  <children>
43
  <items module="comment">
44
- <title>Manage Items</title>
45
  <sort_order>0</sort_order>
46
  <action>comment/adminhtml_comment</action>
47
  </items>
@@ -55,10 +55,33 @@
55
  </all>
56
  <admin>
57
  <children>
58
- <Goigi_Comment>
59
- <title>Comment Module</title>
60
- <sort_order>10</sort_order>
61
- </Goigi_Comment>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  </children>
63
  </admin>
64
  </resources>
@@ -74,11 +97,11 @@
74
  <global>
75
  <models>
76
  <comment>
77
- <class>Goigi_Comment_Model</class>
78
  <resourceModel>comment_mysql4</resourceModel>
79
  </comment>
80
  <comment_mysql4>
81
- <class>Goigi_Comment_Model_Mysql4</class>
82
  <entities>
83
  <comment>
84
  <table>comment</table>
@@ -88,8 +111,8 @@
88
 
89
  <sales>
90
  <rewrite>
91
- <order_pdf_invoice>Goigi_Comment_Model_Order_Invoice</order_pdf_invoice>
92
- <order_pdf_items_invoice_default>Goigi_Comment_Model_Order_Default</order_pdf_items_invoice_default>
93
  </rewrite>
94
  </sales>
95
  </models>
@@ -98,11 +121,11 @@
98
  <events>
99
  <checkout_type_onepage_save_order>
100
  <observers>
101
- <goigi_comment_model_observer>
102
  <type>singleton</type>
103
- <class>Goigi_Comment_Model_Observer</class>
104
  <method>commentadd</method>
105
- </goigi_comment_model_observer>
106
  </observers>
107
  </checkout_type_onepage_save_order>
108
  </events>
@@ -110,7 +133,7 @@
110
  <resources>
111
  <comment_setup>
112
  <setup>
113
- <module>Goigi_Comment</module>
114
  </setup>
115
  <connection>
116
  <use>core_setup</use>
@@ -129,12 +152,12 @@
129
  </resources>
130
  <blocks>
131
  <comment>
132
- <class>Goigi_Comment_Block</class>
133
  </comment>
134
  </blocks>
135
  <helpers>
136
  <comment>
137
- <class>Goigi_Comment_Helper</class>
138
  </comment>
139
  </helpers>
140
  </global>
1
  <?xml version="1.0"?>
2
  <config>
3
  <modules>
4
+ <Chandan_Comment>
5
  <version>1.0.0</version>
6
+ </Chandan_Comment>
7
  </modules>
8
  <frontend>
9
  <routers>
10
  <comment>
11
  <use>standard</use>
12
  <args>
13
+ <module>Chandan_Comment</module>
14
  <frontName>comment</frontName>
15
  </args>
16
  </comment>
28
  <comment>
29
  <use>admin</use>
30
  <args>
31
+ <module>Chandan_Comment</module>
32
  <frontName>comment</frontName>
33
  </args>
34
  </comment>
41
  <sort_order>71</sort_order>
42
  <children>
43
  <items module="comment">
44
+ <title>Manage Comments</title>
45
  <sort_order>0</sort_order>
46
  <action>comment/adminhtml_comment</action>
47
  </items>
55
  </all>
56
  <admin>
57
  <children>
58
+ <comment module="comment">
59
+ <title>Comment</title>
60
+ <sort_order>71</sort_order>
61
+ <children>
62
+ <items module="comment">
63
+ <title>Manage Comments</title>
64
+ <sort_order>0</sort_order>
65
+ <action>comment/adminhtml_comment</action>
66
+ </items>
67
+ </children>
68
+ </comment>
69
+
70
+
71
+ <system>
72
+ <children>
73
+ <config>
74
+ <children>
75
+ <chandancomment>
76
+ <title>Comment- All</title>
77
+ </chandancomment>
78
+ </children>
79
+ </config>
80
+ </children>
81
+ </system>
82
+
83
+
84
+
85
  </children>
86
  </admin>
87
  </resources>
97
  <global>
98
  <models>
99
  <comment>
100
+ <class>Chandan_Comment_Model</class>
101
  <resourceModel>comment_mysql4</resourceModel>
102
  </comment>
103
  <comment_mysql4>
104
+ <class>Chandan_Comment_Model_Mysql4</class>
105
  <entities>
106
  <comment>
107
  <table>comment</table>
111
 
112
  <sales>
113
  <rewrite>
114
+ <order_pdf_invoice>Chandan_Comment_Model_Order_Invoice</order_pdf_invoice>
115
+ <order_pdf_items_invoice_default>Chandan_Comment_Model_Order_Default</order_pdf_items_invoice_default>
116
  </rewrite>
117
  </sales>
118
  </models>
121
  <events>
122
  <checkout_type_onepage_save_order>
123
  <observers>
124
+ <chandan_comment_model_observer>
125
  <type>singleton</type>
126
+ <class>Chandan_Comment_Model_Observer</class>
127
  <method>commentadd</method>
128
+ </chandan_comment_model_observer>
129
  </observers>
130
  </checkout_type_onepage_save_order>
131
  </events>
133
  <resources>
134
  <comment_setup>
135
  <setup>
136
+ <module>Chandan_Comment</module>
137
  </setup>
138
  <connection>
139
  <use>core_setup</use>
152
  </resources>
153
  <blocks>
154
  <comment>
155
+ <class>Chandan_Comment_Block</class>
156
  </comment>
157
  </blocks>
158
  <helpers>
159
  <comment>
160
+ <class>Chandan_Comment_Helper</class>
161
  </comment>
162
  </helpers>
163
  </global>
app/code/community/Chandan/Comment/etc/system.xml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <tabs>
4
+ <chandancomment translate="label" module="comment">
5
+ <label>Comment Setting</label>
6
+ <sort_order>100</sort_order>
7
+ </chandancomment>
8
+ </tabs>
9
+ <sections>
10
+ <chandancomment translate="label" module="comment">
11
+ <label>Comment Options</label>
12
+ <tab>chandancomment</tab>
13
+ <sort_order>1</sort_order>
14
+ <show_in_default>1</show_in_default>
15
+ <show_in_website>1</show_in_website>
16
+ <show_in_store>1</show_in_store>
17
+ <groups>
18
+ <comment_group translate="label" module="comment">
19
+ <label>Comment Settings</label>
20
+ <frontend_type>text</frontend_type>
21
+ <sort_order>1</sort_order>
22
+ <show_in_default>1</show_in_default>
23
+ <show_in_website>1</show_in_website>
24
+ <show_in_store>1</show_in_store>
25
+ <fields>
26
+ <comment_status translate="label">
27
+ <label>Comment Status: </label>
28
+ <frontend_type>select</frontend_type>
29
+ <sort_order>1</sort_order>
30
+ <show_in_default>1</show_in_default>
31
+ <show_in_website>1</show_in_website>
32
+ <show_in_store>1</show_in_store>
33
+ <source_model>adminhtml/system_config_source_yesno</source_model>
34
+ </comment_status>
35
+ </fields>
36
+ </comment_group>
37
+ </groups>
38
+ </chandancomment>
39
+ </sections>
40
+ </config>
app/code/community/{Goigi → Chandan}/Comment/sql/comment_setup/mysql4-install-1.0.0.php RENAMED
File without changes
app/code/community/Goigi/Comment/Helper/Data.php DELETED
@@ -1,6 +0,0 @@
1
- <?php
2
-
3
- class Goigi_Comment_Helper_Data extends Mage_Core_Helper_Abstract
4
- {
5
-
6
- }
 
 
 
 
 
 
app/design/frontend/{rwd → base}/default/layout/comment.xml RENAMED
File without changes
app/design/frontend/{rwd → base}/default/template/comment/comment.phtml RENAMED
@@ -1,3 +1,4 @@
 
1
  <div class="tunki">
2
  <h4><?php echo $this->__('Order Comment') ?></h4>
3
  <textarea name="ordercomment" id="ordercomment"></textarea>
@@ -16,4 +17,5 @@
16
  });
17
  });
18
  });
19
- </script>
 
1
+ <?php if(Mage::getStoreConfig('chandancomment/comment_group/comment_status',Mage::app()->getStore())) { ?>
2
  <div class="tunki">
3
  <h4><?php echo $this->__('Order Comment') ?></h4>
4
  <textarea name="ordercomment" id="ordercomment"></textarea>
17
  });
18
  });
19
  });
20
+ </script>
21
+ <?php } ?>
app/etc/modules/{Goigi_Comment.xml → Chandan_Comment.xml} RENAMED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <config>
3
  <modules>
4
- <Goigi_Comment>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
- </Goigi_Comment>
8
  </modules>
9
  </config>
1
  <?xml version="1.0"?>
2
  <config>
3
  <modules>
4
+ <Chandan_Comment>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
+ </Chandan_Comment>
8
  </modules>
9
  </config>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Order_Comment_Checkout</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
- <license uri="https://opensource.org/licenses/osl-3.0.php">Open Software License</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>This extension lets customer to add their comments during placing order. </summary>
10
- <description>This extension lets customer to add their comments during placing order. Admin can also view comments added by customer and this is also added to invoice.</description>
11
- <notes>New Release.</notes>
12
  <authors><author><name>Chandan Kumar Singh</name><user>chandan8050</user><email>chandankumar8050@gmail.com</email></author></authors>
13
- <date>2016-11-04</date>
14
- <time>07:10:57</time>
15
- <contents><target name="magecommunity"><dir name="Goigi"><dir name="Comment"><dir name="Block"><dir name="Adminhtml"><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="7eb66c674be0efd56300c447442ccc9e"/><dir name="Tab"><file name="Form.php" hash="24a0515c6d9bd041be56a0b3d967ecfc"/></dir><file name="Tabs.php" hash="6936ee401b4a060cb773bc5ba8a98a34"/></dir><file name="Edit.php" hash="a7e67d15a718888321f93f215c6f72b3"/><file name="Grid.php" hash="46df21ecaa3cc39fdeacce859dcd97fe"/></dir><file name="Comment.php" hash="2ca3a096d12b6b5507906d9e59b4e654"/></dir><file name="Comment.php" hash="1813b443b45b2fcf8fd605f650ff7e5b"/><file name="Commentpage.php" hash="423b0071680a6ab0948e8f211dea3a56"/></dir><dir name="Helper"><file name="Data.php" hash="e30a32e54ef911b542b8b79b202b364d"/></dir><dir name="Model"><file name="Comment.php" hash="8b560f2e7217d6b403c57c0cbcca32d5"/><dir name="Mysql4"><dir name="Comment"><file name="Collection.php" hash="186d2b46795cb5221b60b75a68101f2b"/></dir><file name="Comment.php" hash="96f8aadfe96a78f290c9f20740c725e0"/></dir><file name="Observer.php" hash="20f8512d014d973c40b5137074ac4847"/><dir name="Order"><file name="Default.php" hash="59654ccbf93b3ea008524c76f6578b07"/><file name="Invoice.php" hash="18c34469a7f1530fb9a3f78a78509fd5"/></dir><file name="Status.php" hash="2440f2171fb6f02fd83bfdc32f41dff1"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CommentController.php" hash="ca15d62c9f61811c3a91a091e02f4cfc"/></dir><file name="IndexController.php" hash="4068257c39e2ae08b54a3c43ed56cf75"/></dir><dir name="etc"><file name="config.xml" hash="e91dea0a4d48e0d2bac3babdd41de036"/></dir><dir name="sql"><dir name="comment_setup"><file name="mysql4-install-1.0.0.php" hash="472b202b1a1befc9077f25f6d5471d1d"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="comment.xml" hash="c4bd2d5ef635163d3c6eb6d1922975f0"/></dir></dir></dir></dir><dir name="frontend"><dir name="rwd"><dir name="default"><dir name="layout"><file name="comment.xml" hash="e001f21d8c498a1fd8a09ae966796647"/></dir><dir name="template"><dir name="comment"><file name="comment.phtml" hash="3ad0e7957fa4623152a13afbbc31b5d4"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Goigi_Comment.xml" hash="918fa5e6b1e779898eaf7fecc128e5c1"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Order_Comment_Checkout</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
+ <license uri="https://opensource.org/licenses/osl-3.0.php">OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>This extension allows customers to add their comments while placing an order. Requires no manual configuration.</summary>
10
+ <description>This extension allows customers to add their comments while placing orders. The admin can view comments left by customer and this is also added to the invoice. Order Comments for Magento enables you to provide better service to your customers by letting them write an order-specific comment about the order at time of checkout. The admin can view order comments in the form of grid listing or in the order detail page as a customer order request. Implement a comment box for customer to input details about their order or shipment on checkout</description>
11
+ <notes>Second Release</notes>
12
  <authors><author><name>Chandan Kumar Singh</name><user>chandan8050</user><email>chandankumar8050@gmail.com</email></author></authors>
13
+ <date>2016-12-19</date>
14
+ <time>05:34:06</time>
15
+ <contents><target name="mageetc"><dir name="modules"><file name="Chandan_Comment.xml" hash="be24a312e7f826e1ec76c9237e13def7"/></dir></target><target name="magecommunity"><dir name="Chandan"><dir name="Comment"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="ab0afb8dc4bbad079c9436e07e85f037"/><dir name="Tab"><file name="Form.php" hash="b0fdce9bdfa2de014e6842ea8022e9b0"/></dir><file name="Tabs.php" hash="39c4033e2011d26d401624e54881fabf"/></dir><file name="Edit.php" hash="d10532220e205f2737a990deee05ffc9"/><file name="Grid.php" hash="878e4450edebf04683074d79071c8208"/></dir><file name="Comment.php" hash="b76c581f4f905a9bd6d59940ecc4bb7c"/></dir><file name="Comment.php" hash="9578753e0cefe528dddb2e8462c4706e"/><file name="Commentpage.php" hash="017873d9a74b2263e7c9676d3875e4cb"/></dir><dir name="Helper"><file name="Data.php" hash="42b14ff7e4612065b495a3ba0f2b000b"/></dir><dir name="Model"><file name="Comment.php" hash="bb3cb15bc8722da60e8d7231de6e46c8"/><dir name="Mysql4"><dir name="Comment"><file name="Collection.php" hash="06221951a850a05857dd5e93bb720e1a"/></dir><file name="Comment.php" hash="d8b78a16252ead6f88509f6a2ac1f39c"/></dir><file name="Observer.php" hash="69731d9aa5d91870a7da29652dc95a14"/><dir name="Order"><file name="Default.php" hash="4ae725f16df3a040138ce25da1d749d9"/><file name="Invoice.php" hash="58c1a57c7ff972df7565ae7a1548f2f8"/></dir><file name="Status.php" hash="f695106908c082c549df094fffcba503"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CommentController.php" hash="acbb83c7eea7af093989d6d99f70f599"/></dir><file name="IndexController.php" hash="ed4433047859c47f8b9f74a4ab07cad5"/></dir><dir name="etc"><file name="config.xml" hash="5f163e586d106a7b03fc3dab0ce4dd33"/><file name="system.xml" hash="f479a1ef76c4a7a68ff7dd84ba45d72c"/></dir><dir name="sql"><dir name="comment_setup"><file name="mysql4-install-1.0.0.php" hash="472b202b1a1befc9077f25f6d5471d1d"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="comment.xml" hash="c4bd2d5ef635163d3c6eb6d1922975f0"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="comment.xml" hash="e001f21d8c498a1fd8a09ae966796647"/></dir><dir name="template"><dir name="comment"><file name="comment.phtml" hash="7ccd71fda2d05929f8058481c05b08ed"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
18
  </package>