Magmodules_Feedbackcompany - Version 1.5.1

Version Notes

First stable release

Download this release

Release Info

Developer Magmodules
Extension Magmodules_Feedbackcompany
Version 1.5.1
Comparing to
See all releases


Code changes from version 1.5.0 to 1.5.1

app/code/community/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Form/Apicomment.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magmodules.eu - http://www.magmodules.eu
4
+ *
5
+ * NOTICE OF LICENSE
6
+ * This source file is subject to the Open Software License (OSL 3.0)
7
+ * that is bundled with this package in the file LICENSE.txt.
8
+ * It is also available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/osl-3.0.php
10
+ * If you did not receive a copy of the license and are unable to
11
+ * obtain it through the world-wide-web, please send an email
12
+ * to info@magmodules.eu so we can send you a copy immediately.
13
+ *
14
+ * @category Magmodules
15
+ * @package Magmodules_Feedbackcompany
16
+ * @author Magmodules <info@magmodules.eu>
17
+ * @copyright Copyright (c) 2017 (http://www.magmodules.eu)
18
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
19
+ */
20
+
21
+ class Magmodules_Feedbackcompany_Block_Adminhtml_Widget_Form_Apicomment extends Mage_Adminhtml_Block_Abstract
22
+ implements Varien_Data_Form_Element_Renderer_Interface
23
+ {
24
+
25
+ /**
26
+ * @param Varien_Data_Form_Element_Abstract $element
27
+ * @return string
28
+ */
29
+ public function render(Varien_Data_Form_Element_Abstract $element)
30
+ {
31
+ return sprintf(
32
+ '<tr id="row_%s"><td colspan="5" class="label">%s<br/></td></tr>',
33
+ $element->getHtmlId(),
34
+ $this->getNoteData()
35
+ );
36
+ }
37
+
38
+ /**
39
+ * @return string
40
+ */
41
+ public function getNoteData()
42
+ {
43
+ $url = $this->getUrl('*/feedbackreviews/process');
44
+ return $this->__('Please run the <a href="%s">full</a> update process after changing the API datails.', $url);
45
+ }
46
+
47
+ }
app/code/community/Magmodules/Feedbackcompany/Block/Sidebar.php CHANGED
@@ -27,58 +27,17 @@ class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template
27
  */
28
  public function getSidebarCollection($sidebar)
29
  {
30
- $enabled = '';
31
- $qty = '5';
32
- if (Mage::getStoreConfig('feedbackcompany/general/enabled')) {
33
- if ($sidebar == 'left') {
34
- $qty = Mage::getStoreConfig('feedbackcompany/sidebar/left_qty');
35
- $enabled = Mage::getStoreConfig('feedbackcompany/sidebar/left');
36
- }
37
-
38
- if ($sidebar == 'right') {
39
- $qty = Mage::getStoreConfig('feedbackcompany/sidebar/right_qty');
40
- $enabled = Mage::getStoreConfig('feedbackcompany/sidebar/right');
41
- }
42
- }
43
-
44
- if ($enabled) {
45
- $shopId = Mage::getStoreConfig('feedbackcompany/general/api_id');
46
- $collection = Mage::getModel("feedbackcompany/reviews")->getCollection();
47
- $collection->setOrder('date_created', 'DESC');
48
- $collection->addFieldToFilter('status', 1);
49
- $collection->addFieldToFilter('sidebar', 1);
50
- $collection->addFieldToFilter('shop_id', array('eq' => array($shopId)));
51
- $collection->setPageSize($qty);
52
- $collection->load();
53
-
54
- return $collection;
55
- } else {
56
- return false;
57
- }
58
  }
59
 
60
  /**
61
- * @param $sidebarreview
62
  * @param string $sidebar
63
  * @return mixed
64
  */
65
- public function formatContent($sidebarreview, $sidebar = 'left')
66
  {
67
- $content = $sidebarreview->getReviewText();
68
- $charLimit = '120';
69
-
70
- if ($sidebar == 'left') {
71
- $charLimit = Mage::getStoreConfig('feedbackcompany/sidebar/left_lenght');
72
- }
73
-
74
- if ($sidebar == 'right') {
75
- $charLimit = Mage::getStoreConfig('feedbackcompany/sidebar/right_lenght');
76
- }
77
-
78
- $content = Mage::helper('core/string')->truncate($content, $charLimit, ' ...');
79
-
80
- return $content;
81
-
82
  }
83
 
84
  /**
@@ -87,30 +46,11 @@ class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template
87
  */
88
  public function getReviewsUrl($sidebar = 'left')
89
  {
90
- $url = '';
91
- $link = '';
92
-
93
- if ($sidebar == 'left') {
94
- $link = Mage::getStoreConfig('feedbackcompany/sidebar/left_link');
95
- }
96
-
97
- if ($sidebar == 'right') {
98
- $link = Mage::getStoreConfig('feedbackcompany/sidebar/right_link');
99
- }
100
-
101
- if ($link == 'internal') {
102
- $url = $this->getUrl('feedbackcompany');
103
- }
104
-
105
- if ($link == 'external') {
106
- $url = Mage::getStoreConfig('feedbackcompany/general/url');
107
- }
108
-
109
- if ($url) {
110
  return '<a href="' . $url . '" target="_blank">' . $this->__('View all reviews') . '</a>';
111
- } else {
112
- return false;
113
  }
 
 
114
  }
115
 
116
  /**
@@ -119,21 +59,7 @@ class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template
119
  */
120
  public function getSnippetsEnabled($sidebar = 'left')
121
  {
122
- $enabled = '';
123
-
124
- if ($sidebar == 'left') {
125
- $enabled = Mage::getStoreConfig('feedbackcompany/sidebar/left_snippets');
126
- }
127
-
128
- if ($sidebar == 'right') {
129
- $enabled = Mage::getStoreConfig('feedbackcompany/sidebar/right_snippets');
130
- }
131
-
132
- if ($enabled && ($this->getRequest()->getRouteName() != 'feedbackcompany')) {
133
- return true;
134
- }
135
-
136
- return false;
137
  }
138
 
139
  /**
@@ -144,14 +70,23 @@ class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template
144
  return $this->helper('feedbackcompany')->getTotalScore();
145
  }
146
 
 
 
 
 
 
147
  public function getVotesHtml($votes)
148
  {
149
  return $this->__('Based on %s reviews', '<span itemprop="ratingCount">' .$votes . '</span>');
150
  }
151
 
 
 
 
152
  public function getLogoHtml()
153
  {
154
  $img = $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png');
155
  return '<img src="' . $img .'" class="feedbackcompany-logo">';
156
  }
 
157
  }
27
  */
28
  public function getSidebarCollection($sidebar)
29
  {
30
+ return Mage::helper('feedbackcompany')->getSidebarCollection($sidebar);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  }
32
 
33
  /**
34
+ * @param $review
35
  * @param string $sidebar
36
  * @return mixed
37
  */
38
+ public function formatContent($review, $sidebar = 'left')
39
  {
40
+ return Mage::helper('feedbackcompany')->formatContent($review, $sidebar);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
 
43
  /**
46
  */
47
  public function getReviewsUrl($sidebar = 'left')
48
  {
49
+ if($url = Mage::helper('feedbackcompany')->getReviewsUrl($sidebar)) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  return '<a href="' . $url . '" target="_blank">' . $this->__('View all reviews') . '</a>';
 
 
51
  }
52
+
53
+ return false;
54
  }
55
 
56
  /**
59
  */
60
  public function getSnippetsEnabled($sidebar = 'left')
61
  {
62
+ return Mage::helper('feedbackcompany')->getSnippetsEnabled($sidebar);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  }
64
 
65
  /**
70
  return $this->helper('feedbackcompany')->getTotalScore();
71
  }
72
 
73
+ /**
74
+ * @param $votes
75
+ *
76
+ * @return string
77
+ */
78
  public function getVotesHtml($votes)
79
  {
80
  return $this->__('Based on %s reviews', '<span itemprop="ratingCount">' .$votes . '</span>');
81
  }
82
 
83
+ /**
84
+ * @return string
85
+ */
86
  public function getLogoHtml()
87
  {
88
  $img = $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png');
89
  return '<img src="' . $img .'" class="feedbackcompany-logo">';
90
  }
91
+
92
  }
app/code/community/Magmodules/Feedbackcompany/Helper/Data.php CHANGED
@@ -232,14 +232,14 @@ class Magmodules_Feedbackcompany_Helper_Data extends Mage_Core_Helper_Abstract
232
  }
233
 
234
  /**
235
- * @param $sidebarreview
236
  * @param string $sidebar
237
  *
238
  * @return string
239
  */
240
- public function formatContent($sidebarreview, $sidebar = 'left')
241
  {
242
- $content = $sidebarreview->getReviewText();
243
  $charLimit = '';
244
  if ($sidebar == 'left') {
245
  $charLimit = Mage::getStoreConfig('feedbackcompany/sidebar/left_lenght');
232
  }
233
 
234
  /**
235
+ * @param $review
236
  * @param string $sidebar
237
  *
238
  * @return string
239
  */
240
+ public function formatContent($review, $sidebar = 'left')
241
  {
242
+ $content = $review->getReviewText();
243
  $charLimit = '';
244
  if ($sidebar == 'left') {
245
  $charLimit = Mage::getStoreConfig('feedbackcompany/sidebar/left_lenght');
app/code/community/Magmodules/Feedbackcompany/Model/Productreviews.php CHANGED
@@ -75,6 +75,7 @@ class Magmodules_Feedbackcompany_Model_Productreviews extends Magmodules_Feedbac
75
 
76
  $createdAt = $this->reformatDate($review['date_created']);
77
  $nickName = $review['client']['name'];
 
78
  $id = $review['id'];
79
 
80
  $review = Mage::getModel('review/review');
@@ -96,7 +97,7 @@ class Magmodules_Feedbackcompany_Model_Productreviews extends Magmodules_Feedbac
96
  $rating->setRatingId($ratingId);
97
  $rating->setReviewId($review->getId());
98
  $rating->setCustomerId(null);
99
- $rating->addOptionVote($options[$id], $productId);
100
  $review->aggregate();
101
  }
102
  } catch (Exception $e) {
75
 
76
  $createdAt = $this->reformatDate($review['date_created']);
77
  $nickName = $review['client']['name'];
78
+ $ratingVal = $review['rating'];
79
  $id = $review['id'];
80
 
81
  $review = Mage::getModel('review/review');
97
  $rating->setRatingId($ratingId);
98
  $rating->setReviewId($review->getId());
99
  $rating->setCustomerId(null);
100
+ $rating->addOptionVote($options[$ratingVal], $productId);
101
  $review->aggregate();
102
  }
103
  } catch (Exception $e) {
app/code/community/Magmodules/Feedbackcompany/Model/Reviews.php CHANGED
@@ -208,19 +208,4 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Magmodules_Feedbackcompan
208
  return $datetime->format('Y-m-d H:i:s');
209
  }
210
 
211
- /**
212
- * Flush Cache function
213
- */
214
- public function flushCache()
215
- {
216
- if (Mage::getStoreConfig(self::XML_FLUSH_CACHE)) {
217
- Mage::app()->cleanCache(
218
- array(
219
- Mage_Cms_Model_Block::CACHE_TAG,
220
- Magmodules_Feedbackcompany_Model_Reviews::CACHE_TAG
221
- )
222
- );
223
- }
224
- }
225
-
226
  }
208
  return $datetime->format('Y-m-d H:i:s');
209
  }
210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  }
app/code/community/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbackreviewsController.php CHANGED
@@ -148,7 +148,6 @@ class Magmodules_Feedbackcompany_Adminhtml_FeedbackreviewsController extends Mag
148
  }
149
  }
150
 
151
- Mage::getModel('feedbackcompany/reviews')->flushCache();
152
  $this->_redirect('*/*/index');
153
  }
154
 
@@ -175,7 +174,6 @@ class Magmodules_Feedbackcompany_Adminhtml_FeedbackreviewsController extends Mag
175
  }
176
  }
177
 
178
- Mage::getModel('feedbackcompany/reviews')->flushCache();
179
  $this->_redirect('*/*/index');
180
  }
181
 
@@ -202,7 +200,6 @@ class Magmodules_Feedbackcompany_Adminhtml_FeedbackreviewsController extends Mag
202
  }
203
  }
204
 
205
- Mage::getModel('feedbackcompany/reviews')->flushCache();
206
  $this->_redirect('*/*/index');
207
  }
208
 
@@ -228,7 +225,6 @@ class Magmodules_Feedbackcompany_Adminhtml_FeedbackreviewsController extends Mag
228
  }
229
  }
230
 
231
- Mage::getModel('feedbackcompany/reviews')->flushCache();
232
  $this->_redirect('*/*/index');
233
  }
234
 
@@ -247,7 +243,6 @@ class Magmodules_Feedbackcompany_Adminhtml_FeedbackreviewsController extends Mag
247
  $msg = $this->__('Succefully deleted all %s saved review(s).', $i);
248
 
249
  Mage::getSingleton('adminhtml/session')->addSuccess($msg);
250
- Mage::getModel('feedbackcompany/reviews')->flushCache();
251
  $this->_redirect('*/*/index');
252
  }
253
 
148
  }
149
  }
150
 
 
151
  $this->_redirect('*/*/index');
152
  }
153
 
174
  }
175
  }
176
 
 
177
  $this->_redirect('*/*/index');
178
  }
179
 
200
  }
201
  }
202
 
 
203
  $this->_redirect('*/*/index');
204
  }
205
 
225
  }
226
  }
227
 
 
228
  $this->_redirect('*/*/index');
229
  }
230
 
243
  $msg = $this->__('Succefully deleted all %s saved review(s).', $i);
244
 
245
  Mage::getSingleton('adminhtml/session')->addSuccess($msg);
 
246
  $this->_redirect('*/*/index');
247
  }
248
 
app/code/community/Magmodules/Feedbackcompany/etc/config.xml CHANGED
@@ -20,7 +20,7 @@
20
  <config>
21
  <modules>
22
  <Magmodules_Feedbackcompany>
23
- <version>1.5.0</version>
24
  </Magmodules_Feedbackcompany>
25
  </modules>
26
  <global>
20
  <config>
21
  <modules>
22
  <Magmodules_Feedbackcompany>
23
+ <version>1.5.1</version>
24
  </Magmodules_Feedbackcompany>
25
  </modules>
26
  <global>
app/code/community/Magmodules/Feedbackcompany/etc/system.xml CHANGED
@@ -49,8 +49,7 @@
49
  <show_in_website>1</show_in_website>
50
  <show_in_store>1</show_in_store>
51
  <expanded>1</expanded>
52
- <comment>
53
- <![CDATA[You can find the necessary information in your The Feedback Company dashboard.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>]]></comment>
54
  <fields>
55
  <version translate="label">
56
  <label>Extension Version</label>
@@ -78,10 +77,18 @@
78
  <show_in_website>0</show_in_website>
79
  <show_in_store>1</show_in_store>
80
  </heading_api>
 
 
 
 
 
 
 
 
81
  <client_id translate="label">
82
  <label>Oauth2 Client ID</label>
83
  <frontend_type>text</frontend_type>
84
- <sort_order>4</sort_order>
85
  <show_in_default>1</show_in_default>
86
  <show_in_website>1</show_in_website>
87
  <show_in_store>1</show_in_store>
@@ -89,11 +96,12 @@
89
  <client_secret translate="label">
90
  <label>Oauth2 Client Secret</label>
91
  <frontend_type>text</frontend_type>
92
- <sort_order>5</sort_order>
93
  <show_in_default>1</show_in_default>
94
  <show_in_website>1</show_in_website>
95
  <show_in_store>1</show_in_store>
96
  </client_secret>
 
97
  </fields>
98
  </general>
99
  <reviews translate="label" module="feedbackcompany">
@@ -170,18 +178,6 @@
170
  </depends>
171
  <tooltip>Select the schedule for automatic updating</tooltip>
172
  </cron_all>
173
- <flushcache translate="label">
174
- <label>Flush Block Cache after import</label>
175
- <frontend_type>select</frontend_type>
176
- <source_model>adminhtml/system_config_source_yesno</source_model>
177
- <sort_order>5</sort_order>
178
- <show_in_default>1</show_in_default>
179
- <show_in_website>0</show_in_website>
180
- <show_in_store>0</show_in_store>
181
- <tooltip>If set to yes, the cms block cache will be flushed after the import of Reviews,
182
- Review History and after editing a review from the admin
183
- </tooltip>
184
- </flushcache>
185
  <lastrun translate="label">
186
  <label>Last Update</label>
187
  <frontend_type>text</frontend_type>
@@ -209,8 +205,7 @@
209
  <show_in_website>1</show_in_website>
210
  <show_in_store>1</show_in_store>
211
  <expanded>1</expanded>
212
- <comment>
213
- <![CDATA[Show the latest reviews directly in the right or left area of your store to gain trust and directly show your client reviews.<br/><br/>]]></comment>
214
  <fields>
215
  <left_heading translate="label">
216
  <label>Left Sidebar</label>
@@ -362,8 +357,7 @@
362
  <show_in_store>1</show_in_store>
363
  </sidebar_heading>
364
  <sidebar_note translate="label">
365
- <label>
366
- <![CDATA[You can add this custom block by pasting the following code into your CMS page or Static Block.<br/>{{block type="feedbackcompany/custom" name="feedbackcompany" blocktype="sidebar"}}]]></label>
367
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
368
  <sort_order>11</sort_order>
369
  <show_in_default>1</show_in_default>
@@ -436,8 +430,7 @@
436
  <show_in_store>1</show_in_store>
437
  </small_heading>
438
  <small_note translate="label">
439
- <label>
440
- <![CDATA[You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type="feedbackcompany/custom" name="feedbackcompany" blocktype="small"}}]]></label>
441
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
442
  <sort_order>21</sort_order>
443
  <show_in_default>1</show_in_default>
@@ -498,8 +491,7 @@
498
  <show_in_store>1</show_in_store>
499
  </medium_heading>
500
  <medium_note translate="label">
501
- <label>
502
- <![CDATA[You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type="feedbackcompany/custom" name="feedbackcompany" blocktype="medium"}}]]></label>
503
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
504
  <sort_order>41</sort_order>
505
  <show_in_default>1</show_in_default>
@@ -584,8 +576,7 @@
584
  <show_in_store>1</show_in_store>
585
  </header_heading>
586
  <header_note translate="label">
587
- <label>
588
- <![CDATA[The documentation to implement The Feedback Company header widget can be found <a href="http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/">here</a>.]]></label>
589
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
590
  <sort_order>51</sort_order>
591
  <show_in_default>1</show_in_default>
@@ -635,8 +626,7 @@
635
  <show_in_website>1</show_in_website>
636
  <show_in_store>1</show_in_store>
637
  <expanded>1</expanded>
638
- <comment>
639
- <![CDATA[You can import your customer reviews and display them in your store as new content.<br>Link: http://www.mywebshop.com/<strong>feedbackcompany</strong><br><br>]]></comment>
640
  <fields>
641
  <enabled translate="label">
642
  <label>Enabled</label>
@@ -875,8 +865,7 @@
875
  <depends>
876
  <exclude_category>1</exclude_category>
877
  </depends>
878
- <comment>
879
- <![CDATA[The invitation e-mail will not be sent whenever there is ordered a product from one of the selected categories.]]></comment>
880
  </exclude_categories>
881
  </fields>
882
  </invitation>
@@ -902,8 +891,7 @@
902
  <expanded>1</expanded>
903
  <fields>
904
  <products_note translate="label">
905
- <label>
906
- <![CDATA[This option is still in beta, contact The Feedback Company for more information.<br/>]]></label>
907
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
908
  <sort_order>1</sort_order>
909
  <show_in_default>1</show_in_default>
@@ -1020,8 +1008,7 @@
1020
  <show_in_website>0</show_in_website>
1021
  <show_in_store>0</show_in_store>
1022
  <expanded>1</expanded>
1023
- <comment>
1024
- <![CDATA[Logs can be activated in order to detect errors.<br/> This feature is particularly for developers.<br/><br/>]]></comment>
1025
  <fields>
1026
  <enabled translate="label">
1027
  <label>Enable Log Function</label>
49
  <show_in_website>1</show_in_website>
50
  <show_in_store>1</show_in_store>
51
  <expanded>1</expanded>
52
+ <comment><![CDATA[The Feedback Company will sent you the Oauth2 details which can be filled in below.<br>If you haven't received the Oauth2 details you can request them manually by sending an e-mail to<a href="mailto:support@feedbackcompany.com">support@feedbackcompany.com</a>.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>]]></comment>
 
53
  <fields>
54
  <version translate="label">
55
  <label>Extension Version</label>
77
  <show_in_website>0</show_in_website>
78
  <show_in_store>1</show_in_store>
79
  </heading_api>
80
+ <comment_api translate="label">
81
+ <label>API</label>
82
+ <frontend_model>feedbackcompany/adminhtml_widget_form_apicomment</frontend_model>
83
+ <sort_order>4</sort_order>
84
+ <show_in_default>1</show_in_default>
85
+ <show_in_website>0</show_in_website>
86
+ <show_in_store>1</show_in_store>
87
+ </comment_api>
88
  <client_id translate="label">
89
  <label>Oauth2 Client ID</label>
90
  <frontend_type>text</frontend_type>
91
+ <sort_order>5</sort_order>
92
  <show_in_default>1</show_in_default>
93
  <show_in_website>1</show_in_website>
94
  <show_in_store>1</show_in_store>
96
  <client_secret translate="label">
97
  <label>Oauth2 Client Secret</label>
98
  <frontend_type>text</frontend_type>
99
+ <sort_order>6</sort_order>
100
  <show_in_default>1</show_in_default>
101
  <show_in_website>1</show_in_website>
102
  <show_in_store>1</show_in_store>
103
  </client_secret>
104
+
105
  </fields>
106
  </general>
107
  <reviews translate="label" module="feedbackcompany">
178
  </depends>
179
  <tooltip>Select the schedule for automatic updating</tooltip>
180
  </cron_all>
 
 
 
 
 
 
 
 
 
 
 
 
181
  <lastrun translate="label">
182
  <label>Last Update</label>
183
  <frontend_type>text</frontend_type>
205
  <show_in_website>1</show_in_website>
206
  <show_in_store>1</show_in_store>
207
  <expanded>1</expanded>
208
+ <comment><![CDATA[Show the latest reviews directly in the right or left area of your store to gain trust and directly show your client reviews.<br/><br/>]]></comment>
 
209
  <fields>
210
  <left_heading translate="label">
211
  <label>Left Sidebar</label>
357
  <show_in_store>1</show_in_store>
358
  </sidebar_heading>
359
  <sidebar_note translate="label">
360
+ <label><![CDATA[You can add this custom block by pasting the following code into your CMS page or Static Block.<br/>{{block type="feedbackcompany/custom" name="feedbackcompany" blocktype="sidebar"}}]]></label>
 
361
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
362
  <sort_order>11</sort_order>
363
  <show_in_default>1</show_in_default>
430
  <show_in_store>1</show_in_store>
431
  </small_heading>
432
  <small_note translate="label">
433
+ <label><![CDATA[You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type="feedbackcompany/custom" name="feedbackcompany" blocktype="small"}}]]></label>
 
434
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
435
  <sort_order>21</sort_order>
436
  <show_in_default>1</show_in_default>
491
  <show_in_store>1</show_in_store>
492
  </medium_heading>
493
  <medium_note translate="label">
494
+ <label><![CDATA[You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type="feedbackcompany/custom" name="feedbackcompany" blocktype="medium"}}]]></label>
 
495
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
496
  <sort_order>41</sort_order>
497
  <show_in_default>1</show_in_default>
576
  <show_in_store>1</show_in_store>
577
  </header_heading>
578
  <header_note translate="label">
579
+ <label><![CDATA[The documentation to implement The Feedback Company header widget can be found <a href="http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/">here</a>.]]></label>
 
580
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
581
  <sort_order>51</sort_order>
582
  <show_in_default>1</show_in_default>
626
  <show_in_website>1</show_in_website>
627
  <show_in_store>1</show_in_store>
628
  <expanded>1</expanded>
629
+ <comment><![CDATA[You can import your customer reviews and display them in your store as new content.<br>Link: http://www.mywebshop.com/<strong>feedbackcompany</strong><br><br>]]></comment>
 
630
  <fields>
631
  <enabled translate="label">
632
  <label>Enabled</label>
865
  <depends>
866
  <exclude_category>1</exclude_category>
867
  </depends>
868
+ <comment><![CDATA[The invitation e-mail will not be sent whenever there is ordered a product from one of the selected categories.]]></comment>
 
869
  </exclude_categories>
870
  </fields>
871
  </invitation>
891
  <expanded>1</expanded>
892
  <fields>
893
  <products_note translate="label">
894
+ <label><![CDATA[This option is still in beta, contact The Feedback Company for more information.<br/>]]></label>
 
895
  <frontend_model>feedbackcompany/adminhtml_widget_form_note</frontend_model>
896
  <sort_order>1</sort_order>
897
  <show_in_default>1</show_in_default>
1008
  <show_in_website>0</show_in_website>
1009
  <show_in_store>0</show_in_store>
1010
  <expanded>1</expanded>
1011
+ <comment><![CDATA[Logs can be activated in order to detect errors.<br/> This feature is particularly for developers.<br/><br/>]]></comment>
 
1012
  <fields>
1013
  <enabled translate="label">
1014
  <label>Enable Log Function</label>
app/locale/en_US/Magmodules_Feedbackcompany.csv CHANGED
@@ -189,4 +189,6 @@
189
  "Anonymous","Anonymous"
190
  "The documentation to implement The Feedback Company header widget can be found <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">here</a>.","The documentation to implement The Feedback Company header widget can be found <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">here</a>."
191
  "Please select specific storeview in the grid before exporting the reviews.","Please select specific storeview in the grid before exporting the reviews."
192
- "Error, could not export the csv file.","Error, could not export the csv file."
 
 
189
  "Anonymous","Anonymous"
190
  "The documentation to implement The Feedback Company header widget can be found <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">here</a>.","The documentation to implement The Feedback Company header widget can be found <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">here</a>."
191
  "Please select specific storeview in the grid before exporting the reviews.","Please select specific storeview in the grid before exporting the reviews."
192
+ "Error, could not export the csv file.","Error, could not export the csv file."
193
+ "Please run the <a href=""%s"">full</a> update process after changing the API datails.","Please run the <a href=""%s"">full</a> update process after changing the API datails."
194
+ "The Feedback Company will sent you the Oauth2 details which can be filled in below.<br>If you haven't received the Oauth2 details you can request them manually by sending an e-mail to<a href=""mailto:support@feedbackcompany.com"">support@feedbackcompany.com</a>.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>","The Feedback Company will sent you the Oauth2 details which can be filled in below.<br>If you haven't received the Oauth2 details you can request them manually by sending an e-mail to<a href=""mailto:support@feedbackcompany.com"">support@feedbackcompany.com</a>.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>"
app/locale/nl_NL/Magmodules_Feedbackcompany.csv CHANGED
@@ -160,7 +160,7 @@
160
  "You can import your customer reviews and display them in your store as new content.<br>Link: http://www.mywebshop.com/<strong>feedbackcompany</strong><br><br>","Door beoordelingen te importeren is het mogelijk om deze weer te geven binnen de webwinkel.<br>Link: http://www.winkeldomeinnaam.nl/<strong>feedbackcompany</strong><br><br>"
161
  "You can find the necessary information in your The Feedback Company dashboard.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>","U kunt de benodigde informatie vinden in uw The Feedback Company account.<br/>Naast het activeren van deze extensie wordt u aangeraden het The Feedback Company logo op uw webwinkel te tonen.<br/><br/>"
162
  "You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""small""}}","Het is mogelijk om dit blok te plaatsen in een pagina of statisch blok door de volgende code toe te voegen:<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""small""}}"
163
- "You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""sidebar""}}","Het is mogelijk om dit blok te plaatsen in een pagina of statisch blok door de volgende code toe te voegen:<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""sidebar""}}"
164
  "You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""medium""}}","Het is mogelijk om dit blok te plaatsen in een pagina of statisch blok door de volgende code toe te voegen:<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""medium""}}"
165
  "Yes","Ja"
166
  "and total score updated.","totaal score geüpdate."
@@ -172,6 +172,7 @@
172
  "Responsetime","Reactiesnelheid"
173
  "Order Process","Order Process"
174
  "Aftersales","After sales"
 
175
  "Information on the website","Informatie op de website"
176
  "Ease of ordering","Bestelgemak"
177
  "Delivery speed","Snelheid levering"
@@ -202,4 +203,6 @@
202
  "The documentation to implement The Feedback Company header widget can be found <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">here</a>.","Lees de omschrijving over hoe de The Feedback Company widget te implementeren <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">hier</a>."
203
  "Header Block","Header Blok"
204
  "Please select specific storeview in the grid before exporting the reviews.","Selecteer een specifieke storeview in de grid om de product beoordelingen te exporteren."
205
- "Error, could not export the csv file.","Fout, het CSV bestand kan niet worden gegenereerd."
 
 
160
  "You can import your customer reviews and display them in your store as new content.<br>Link: http://www.mywebshop.com/<strong>feedbackcompany</strong><br><br>","Door beoordelingen te importeren is het mogelijk om deze weer te geven binnen de webwinkel.<br>Link: http://www.winkeldomeinnaam.nl/<strong>feedbackcompany</strong><br><br>"
161
  "You can find the necessary information in your The Feedback Company dashboard.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>","U kunt de benodigde informatie vinden in uw The Feedback Company account.<br/>Naast het activeren van deze extensie wordt u aangeraden het The Feedback Company logo op uw webwinkel te tonen.<br/><br/>"
162
  "You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""small""}}","Het is mogelijk om dit blok te plaatsen in een pagina of statisch blok door de volgende code toe te voegen:<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""small""}}"
163
+ "You can add this custom block by pasting the following code into your CMS page or Static Block.<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""sidebar""}}","Het is mogelijk om dit blok te plaatsen in een pagina of statisch blok door de volgende code toe te voegen:<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""sidebar""}}"
164
  "You can add this custom block by pasting the following code in your CMS page or Static Block.<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""medium""}}","Het is mogelijk om dit blok te plaatsen in een pagina of statisch blok door de volgende code toe te voegen:<br/>{{block type=""feedbackcompany/custom"" name=""feedbackcompany"" blocktype=""medium""}}"
165
  "Yes","Ja"
166
  "and total score updated.","totaal score geüpdate."
172
  "Responsetime","Reactiesnelheid"
173
  "Order Process","Order Process"
174
  "Aftersales","After sales"
175
+ "Show stars","Toon sterren"
176
  "Information on the website","Informatie op de website"
177
  "Ease of ordering","Bestelgemak"
178
  "Delivery speed","Snelheid levering"
203
  "The documentation to implement The Feedback Company header widget can be found <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">here</a>.","Lees de omschrijving over hoe de The Feedback Company widget te implementeren <a href=""http://www.magmodules.eu/help/feedbackcompany/the-feedback-company-header-widget/"">hier</a>."
204
  "Header Block","Header Blok"
205
  "Please select specific storeview in the grid before exporting the reviews.","Selecteer een specifieke storeview in de grid om de product beoordelingen te exporteren."
206
+ "Error, could not export the csv file.","Fout, het CSV bestand kan niet worden gegenereerd."
207
+ "The Feedback Company will sent you the Oauth2 details which can be filled in below.<br>If you haven't received the Oauth2 details you can request them manually by sending an e-mail to<a href=""mailto:support@feedbackcompany.com"">support@feedbackcompany.com</a>.<br/> As addition next to the activation of this extension we also recommend you to place the appropriate The Feedback Company logo.<br/><br/>","The Feedback Company stuurt voorziet u van de Oauth2 gegevens welke onderstaand kunnen worden ingevoerd.<br>Indien u de Oauth2 gegevens niet heeft ontvangen dan kunt u deze zelf opvragen door een e-mail te sturen naar <a href=""mailto:support@feedbackcompany.com"">support@feedbackcompany.com</a>. <br/>Naast het activeren van deze extensie wordt u aangeraden het The Feedback Company logo op uw webwinkel te tonen.<br/><br/>"
208
+ "Please run the <a href=""%s"">full</a> update process after changing the API datails.","Voer het <a href=""%s"">volledige</a> update proces uit na het veranderen van de API gegevens."
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Feedbackcompany</name>
4
- <version>1.5.0</version>
5
  <stability>stable</stability>
6
  <license>OSL 3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Connect your Magento shop to The Feedback Company</description>
11
  <notes>First stable release</notes>
12
  <authors><author><name>Magmodules</name><user>magmodules</user><email>info@magmodules.nl</email></author></authors>
13
- <date>2017-04-18</date>
14
- <time>18:24:49</time>
15
- <contents><target name="magecommunity"><dir name="Magmodules"><dir name="Feedbackcompany"><dir name="Block"><dir name="Adminhtml"><dir name="Feedbacklog"><file name="Grid.php" hash="c52f8b4078104065afe0466fc6673ee7"/></dir><file name="Feedbacklog.php" hash="33d41b9b1d3fb50cfda578ae1d8341ce"/><dir name="Feedbackreviews"><file name="Grid.php" hash="b238f2622c144c5fddb70fa6462c6978"/></dir><file name="Feedbackreviews.php" hash="13aaf0170d53498c11eadc65aa91e6df"/><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="e31f4a0080968516ea021ab314851adc"/><file name="Productreviews.php" hash="b628b751d0a6a43252825a0f926d0ef4"/></dir><dir name="Field"><file name="Version.php" hash="740f7a5c64b3e17470f1a3df001fb8e0"/></dir><dir name="Form"><file name="Heading.php" hash="03a6513f1132603b3571e08a8d7859ee"/><file name="Note.php" hash="d68e01b1691361c36df486bd6bacaf56"/></dir><dir name="Grid"><file name="Experience.php" hash="cdd7d44a95ae745ab37d46f52c2e7d8c"/><file name="Log.php" hash="6fc53eff6f6c4aeabc7642c37d12c779"/><file name="Seconds.php" hash="f5a04ec6fa3e4a5c592765eb98cc6095"/><file name="Stars.php" hash="903a2e8577a23fccd3c660771eb3b2de"/></dir><dir name="Info"><file name="Info.php" hash="bcbd2e5aefbfc62b66cd022291fafd5d"/></dir></dir></dir><file name="Custom.php" hash="36718a3e1081a873778969db844e9097"/><file name="Header.php" hash="675929066739f737121475b630303d1a"/><file name="Reviews.php" hash="9a04ed5b778a5d6d919c18792c4e9af2"/><file name="Sidebar.php" hash="187ff40e378e4c27bce46e4da2b9d5b7"/></dir><dir name="Helper"><file name="Data.php" hash="ae96d97fd1ba115731375fd3af23bcd9"/></dir><dir name="Model"><file name="Api.php" hash="599da979763407af68d3a02178856122"/><file name="Export.php" hash="7395e1522469351b60fdc0c8e198e2ba"/><file name="Log.php" hash="28ba9d308e1deb39d8531c3ba0e72179"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="160b474f4f0f8a0694e1a58b48a08bb7"/></dir><file name="Log.php" hash="7f3274e718a40b86f0a65b2e43868236"/><dir name="Reviews"><file name="Collection.php" hash="3bc4fb661a490de6bcaabf47cb28b5ef"/></dir><file name="Reviews.php" hash="b6a8289c9166a108770ccd7a6ebaa1ca"/><dir name="Stats"><file name="Collection.php" hash="4b32264f25244bea8271035ba6fdcd11"/></dir><file name="Stats.php" hash="f39e3e5985176166f90d1efad8f6f9e1"/></dir><file name="Observer.php" hash="dd5bfc77a728e0c3573c063a37ade422"/><file name="Productreviews.php" hash="c47ca5b246bca9952afe89153fec0fb4"/><dir name="Resource"><file name="Review.php" hash="642185efdb13e3352569de8db5143dc3"/></dir><file name="Reviews.php" hash="99d1ee9c3eaf72f094d4be316edb0215"/><file name="Stats.php" hash="e2f8277856b5cd140e45d0d80c544f35"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="76a5bcbca7b7116cb41dc3e93b28cd8d"/><file name="Category.php" hash="2581c316eac00170e8e2f64b750cc90b"/><file name="Cronfrequency.php" hash="df64f62f3ad05ec7384726b520a06b99"/><file name="Cronfrequencylong.php" hash="377b7774a51e5ce764a362dedb05c42c"/><file name="Orderstatus.php" hash="2ea6375138086f45bee35ed77e9ba5f1"/><file name="Position.php" hash="a0d3b0ac4b983ed5d51860567df9dde9"/><file name="Reviewlink.php" hash="8e65991e47e15c1e5d0307b838c8f4ed"/><file name="Reviewrating.php" hash="9a1b339777ae59b2a6c18e91ff80fbd9"/><file name="Reviewstatus.php" hash="5c256fc8f818c5adae9935f6aaad4a01"/><file name="Sidebarlink.php" hash="d857edcecafb47cc50afe657e57becfc"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbacklogController.php" hash="d5fabbb3cd2dd226972442ef37277051"/><file name="FeedbackreviewsController.php" hash="3de544d2a5d0db51869a7440ec61b483"/></dir><file name="IndexController.php" hash="f8147b0e9c4c17d1a788794d3c1b92ab"/></dir><dir name="data"><dir name="feedbackcompany_setup"><file name="data-upgrade-1.4.1-1.4.2.php" hash="8f6a22826fad0ac549a6262b9345c5c9"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="491214b7edde15fb9aec6e14b4864284"/><file name="config.xml" hash="1defd3c509b0eff53a1df58072043957"/><file name="system.xml" hash="b0c6b53fe6d8a7910f48937804a84862"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="8b38f6cf0eab984143428a2f91244567"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="e82d4f1401aceb89f9f7915564b1366c"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="f01b88c2ce763220c9258e06159e6eeb"/><file name="mysql4-upgrade-1.3.0-1.3.1.php" hash="fc219a71e11dbedcf3539ce9bc02a983"/><file name="mysql4-upgrade-1.4.9-1.5.0.php" hash="782aba5fa8cbe615b66d31e345c037f4"/></dir></dir><file name=".DS_Store" hash="9378dd7fa55de90b8f93165c4b0f1319"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="09b9bc0853764353f794ad6c2a103473"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><file name="index.phtml" hash="e310eeb5bc3db89d1e9a4e1961652399"/><dir name="sidebar"><file name="left.phtml" hash="e469e9dc8f8712b7e30587d660264df5"/><file name="right.phtml" hash="1569639a2862ac91aee96d75ab6fbfc6"/></dir><dir name="widget"><file name="header.phtml" hash="de352dede5eea6f3fd4c73c5e2dd35c9"/><file name="medium.phtml" hash="e28a5036ecb7a628c9df711e31419883"/><file name="sidebar.phtml" hash="4e15d5cba5e32e144f280bd023eb787e"/><file name="small.phtml" hash="a0e649191fce61a37f785c0def04c44f"/></dir></dir></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="widget"><file name="header.phtml" hash="d8d41baef56624250ce596d84ee4d45b"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="756a3b389541d165da00719a018fda50"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Feedbackcompany.xml" hash="4d2ded61e090cc4abee4e42f4dbbe450"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Magmodules_Feedbackcompany.csv" hash="2d07c75d815c0838db646329853c7ca6"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="e2bb7a1b54da2f8151c8f7e2c3c6a675"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="magmodules"><dir name="feedbackcompany"><dir name="images"><file name="5-stars-empty.png" hash="799c499ca785331e7e69d892df52dd48"/><file name="5-stars-full.png" hash="1d06151a2c4da6bb71381538c8a903a5"/><file name="bkg_rating.gif" hash="83c843697e71cbe94ddd75bdedcbcf95"/><file name="bkg_rating2x.gif" hash="f71a52080752ca47b4c19810afd72e54"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="6aaa31c8d465a70e007cbf00c7e093dc"/><file name="small_fill.png" hash="2fa2ce516dddb74497ada0ae8be94380"/><file name="small_grey.png" hash="685735e666b7938f19ffe3b420152572"/><file name="sprites.png" hash="5f048cd5c6faf107782a5356678c2800"/><file name="sprites@2x.png" hash="8bbeceb34cb88a53f8e0222025368149"/><file name="star.png" hash="1a0bff565b441621cfa141ea1359e42d"/><file name="stars-colorful-big-empty.png" hash="0c39b599f3711387f3ab73c2c866db5e"/><file name="stars-colorful-big-empty@2x.png" hash="91968a209183fa94981aa1a4f4b881ac"/><file name="stars-colorful-big-filling.png" hash="4e44da064ac05c020a0390be58378c70"/><file name="stars-colorful-big-filling@2x.png" hash="d884648d75c3d39ede9d3b9d152fa377"/><file name="stars-colorful-medium-empty.png" hash="348115c8fcb76a0fdad35adf373c372d"/><file name="stars-colorful-medium-empty@2x.png" hash="80597abaaf487d85b37b38242fd280fd"/><file name="stars-colorful-medium-filling.png" hash="bdabd08dd42a28ffac96c0426cc31f75"/><file name="stars-colorful-medium-filling@2x.png" hash="95d3c2484dea0e65ef3764cca92d7546"/><file name="stars-colorful-small-empty.png" hash="0810018964beb0d0ff758346ea48f380"/><file name="stars-colorful-small-empty@2x.png" hash="95e3450bc9019b50497a07edd36da76a"/><file name="stars-colorful-small-filling.png" hash="7dea18dd80f75e5957ddfff107a5b14b"/><file name="stars-colorful-small-filling@2x.png" hash="c78b5d4766bdba9144333e8420e78e30"/><file name="stars-grayscale-small-empty.png" hash="0810018964beb0d0ff758346ea48f380"/><file name="stars-grayscale-small-empty@2x.png" hash="95e3450bc9019b50497a07edd36da76a"/><file name="stars-grayscale-small-filling.png" hash="5b36c38e55237b3b2932cb46a238ca66"/><file name="stars-grayscale-small-filling@2x.png" hash="a7fad2bb4a7ba031134e60f2b682ec6e"/></dir><file name="richsnippets.css" hash="3660775b91557d874d8f014e07a77d1b"/><file name="sidebar.css" hash="c9393a8e730b016b811a5edde49b354e"/><file name="style.css" hash="6efbfa1e9dd3280315faa26b9d60f379"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magmodules"><dir name="feedbackcompany"><file name="grid.css" hash="ff36b552e8096ab0453af7579ff55499"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>7.9.9</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Feedbackcompany</name>
4
+ <version>1.5.1</version>
5
  <stability>stable</stability>
6
  <license>OSL 3.0</license>
7
  <channel>community</channel>
10
  <description>Connect your Magento shop to The Feedback Company</description>
11
  <notes>First stable release</notes>
12
  <authors><author><name>Magmodules</name><user>magmodules</user><email>info@magmodules.nl</email></author></authors>
13
+ <date>2017-05-02</date>
14
+ <time>07:57:41</time>
15
+ <contents><target name="magecommunity"><dir name="Magmodules"><dir name="Feedbackcompany"><dir name="Block"><dir name="Adminhtml"><dir name="Feedbacklog"><file name="Grid.php" hash="c52f8b4078104065afe0466fc6673ee7"/></dir><file name="Feedbacklog.php" hash="33d41b9b1d3fb50cfda578ae1d8341ce"/><dir name="Feedbackreviews"><file name="Grid.php" hash="b238f2622c144c5fddb70fa6462c6978"/></dir><file name="Feedbackreviews.php" hash="13aaf0170d53498c11eadc65aa91e6df"/><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="e31f4a0080968516ea021ab314851adc"/><file name="Productreviews.php" hash="b628b751d0a6a43252825a0f926d0ef4"/></dir><dir name="Field"><file name="Version.php" hash="740f7a5c64b3e17470f1a3df001fb8e0"/></dir><dir name="Form"><file name="Apicomment.php" hash="36bf6d49e903237df98667a8a14efb5d"/><file name="Heading.php" hash="03a6513f1132603b3571e08a8d7859ee"/><file name="Note.php" hash="d68e01b1691361c36df486bd6bacaf56"/></dir><dir name="Grid"><file name="Experience.php" hash="cdd7d44a95ae745ab37d46f52c2e7d8c"/><file name="Log.php" hash="6fc53eff6f6c4aeabc7642c37d12c779"/><file name="Seconds.php" hash="f5a04ec6fa3e4a5c592765eb98cc6095"/><file name="Stars.php" hash="903a2e8577a23fccd3c660771eb3b2de"/></dir><dir name="Info"><file name="Info.php" hash="bcbd2e5aefbfc62b66cd022291fafd5d"/></dir></dir></dir><file name="Custom.php" hash="36718a3e1081a873778969db844e9097"/><file name="Header.php" hash="675929066739f737121475b630303d1a"/><file name="Reviews.php" hash="9a04ed5b778a5d6d919c18792c4e9af2"/><file name="Sidebar.php" hash="e4bf01419094ba1b9557a70c510c59e6"/></dir><dir name="Helper"><file name="Data.php" hash="03ca54ea4d3708ac8f074be6cb4d2c77"/></dir><dir name="Model"><file name="Api.php" hash="599da979763407af68d3a02178856122"/><file name="Export.php" hash="7395e1522469351b60fdc0c8e198e2ba"/><file name="Log.php" hash="28ba9d308e1deb39d8531c3ba0e72179"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="160b474f4f0f8a0694e1a58b48a08bb7"/></dir><file name="Log.php" hash="7f3274e718a40b86f0a65b2e43868236"/><dir name="Reviews"><file name="Collection.php" hash="3bc4fb661a490de6bcaabf47cb28b5ef"/></dir><file name="Reviews.php" hash="b6a8289c9166a108770ccd7a6ebaa1ca"/><dir name="Stats"><file name="Collection.php" hash="4b32264f25244bea8271035ba6fdcd11"/></dir><file name="Stats.php" hash="f39e3e5985176166f90d1efad8f6f9e1"/></dir><file name="Observer.php" hash="dd5bfc77a728e0c3573c063a37ade422"/><file name="Productreviews.php" hash="a6c80037cef98eaff430b473a2000589"/><dir name="Resource"><file name="Review.php" hash="642185efdb13e3352569de8db5143dc3"/></dir><file name="Reviews.php" hash="d64d44cf1510e9c545266bf43e992a92"/><file name="Stats.php" hash="e2f8277856b5cd140e45d0d80c544f35"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="76a5bcbca7b7116cb41dc3e93b28cd8d"/><file name="Category.php" hash="2581c316eac00170e8e2f64b750cc90b"/><file name="Cronfrequency.php" hash="df64f62f3ad05ec7384726b520a06b99"/><file name="Cronfrequencylong.php" hash="377b7774a51e5ce764a362dedb05c42c"/><file name="Orderstatus.php" hash="2ea6375138086f45bee35ed77e9ba5f1"/><file name="Position.php" hash="a0d3b0ac4b983ed5d51860567df9dde9"/><file name="Reviewlink.php" hash="8e65991e47e15c1e5d0307b838c8f4ed"/><file name="Reviewrating.php" hash="9a1b339777ae59b2a6c18e91ff80fbd9"/><file name="Reviewstatus.php" hash="5c256fc8f818c5adae9935f6aaad4a01"/><file name="Sidebarlink.php" hash="d857edcecafb47cc50afe657e57becfc"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbacklogController.php" hash="d5fabbb3cd2dd226972442ef37277051"/><file name="FeedbackreviewsController.php" hash="370be2230ae48167164d4663f4ea5903"/></dir><file name="IndexController.php" hash="f8147b0e9c4c17d1a788794d3c1b92ab"/></dir><dir name="data"><dir name="feedbackcompany_setup"><file name="data-upgrade-1.4.1-1.4.2.php" hash="8f6a22826fad0ac549a6262b9345c5c9"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="491214b7edde15fb9aec6e14b4864284"/><file name="config.xml" hash="9c86b824b29892ac38643658d26aee6d"/><file name="system.xml" hash="9b20a8742025b7ed2779b2b2c9366585"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="8b38f6cf0eab984143428a2f91244567"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="e82d4f1401aceb89f9f7915564b1366c"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="f01b88c2ce763220c9258e06159e6eeb"/><file name="mysql4-upgrade-1.3.0-1.3.1.php" hash="fc219a71e11dbedcf3539ce9bc02a983"/><file name="mysql4-upgrade-1.4.9-1.5.0.php" hash="782aba5fa8cbe615b66d31e345c037f4"/></dir></dir><file name=".DS_Store" hash="9378dd7fa55de90b8f93165c4b0f1319"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="09b9bc0853764353f794ad6c2a103473"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><file name="index.phtml" hash="e310eeb5bc3db89d1e9a4e1961652399"/><dir name="sidebar"><file name="left.phtml" hash="e469e9dc8f8712b7e30587d660264df5"/><file name="right.phtml" hash="1569639a2862ac91aee96d75ab6fbfc6"/></dir><dir name="widget"><file name="header.phtml" hash="de352dede5eea6f3fd4c73c5e2dd35c9"/><file name="medium.phtml" hash="e28a5036ecb7a628c9df711e31419883"/><file name="sidebar.phtml" hash="4e15d5cba5e32e144f280bd023eb787e"/><file name="small.phtml" hash="a0e649191fce61a37f785c0def04c44f"/></dir></dir></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="widget"><file name="header.phtml" hash="d8d41baef56624250ce596d84ee4d45b"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="756a3b389541d165da00719a018fda50"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Feedbackcompany.xml" hash="4d2ded61e090cc4abee4e42f4dbbe450"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Magmodules_Feedbackcompany.csv" hash="9272e3c03e1faeea8f3ff4e61e780f51"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="33176e1661f83c991e7b45cd5c1a3ab2"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="magmodules"><dir name="feedbackcompany"><dir name="images"><file name="5-stars-empty.png" hash="799c499ca785331e7e69d892df52dd48"/><file name="5-stars-full.png" hash="1d06151a2c4da6bb71381538c8a903a5"/><file name="bkg_rating.gif" hash="83c843697e71cbe94ddd75bdedcbcf95"/><file name="bkg_rating2x.gif" hash="f71a52080752ca47b4c19810afd72e54"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="6aaa31c8d465a70e007cbf00c7e093dc"/><file name="small_fill.png" hash="2fa2ce516dddb74497ada0ae8be94380"/><file name="small_grey.png" hash="685735e666b7938f19ffe3b420152572"/><file name="sprites.png" hash="5f048cd5c6faf107782a5356678c2800"/><file name="sprites@2x.png" hash="8bbeceb34cb88a53f8e0222025368149"/><file name="star.png" hash="1a0bff565b441621cfa141ea1359e42d"/><file name="stars-colorful-big-empty.png" hash="0c39b599f3711387f3ab73c2c866db5e"/><file name="stars-colorful-big-empty@2x.png" hash="91968a209183fa94981aa1a4f4b881ac"/><file name="stars-colorful-big-filling.png" hash="4e44da064ac05c020a0390be58378c70"/><file name="stars-colorful-big-filling@2x.png" hash="d884648d75c3d39ede9d3b9d152fa377"/><file name="stars-colorful-medium-empty.png" hash="348115c8fcb76a0fdad35adf373c372d"/><file name="stars-colorful-medium-empty@2x.png" hash="80597abaaf487d85b37b38242fd280fd"/><file name="stars-colorful-medium-filling.png" hash="bdabd08dd42a28ffac96c0426cc31f75"/><file name="stars-colorful-medium-filling@2x.png" hash="95d3c2484dea0e65ef3764cca92d7546"/><file name="stars-colorful-small-empty.png" hash="0810018964beb0d0ff758346ea48f380"/><file name="stars-colorful-small-empty@2x.png" hash="95e3450bc9019b50497a07edd36da76a"/><file name="stars-colorful-small-filling.png" hash="7dea18dd80f75e5957ddfff107a5b14b"/><file name="stars-colorful-small-filling@2x.png" hash="c78b5d4766bdba9144333e8420e78e30"/><file name="stars-grayscale-small-empty.png" hash="0810018964beb0d0ff758346ea48f380"/><file name="stars-grayscale-small-empty@2x.png" hash="95e3450bc9019b50497a07edd36da76a"/><file name="stars-grayscale-small-filling.png" hash="5b36c38e55237b3b2932cb46a238ca66"/><file name="stars-grayscale-small-filling@2x.png" hash="a7fad2bb4a7ba031134e60f2b682ec6e"/></dir><file name="richsnippets.css" hash="3660775b91557d874d8f014e07a77d1b"/><file name="sidebar.css" hash="c9393a8e730b016b811a5edde49b354e"/><file name="style.css" hash="6efbfa1e9dd3280315faa26b9d60f379"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magmodules"><dir name="feedbackcompany"><file name="grid.css" hash="ff36b552e8096ab0453af7579ff55499"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>7.9.9</max></php></required></dependencies>
18
  </package>