Magmodules_Feedbackcompany - Version 1.0.3

Version Notes

First stable release

Download this release

Release Info

Developer Magento Core Team
Extension Magmodules_Feedbackcompany
Version 1.0.3
Comparing to
See all releases


Code changes from version 1.0.2 to 1.0.3

Files changed (46) hide show
  1. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbacklog.php +2 -3
  2. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbacklog/Grid.php +4 -6
  3. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbackreviews.php +2 -3
  4. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbackreviews/Grid.php +1 -1
  5. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbackreviews/Renderer/Experience.php +2 -3
  6. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Buttons/Process.php +1 -1
  7. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Buttons/Test.php +1 -1
  8. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Form/Heading.php +1 -1
  9. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Grid/Log.php +1 -1
  10. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Grid/Seconds.php +1 -1
  11. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Grid/Stars.php +1 -1
  12. app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Info/Info.php +3 -3
  13. app/code/local/Magmodules/Feedbackcompany/Block/Custom.php +2 -3
  14. app/code/local/Magmodules/Feedbackcompany/Block/Reviews.php +1 -1
  15. app/code/local/Magmodules/Feedbackcompany/Block/Sidebar.php +1 -5
  16. app/code/local/Magmodules/Feedbackcompany/Block/Snippets.php +1 -1
  17. app/code/local/Magmodules/Feedbackcompany/Helper/Data.php +1 -1
  18. app/code/local/Magmodules/Feedbackcompany/Model/Api.php +38 -22
  19. app/code/local/Magmodules/Feedbackcompany/Model/Log.php +1 -1
  20. app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Log.php +1 -1
  21. app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Log/Collection.php +1 -1
  22. app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Reviews.php +1 -1
  23. app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Reviews/Collection.php +1 -1
  24. app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Stats.php +1 -1
  25. app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Stats/Collection.php +1 -1
  26. app/code/local/Magmodules/Feedbackcompany/Model/Observer.php +1 -1
  27. app/code/local/Magmodules/Feedbackcompany/Model/Reviews.php +1 -1
  28. app/code/local/Magmodules/Feedbackcompany/Model/Stats.php +2 -1
  29. app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Cronfrequency.php +5 -5
  30. app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Orderstatus.php +5 -5
  31. app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Position.php +5 -5
  32. app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Sidebarlink.php +5 -5
  33. app/code/local/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbacklogController.php +2 -3
  34. app/code/local/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbackreviewsController.php +2 -3
  35. app/code/local/Magmodules/Feedbackcompany/controllers/IndexController.php +2 -3
  36. app/code/local/Magmodules/Feedbackcompany/etc/adminhtml.xml +1 -1
  37. app/code/local/Magmodules/Feedbackcompany/etc/config.xml +3 -4
  38. app/code/local/Magmodules/Feedbackcompany/etc/system.xml +21 -9
  39. app/code/local/Magmodules/Feedbackcompany/sql/feedbackcompany_setup/mysql4-install-0.9.0.php +1 -1
  40. app/design/frontend/base/default/template/magmodules/feedbackcompany/index.phtml +4 -8
  41. app/design/frontend/base/default/template/magmodules/feedbackcompany/sidebar/right.phtml +1 -1
  42. app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml +2 -3
  43. app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/richsnippets.phtml +1 -1
  44. app/locale/en_US/Magmodules_Feedbackcompany.csv +10 -1
  45. app/locale/nl_NL/Magmodules_Feedbackcompany.csv +10 -1
  46. package.xml +4 -4
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbacklog.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbacklog/Grid.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
@@ -119,9 +118,8 @@ class Magmodules_Feedbackcompany_Block_Adminhtml_Feedbacklog_Grid extends Mage_A
119
  return $this;
120
  }
121
 
122
- public function getRowUrl($row)
123
- {
124
- return;
125
  }
126
 
127
  }
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
118
  return $this;
119
  }
120
 
121
+ public function getRowUrl($row) {
122
+
 
123
  }
124
 
125
  }
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbackreviews.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbackreviews/Grid.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbackreviews/Renderer/Experience.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Buttons/Process.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Buttons/Test.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Form/Heading.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Grid/Log.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Grid/Seconds.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Grid/Stars.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Info/Info.php CHANGED
@@ -15,14 +15,14 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Block_Adminhtml_Widget_Info_Info extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface {
23
 
24
  public function render(Varien_Data_Form_Element_Abstract $element) {
25
- $html = '<div style="background:url(\'http://www.magmodules.eu/_logo.png\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 200px;">
26
  <h4>About Magmodules.eu</h4>
27
  <p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
28
  <br />
@@ -48,7 +48,7 @@ class Magmodules_Feedbackcompany_Block_Adminhtml_Widget_Info_Info extends Mage_A
48
  </tr>
49
  </table>
50
  </div>';
51
- return $html;
52
  }
53
 
54
  }
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Block_Adminhtml_Widget_Info_Info extends Mage_Adminhtml_Block_Abstract implements Varien_Data_Form_Element_Renderer_Interface {
23
 
24
  public function render(Varien_Data_Form_Element_Abstract $element) {
25
+ $element = '<div style="background:url(\'http://www.magmodules.eu/_logo.png\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 200px;">
26
  <h4>About Magmodules.eu</h4>
27
  <p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
28
  <br />
48
  </tr>
49
  </table>
50
  </div>';
51
+ return $element;
52
  }
53
 
54
  }
app/code/local/Magmodules/Feedbackcompany/Block/Custom.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Reviews.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Block/Sidebar.php CHANGED
@@ -15,16 +15,12 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template {
23
 
24
- protected function _construct() {
25
- parent::_construct();
26
- }
27
-
28
  function getSidebarCollection($sidebar) {
29
 
30
  $enabled = '';
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template {
23
 
 
 
 
 
24
  function getSidebarCollection($sidebar) {
25
 
26
  $enabled = '';
app/code/local/Magmodules/Feedbackcompany/Block/Snippets.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Helper/Data.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Api.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
@@ -57,16 +57,22 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
57
  }
58
 
59
  public function sendInvitation($order) {
 
 
60
  $start_time = microtime(true);
61
  $crontype = 'orderupdate';
62
  $order_id = $order->getIncrementId();
63
- $api_id = Mage::getStoreConfig('feedbackcompany/general/api_id', $order->getStoreId());
64
- $api_key = Mage::getStoreConfig('feedbackcompany/invitation/connector', $order->getStoreId());
65
- $delay = Mage::getStoreConfig('feedbackcompany/invitation/delay', $order->getStoreId());
66
- $remind_delay = Mage::getStoreConfig('feedbackcompany/invitation/remind_delay', $order->getStoreId());
67
- $resend = Mage::getStoreConfig('feedbackcompany/invitation/resend', $order->getStoreId());
 
 
68
  $email = strtolower($order->getCustomerEmail());
69
  $order_number = $order->getIncrementID();
 
 
70
  $check_sum = 0;
71
  $products = array();
72
 
@@ -75,28 +81,38 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
75
  $products[] = urlencode($item->getName());
76
  }
77
  $products = implode(',', $products);
78
-
79
  // Get Checksum
80
  for($i = 0; $i < strlen($email); $i++) {
81
  $check_sum += ord($email[$i]);
82
  }
83
 
84
- $api_url = "https://connect.feedbackcompany.nl/feedback/?action=sendInvitation&connector=" . $api_key . "&user=" . $email . "&delay=" . $delay . "&remindDelay=" . $remind_delay . "&resendIfDouble=" . $resend . "&orderNumber=" . $order_number . "&Chksum=" . $check_sum . "&product=" . Mage::helper('core')->escapeHtml($products);
85
-
86
- // Connect to API
87
- $feedbackconnect = curl_init($api_url);
88
- curl_setopt($feedbackconnect, CURLOPT_VERBOSE, 1);
89
- curl_setopt($feedbackconnect, CURLOPT_FAILONERROR, false);
90
- curl_setopt($feedbackconnect, CURLOPT_HEADER, 0);
91
- curl_setopt($feedbackconnect, CURLOPT_FOLLOWLOCATION, 1);
92
- curl_setopt($feedbackconnect, CURLOPT_RETURNTRANSFER, 1);
93
- curl_setopt($feedbackconnect, CURLOPT_SSL_VERIFYPEER, false);
94
- $response = curl_exec($feedbackconnect);
95
- curl_close($feedbackconnect);
 
 
 
 
 
 
96
 
97
- // Write to log
98
- $writelog = Mage::getModel('feedbackcompany/log')->addToLog('invitation', $order->getStoreId(), '', $response, (microtime(true) - $start_time), $crontype, $api_url, $order->getId());
99
- return true;
 
 
 
 
100
  }
101
 
102
  public function getStoreIds() {
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
57
  }
58
 
59
  public function sendInvitation($order) {
60
+
61
+ $store_id = $order->getStoreId();
62
  $start_time = microtime(true);
63
  $crontype = 'orderupdate';
64
  $order_id = $order->getIncrementId();
65
+ $api_id = Mage::getStoreConfig('feedbackcompany/general/api_id', $store_id);
66
+ $api_key = Mage::getStoreConfig('feedbackcompany/invitation/connector', $store_id);
67
+ $delay = Mage::getStoreConfig('feedbackcompany/invitation/delay', $store_id);
68
+ $remind_delay = Mage::getStoreConfig('feedbackcompany/invitation/remind_delay', $store_id);
69
+ $resend = Mage::getStoreConfig('feedbackcompany/invitation/resend', $store_id);
70
+ $min_order = Mage::getStoreConfig('feedbackcompany/invitation/min_order_total', $store_id);
71
+ $inv_status = Mage::getStoreConfig('feedbackcompany/invitation/status', $store_id);
72
  $email = strtolower($order->getCustomerEmail());
73
  $order_number = $order->getIncrementID();
74
+ $order_total = $order->getGrandTotal();
75
+ $aanhef = urlencode($order->getCustomerName());
76
  $check_sum = 0;
77
  $products = array();
78
 
81
  $products[] = urlencode($item->getName());
82
  }
83
  $products = implode(',', $products);
84
+
85
  // Get Checksum
86
  for($i = 0; $i < strlen($email); $i++) {
87
  $check_sum += ord($email[$i]);
88
  }
89
 
90
+ if($order_total >= $min_order || $min_order == 0) {
91
+ if($order->getStatus() == $inv_status) {
92
+ $http = new Varien_Http_Adapter_Curl();
93
+ $http->setConfig(array('timeout' => 30, 'maxredirects' => 0));
94
+
95
+ $url = 'https://connect.feedbackcompany.nl/feedback/';
96
+ $request = "action=sendInvitation&connector=" . $api_key . "&user=" . $email . "&aanhef=" . $aanhef. "&delay=" . $delay . "&remindDelay=" . $remind_delay . "&resendIfDouble=" . $resend . "&orderNumber=" . $order_number . "&Chksum=" . $check_sum . "&product=" . Mage::helper('core')->escapeHtml($products);
97
+ $http->write(Zend_Http_Client::POST, $url, '1.1', array(), $request);
98
+ $result = $http->read();
99
+
100
+ if($result) {
101
+ $lines = explode("\n", $result);
102
+ $response_html = $lines[0];
103
+ $lines = array_reverse($lines);
104
+ $response_html .= ' - ' . $lines[0];
105
+ } else {
106
+ $response_html = 'No response from https://connect.feedbackcompany.nl';
107
+ }
108
 
109
+ // Write to log
110
+ $writelog = Mage::getModel('feedbackcompany/log')->addToLog('invitation', $order->getStoreId(), '', $response_html, (microtime(true) - $start_time), $crontype, $url . '?' . $request, $order->getId());
111
+ return true;
112
+ }
113
+ } else {
114
+ return false;
115
+ }
116
  }
117
 
118
  public function getStoreIds() {
app/code/local/Magmodules/Feedbackcompany/Model/Log.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Log.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Log/Collection.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Reviews.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Reviews/Collection.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Stats.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Mysql4/Stats/Collection.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Observer.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Reviews.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/Model/Stats.php CHANGED
@@ -15,9 +15,10 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
 
21
  class Magmodules_Feedbackcompany_Model_Stats extends Mage_Core_Model_Abstract {
22
 
23
  public function _construct() {
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
+
22
  class Magmodules_Feedbackcompany_Model_Stats extends Mage_Core_Model_Abstract {
23
 
24
  public function _construct() {
app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Cronfrequency.php CHANGED
@@ -12,11 +12,11 @@
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
- * @category Magmodules
16
- * @package Magmodules_Feedbackcompany
17
- * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Cronfrequency {
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
+ * @category Magmodules
16
+ * @package Magmodules_Feedbackcompany
17
+ * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Cronfrequency {
app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Orderstatus.php CHANGED
@@ -12,11 +12,11 @@
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
- * @category Magmodules
16
- * @package Magmodules_Feedbackcompany
17
- * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Orderstatus {
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
+ * @category Magmodules
16
+ * @package Magmodules_Feedbackcompany
17
+ * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Orderstatus {
app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Position.php CHANGED
@@ -12,11 +12,11 @@
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
- * @category Magmodules
16
- * @package Magmodules_Feedbackcompany
17
- * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Position {
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
+ * @category Magmodules
16
+ * @package Magmodules_Feedbackcompany
17
+ * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Position {
app/code/local/Magmodules/Feedbackcompany/Model/System/Config/Source/Sidebarlink.php CHANGED
@@ -12,11 +12,11 @@
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
- * @category Magmodules
16
- * @package Magmodules_Feedbackcompany
17
- * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Sidebarlink {
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@magmodules.eu so we can send you a copy immediately.
14
  *
15
+ * @category Magmodules
16
+ * @package Magmodules_Feedbackcompany
17
+ * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
  class Magmodules_Feedbackcompany_Model_System_Config_Source_Sidebarlink {
app/code/local/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbacklogController.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbackreviewsController.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/controllers/IndexController.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/code/local/Magmodules/Feedbackcompany/etc/adminhtml.xml CHANGED
@@ -17,7 +17,7 @@
17
  * @category Magmodules
18
  * @package Magmodules_Feedbackcompany
19
  * @author Magmodules <info@magmodules.eu)
20
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
21
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
22
  */
23
  -->
17
  * @category Magmodules
18
  * @package Magmodules_Feedbackcompany
19
  * @author Magmodules <info@magmodules.eu)
20
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
21
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
22
  */
23
  -->
app/code/local/Magmodules/Feedbackcompany/etc/config.xml CHANGED
@@ -1,8 +1,7 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Magmodules.eu
5
- * http://www.magmodules.eu
6
  *
7
  * NOTICE OF LICENSE
8
  *
@@ -17,14 +16,14 @@
17
  * @category Magmodules
18
  * @package Magmodules_Feedbackcompany
19
  * @author Magmodules <info@magmodules.eu)
20
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
21
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
22
  */
23
  -->
24
  <config>
25
  <modules>
26
  <Magmodules_Feedbackcompany>
27
- <version>1.0.2</version>
28
  </Magmodules_Feedbackcompany>
29
  </modules>
30
  <global>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Magmodules.eu - http://www.magmodules.eu
 
5
  *
6
  * NOTICE OF LICENSE
7
  *
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  -->
23
  <config>
24
  <modules>
25
  <Magmodules_Feedbackcompany>
26
+ <version>1.0.3</version>
27
  </Magmodules_Feedbackcompany>
28
  </modules>
29
  <global>
app/code/local/Magmodules/Feedbackcompany/etc/system.xml CHANGED
@@ -1,8 +1,7 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Magmodules.eu
5
- * http://www.magmodules.eu
6
  *
7
  * NOTICE OF LICENSE
8
  *
@@ -17,7 +16,7 @@
17
  * @category Magmodules
18
  * @package Magmodules_Feedbackcompany
19
  * @author Magmodules <info@magmodules.eu)
20
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
21
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
22
  */
23
  -->
@@ -53,7 +52,6 @@
53
  <show_in_website>1</show_in_website>
54
  <show_in_store>1</show_in_store>
55
  <expanded>1</expanded>
56
-
57
  <comment>
58
  <![CDATA[
59
  <script>
@@ -66,6 +64,7 @@
66
  </script>
67
  ]]>
68
  </comment>
 
69
  <fields>
70
  <enabled translate="label">
71
  <label>Enabled</label>
@@ -91,8 +90,7 @@
91
  <show_in_default>1</show_in_default>
92
  <show_in_website>0</show_in_website>
93
  <show_in_store>1</show_in_store>
94
- <tooltip>You can find this information in your The Feedback Company account</tooltip>
95
-
96
  </company>
97
  <api_id translate="label">
98
  <label>The Feedback Company ID</label>
@@ -112,6 +110,7 @@
112
  <show_in_website>1</show_in_website>
113
  <show_in_store>1</show_in_store>
114
  <expanded>1</expanded>
 
115
  <fields>
116
  <cron translate="label">
117
  <label>Use Cronjob</label>
@@ -132,8 +131,7 @@
132
  <show_in_website>1</show_in_website>
133
  <show_in_store>1</show_in_store>
134
  <depends><cron>1</cron></depends>
135
- <tooltip>Select the schedule for automatic updating</tooltip>
136
-
137
  </cron_stats>
138
  <cron_reviews translate="label">
139
  <label>Update Reviews</label>
@@ -184,6 +182,7 @@
184
  <show_in_website>1</show_in_website>
185
  <show_in_store>1</show_in_store>
186
  <expanded>1</expanded>
 
187
  <fields>
188
  <left_heading translate="label">
189
  <label>Left Sidebar</label>
@@ -311,6 +310,7 @@
311
  <show_in_website>1</show_in_website>
312
  <show_in_store>1</show_in_store>
313
  <expanded>1</expanded>
 
314
  <fields>
315
  <enabled translate="label">
316
  <label>Enabled</label>
@@ -394,6 +394,7 @@
394
  <show_in_website>1</show_in_website>
395
  <show_in_store>1</show_in_store>
396
  <expanded>1</expanded>
 
397
  <fields>
398
  <enabled translate="label">
399
  <label>Activate</label>
@@ -472,6 +473,16 @@
472
  <depends><enabled>1</enabled></depends>
473
  <comment>If yes, customers will get new review reminders for every new order.</comment>
474
  </resend>
 
 
 
 
 
 
 
 
 
 
475
  </fields>
476
  </invitation>
477
  <log translate="label">
@@ -482,6 +493,7 @@
482
  <show_in_website>0</show_in_website>
483
  <show_in_store>0</show_in_store>
484
  <expanded>1</expanded>
 
485
  <fields>
486
  <enabled translate="label">
487
  <label>Enable Log Function</label>
@@ -522,7 +534,7 @@
522
  <show_in_website>1</show_in_website>
523
  <show_in_store>1</show_in_store>
524
  <expanded>1</expanded>
525
- <comment><![CDATA[<p>The extension comes with two coded blocks.<br>With this blocks you can add your store rating in a Static block or CMS page.</p><p><br><strong>The Rich Snippets Block.<br></strong>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br>Paste the code below at the desired location using a Static Block or a CMS page.</p><p>Code: {{block type="feedbackcompany/snippets" name="feedbackcompanysnippets"}}</p><p><br><strong>Custom Block.</strong><br>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p><p>Code: {{block type="feedbackcompany/custom" name="feedbackcompany"}}</p>]]></comment>
526
  </snippets>
527
  </groups>
528
  </feedbackcompany>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Magmodules.eu - http://www.magmodules.eu
 
5
  *
6
  * NOTICE OF LICENSE
7
  *
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  -->
52
  <show_in_website>1</show_in_website>
53
  <show_in_store>1</show_in_store>
54
  <expanded>1</expanded>
 
55
  <comment>
56
  <![CDATA[
57
  <script>
64
  </script>
65
  ]]>
66
  </comment>
67
+ <comment><![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>
68
  <fields>
69
  <enabled translate="label">
70
  <label>Enabled</label>
90
  <show_in_default>1</show_in_default>
91
  <show_in_website>0</show_in_website>
92
  <show_in_store>1</show_in_store>
93
+ <tooltip>You can find this information in your The Feedback Company account</tooltip>
 
94
  </company>
95
  <api_id translate="label">
96
  <label>The Feedback Company ID</label>
110
  <show_in_website>1</show_in_website>
111
  <show_in_store>1</show_in_store>
112
  <expanded>1</expanded>
113
+ <comment><![CDATA[To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually.<br/><br/>]]></comment>
114
  <fields>
115
  <cron translate="label">
116
  <label>Use Cronjob</label>
131
  <show_in_website>1</show_in_website>
132
  <show_in_store>1</show_in_store>
133
  <depends><cron>1</cron></depends>
134
+ <tooltip>Select the schedule for automatic updating</tooltip>
 
135
  </cron_stats>
136
  <cron_reviews translate="label">
137
  <label>Update Reviews</label>
182
  <show_in_website>1</show_in_website>
183
  <show_in_store>1</show_in_store>
184
  <expanded>1</expanded>
185
+ <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>
186
  <fields>
187
  <left_heading translate="label">
188
  <label>Left Sidebar</label>
310
  <show_in_website>1</show_in_website>
311
  <show_in_store>1</show_in_store>
312
  <expanded>1</expanded>
313
+ <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>
314
  <fields>
315
  <enabled translate="label">
316
  <label>Enabled</label>
394
  <show_in_website>1</show_in_website>
395
  <show_in_store>1</show_in_store>
396
  <expanded>1</expanded>
397
+ <comment><![CDATA[You can invite your customers to write customer reviews.]]></comment>
398
  <fields>
399
  <enabled translate="label">
400
  <label>Activate</label>
473
  <depends><enabled>1</enabled></depends>
474
  <comment>If yes, customers will get new review reminders for every new order.</comment>
475
  </resend>
476
+ <min_order_total translate="label">
477
+ <label>Minimum Order Total</label>
478
+ <frontend_type>text</frontend_type>
479
+ <sort_order>8</sort_order>
480
+ <show_in_default>1</show_in_default>
481
+ <show_in_website>1</show_in_website>
482
+ <show_in_store>1</show_in_store>
483
+ <depends><enabled>1</enabled></depends>
484
+ <comment><![CDATA[Invitation e-mail is sent only for order above this value. Use 0 for no minimum]]></comment>
485
+ </min_order_total>
486
  </fields>
487
  </invitation>
488
  <log translate="label">
493
  <show_in_website>0</show_in_website>
494
  <show_in_store>0</show_in_store>
495
  <expanded>1</expanded>
496
+ <comment><![CDATA[Logs can be activated in order to detect errors.<br/> This feature is particularly for developers.<br/><br/>]]></comment>
497
  <fields>
498
  <enabled translate="label">
499
  <label>Enable Log Function</label>
534
  <show_in_website>1</show_in_website>
535
  <show_in_store>1</show_in_store>
536
  <expanded>1</expanded>
537
+ <comment><![CDATA[<p>The extension comes with two coded blocks.<br/>With this blocks you can add your store rating in a Static block or CMS page.</p><br/><p><strong>The Rich Snippets Block.</strong><br/>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br/>Paste the code below at the desired location using a Static Block or a CMS page.</p> <p>Code: {{block type="feedbackcompany/snippets" name="feedbackcompanysnippets"}}</p><br/><p><strong>Custom Block.</strong><br/>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p> <p>Code: {{block type="feedbackcompany/custom" name="feedbackcompany"}}</p>]]></comment>
538
  </snippets>
539
  </groups>
540
  </feedbackcompany>
app/code/local/Magmodules/Feedbackcompany/sql/feedbackcompany_setup/mysql4-install-0.9.0.php CHANGED
@@ -15,7 +15,7 @@
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/design/frontend/base/default/template/magmodules/feedbackcompany/index.phtml CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,14 +15,11 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
- ?>
23
- <?php
24
- // Load Reviews & Stats
25
- $reviews = $this->getReviews();
26
- $stats = $this->getStats();
27
  ?>
28
  <div class="feedbackcompany">
29
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
+ $reviews = $this->getReviews();
22
+ $stats = $this->getStats();
 
 
 
23
  ?>
24
  <div class="feedbackcompany">
25
 
app/design/frontend/base/default/template/magmodules/feedbackcompany/sidebar/right.phtml CHANGED
@@ -16,7 +16,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  $sidebarreviews = $this->getSidebarCollection('right');
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  $sidebarreviews = $this->getSidebarCollection('right');
app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /**
3
- * Magmodules.eu
4
- * http://www.magmodules.eu
5
  *
6
  * NOTICE OF LICENSE
7
  *
@@ -16,7 +15,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
 
1
  <?php
2
  /**
3
+ * Magmodules.eu - http://www.magmodules.eu
 
4
  *
5
  * NOTICE OF LICENSE
6
  *
15
  * @category Magmodules
16
  * @package Magmodules_Feedbackcompany
17
  * @author Magmodules <info@magmodules.eu)
18
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/richsnippets.phtml CHANGED
@@ -16,7 +16,7 @@
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
- * @copyright Copyright (c) 2014 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  ?>
16
  * @category Magmodules
17
  * @package Magmodules_Feedbackcompany
18
  * @author Magmodules <info@magmodules.eu)
19
+ * @copyright Copyright (c) 2015 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
  ?>
app/locale/en_US/Magmodules_Feedbackcompany.csv CHANGED
@@ -47,18 +47,21 @@
47
  "Invitation","Invitation"
48
  "Invitation Call","Invitation Call"
49
  "Invitation to write the customer experience","Invitation to write the customer experience"
 
50
  "Last Update","Last Update"
51
  "Leadtime:","Leadtime:"
52
  "Left","Left"
53
  "Left Sidebar","Left Sidebar"
54
  "Length of Reviews","Length of Reviews"
55
  "Link to","Link to"
 
56
  "Magmodules","Magmodules"
57
  "Male","Male"
58
  "Manual","Manual"
59
  "Maximum Delay","Maximum Delay"
60
  "Meta Data","Meta Data"
61
  "Meta Keywords","Meta Keywords"
 
62
  "No","No"
63
  "None","None"
64
  "Number of Reviews","Number of Reviews"
@@ -90,6 +93,7 @@
90
  "Send customers automatically receive an invitation to share a customer experience.","Send customers automatically receive an invitation to share a customer experience."
91
  "Send the invitation reminder x days after the previous reminder. 0 = none","Send the invitation reminder x days after the previous reminder. 0 = none"
92
  "Shop","Shop"
 
93
  "Sidebar","Sidebar"
94
  "Sometimes","Sometimes"
95
  "Stats Cron","Stats Cron"
@@ -104,12 +108,14 @@
104
  "The Feedback Company Permission Setting","The Feedback Company Permission Setting"
105
  "This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience.","This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience."
106
  "Time","Time"
 
107
  "Total of %d log record(s) deleted.","Total of %d log record(s) deleted."
108
  "Total of %d review(s) were added to the sidebar.","Total of %d review(s) were added to the sidebar."
109
  "Total of %d review(s) were disabled.","Total of %d review(s) were disabled."
110
  "Total of %d review(s) were enabled.","Total of %d review(s) were enabled."
111
  "Total of %d review(s) were removed from the sidebar.","Total of %d review(s) were removed from the sidebar."
112
  "Total of %s log record(s) deleted.","Total of %s log record(s) deleted."
 
113
  "Twice a Day","Twice a Day"
114
  "Type","Type"
115
  "Update Review History","Update Review History"
@@ -124,7 +130,10 @@
124
  "You can find this information in your The Feedback Company account","You can find this information in your The Feedback Company account"
125
  "You can only activate the Rich Snippets when this block is shown on your Homepage only","You can only activate the Rich Snippets when this block is shown on your Homepage only"
126
  "Yes","Yes"
 
 
 
127
  "and total score updated.","and total score updated."
128
  "on","on"
129
  "total score updated","total score updated"
130
- "<p>The extension comes with two coded blocks.<br>With this blocks you can add your store rating in a Static block or CMS page.</p><p><br><strong>The Rich Snippets Block.<br></strong>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br>Paste the code below at the desired location using a Static Block or a CMS page.</p><p>Code: {{block type="feedbackcompany/snippets" name="feedbackcompanysnippets"}}</p><p><br><strong>Custom Block.</strong><br>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p><p>Code: {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>","<p>The extension comes with two coded blocks.<br>With this blocks you can add your store rating in a Static block or CMS page.</p><p><br><strong>The Rich Snippets Block.<br></strong>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br>Paste the code below at the desired location using a Static Block or a CMS page.</p><p>Code: {{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><p><br><strong>Custom Block.</strong><br>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p><p>Code: {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>"
47
  "Invitation","Invitation"
48
  "Invitation Call","Invitation Call"
49
  "Invitation to write the customer experience","Invitation to write the customer experience"
50
+ "Invitation e-mail is sent only for order above this value. Use 0 for no minimum","Invitation e-mail is sent only for order above this value. Use 0 for no minimum"
51
  "Last Update","Last Update"
52
  "Leadtime:","Leadtime:"
53
  "Left","Left"
54
  "Left Sidebar","Left Sidebar"
55
  "Length of Reviews","Length of Reviews"
56
  "Link to","Link to"
57
+ "Logs can be activated in order to detect errors.<br/> This feature is particularly for developers.<br/><br/>","Logs can be activated in order to detect errors.<br/> This feature is particularly for developers.<br/><br/>"
58
  "Magmodules","Magmodules"
59
  "Male","Male"
60
  "Manual","Manual"
61
  "Maximum Delay","Maximum Delay"
62
  "Meta Data","Meta Data"
63
  "Meta Keywords","Meta Keywords"
64
+ "Minimum Order Total","Minimum Order Total"
65
  "No","No"
66
  "None","None"
67
  "Number of Reviews","Number of Reviews"
93
  "Send customers automatically receive an invitation to share a customer experience.","Send customers automatically receive an invitation to share a customer experience."
94
  "Send the invitation reminder x days after the previous reminder. 0 = none","Send the invitation reminder x days after the previous reminder. 0 = none"
95
  "Shop","Shop"
96
+ "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/>","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/>"
97
  "Sidebar","Sidebar"
98
  "Sometimes","Sometimes"
99
  "Stats Cron","Stats Cron"
108
  "The Feedback Company Permission Setting","The Feedback Company Permission Setting"
109
  "This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience.","This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience."
110
  "Time","Time"
111
+ "Total score updated","Total score updated"
112
  "Total of %d log record(s) deleted.","Total of %d log record(s) deleted."
113
  "Total of %d review(s) were added to the sidebar.","Total of %d review(s) were added to the sidebar."
114
  "Total of %d review(s) were disabled.","Total of %d review(s) were disabled."
115
  "Total of %d review(s) were enabled.","Total of %d review(s) were enabled."
116
  "Total of %d review(s) were removed from the sidebar.","Total of %d review(s) were removed from the sidebar."
117
  "Total of %s log record(s) deleted.","Total of %s log record(s) deleted."
118
+ "To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually.<br/><br/>","To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually.<br/><br/>"
119
  "Twice a Day","Twice a Day"
120
  "Type","Type"
121
  "Update Review History","Update Review History"
130
  "You can find this information in your The Feedback Company account","You can find this information in your The Feedback Company account"
131
  "You can only activate the Rich Snippets when this block is shown on your Homepage only","You can only activate the Rich Snippets when this block is shown on your Homepage only"
132
  "Yes","Yes"
133
+ "You can invite your customers to write customer reviews.","You can invite your customers to write customer reviews."
134
+ "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>","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>"
135
+ "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/>","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/>"
136
  "and total score updated.","and total score updated."
137
  "on","on"
138
  "total score updated","total score updated"
139
+ "<p>The extension comes with two coded blocks.<br/>With this blocks you can add your store rating in a Static block or CMS page.</p><br/><p><strong>The Rich Snippets Block.</strong><br/>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br/>Paste the code below at the desired location using a Static Block or a CMS page.</p> <p>Code: {{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><br/><p><strong>Custom Block.</strong><br/>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p> <p>Code: {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>","<p>The extension comes with two coded blocks.<br/>With this blocks you can add your store rating in a Static block or CMS page.</p><br/><p><strong>The Rich Snippets Block.</strong><br/>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br/>Paste the code below at the desired location using a Static Block or a CMS page.</p> <p>Code: {{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><br/><p><strong>Custom Block.</strong><br/>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p> <p>Code: {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>"
app/locale/nl_NL/Magmodules_Feedbackcompany.csv CHANGED
@@ -47,18 +47,21 @@
47
  "Invitation","Herinnering"
48
  "Invitation Call","Herinnering e-mail"
49
  "Invitation to write the customer experience","Herinnering om een beoordeling te schrijven"
 
50
  "Last Update","Laatste Update"
51
  "Leadtime:","Doorlooptijd:"
52
  "Left","Links"
53
  "Left Sidebar","Linker sidebar"
54
  "Length of Reviews","Lengte van beoordelingen"
55
  "Link to","Link naar"
 
56
  "Magmodules","Magmodules"
57
  "Male","Mannelijk"
58
  "Manual","Handleiding"
59
  "Maximum Delay","Maximale vertraging"
60
  "Meta Data","Meta Data"
61
  "Meta Keywords","Meta zoekwoorden"
 
62
  "No","Nee"
63
  "None","Geen"
64
  "Number of Reviews","Aantal beoordelingen"
@@ -89,6 +92,7 @@
89
  "Send customers automatically receive an invitation to share a customer experience.","Stuur klanten automatisch een e-mail met de herinnering om een beoordeling te schrijven."
90
  "Send the invitation reminder x days after the previous reminder. 0 = none","Stuur een herinnering een x aantal dagen na de vorige herinnering. 0 = none"
91
  "Shop","Winkel"
 
92
  "Sidebar","Sidebar"
93
  "Sometimes","Soms"
94
  "Stats Cron","Statistieken Cron"
@@ -103,12 +107,14 @@
103
  "The Feedback Company Permission Setting","The Feedback Company permissie Setting"
104
  "This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience.","Dit zal ervoor zorgen dat de klant na ontvangst van het product nogmaals een uitnodiging ontvangt. Dit vergroot de kans dat de klant zijn ervaring zal delen."
105
  "Time","Tijd"
 
106
  "Total of %d log record(s) deleted.","Een totaal van %d log rij(en) zijn verwijdert."
107
  "Total of %d review(s) were added to the sidebar.","Een totaal van %d beoordeling(en) zijn aan de sidebar toegevoegd."
108
  "Total of %d review(s) were disabled.","Een totaal van %d beoordeling(en) zijn uitgeschakeld."
109
  "Total of %d review(s) were enabled.","Een totaal van %d beoordeling(en) zijn uitgeschakeld."
110
  "Total of %d review(s) were removed from the sidebar.","Een totaal van %d beoordeling(en) zijn verwijdert uit de sidebar"
111
  "Total of %s log record(s) deleted.","Een totaal van %s log rijen(s) verwijdert."
 
112
  "Twice a Day","Tweemaal per dag"
113
  "Type","Type"
114
  "Update Review History","Update Beoordeling historie"
@@ -122,8 +128,11 @@
122
  "Webwinkel ID %s: no updates found, feed is empty or not found!","Webwinkel ID %s: geen updates gevonden, feed is leeg of niet beschikbaar."
123
  "You can find this information in your The Feedback Company account","U kunt deze informatie terugvinden in uw The Feedback Company account"
124
  "You can only activate the Rich Snippets when this block is shown on your Homepage only","U kunt deze optie enkel activeren wanneer de sidebar op de homepage wordt vertoond. Indien u ook gebruikt maakt van de homepage widget dan raden wij u aan deze optie uit te schakelen om dubbele Rich Snippets te voorkomen."
 
 
 
125
  "Yes","Ja"
126
  "and total score updated.","totaal score geüpdate."
127
  "on","aan"
128
  "total score updated","totaal score geüpdate"
129
- "<p>The extension comes with two coded blocks.<br>With this blocks you can add your store rating in a Static block or CMS page.</p><p><br><strong>The Rich Snippets Block.<br></strong>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br>Paste the code below at the desired location using a Static Block or a CMS page.</p><p>Code: {{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><p><br><strong>Custom Block.</strong><br>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p><p>Code: {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>","<p>Deze extensie komt met 2 verschillende blokken.<br>With this blocks you can add your store rating in a Static block or CMS page.</p><p><br><strong>Het Rich Snippets blok.</strong><br></strong>Toon de webwinkel-waardering met in blok en genereer hiermee de zogenaamde Rich Snippets waarbij de winkelbeoordelingen worden getoond in de Zoekmachine resultaten van bijvoorbeeld Google. Plaat de onderstaande code op de gewenste plaats in een statische blok of een CMS-pagina.</p> <p><strong>De code: </strong>{{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><p><br><strong>Custom blok.</strong><br>Met dit custom blok is het mogelijk om eenvoudig een eigen blok creëren met daarin verschillende waardes als het aantal klanbeoordelingen, bedrijfsnaam en gemiddelde rating. Plaats de onderstaande code op de gewenste plek in een statisch blok of een CMS-pagina. Om dit blok naar wens te bewerken en eventueel aan te vullen met de geweneste informatie is het mogelijk om het .phtml bestand aan te passen. Deze is te vinden via de volgende path: app/design/frontend/base/default/template/magmodules/Feedbackcompany/widget/custom.phtml </p><p><strong>De code:</strong> {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>"
47
  "Invitation","Herinnering"
48
  "Invitation Call","Herinnering e-mail"
49
  "Invitation to write the customer experience","Herinnering om een beoordeling te schrijven"
50
+ "Invitation e-mail is sent only for order above this value. Use 0 for no minimum","De herinnering wordt alleen verstuurd boven deze orderwaarde. Gebruik 0 om geen minimum in te stellen."
51
  "Last Update","Laatste Update"
52
  "Leadtime:","Doorlooptijd:"
53
  "Left","Links"
54
  "Left Sidebar","Linker sidebar"
55
  "Length of Reviews","Lengte van beoordelingen"
56
  "Link to","Link naar"
57
+ "Logs can be activated in order to detect errors.<br/> This feature is particularly for developers.<br/><br/>","De logfunctie kan worden geactiveerd om fouten op te slaan.<br/>Deze functie is voornamelijk voor ontwikkelaars.<br/><br/>"
58
  "Magmodules","Magmodules"
59
  "Male","Mannelijk"
60
  "Manual","Handleiding"
61
  "Maximum Delay","Maximale vertraging"
62
  "Meta Data","Meta Data"
63
  "Meta Keywords","Meta zoekwoorden"
64
+ "Minimum Order Total","Minimale order bedrag"
65
  "No","Nee"
66
  "None","Geen"
67
  "Number of Reviews","Aantal beoordelingen"
92
  "Send customers automatically receive an invitation to share a customer experience.","Stuur klanten automatisch een e-mail met de herinnering om een beoordeling te schrijven."
93
  "Send the invitation reminder x days after the previous reminder. 0 = none","Stuur een herinnering een x aantal dagen na de vorige herinnering. 0 = none"
94
  "Shop","Winkel"
95
+ "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/>","Toon de laatste beoordelingen direct in de rechter of linker kant van de webwinkel om vertrouwen op te bouwen.<br/><br/>"
96
  "Sidebar","Sidebar"
97
  "Sometimes","Soms"
98
  "Stats Cron","Statistieken Cron"
107
  "The Feedback Company Permission Setting","The Feedback Company permissie Setting"
108
  "This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience.","Dit zal ervoor zorgen dat de klant na ontvangst van het product nogmaals een uitnodiging ontvangt. Dit vergroot de kans dat de klant zijn ervaring zal delen."
109
  "Time","Tijd"
110
+ "Total score updated","Totaal score geüpdatet"
111
  "Total of %d log record(s) deleted.","Een totaal van %d log rij(en) zijn verwijdert."
112
  "Total of %d review(s) were added to the sidebar.","Een totaal van %d beoordeling(en) zijn aan de sidebar toegevoegd."
113
  "Total of %d review(s) were disabled.","Een totaal van %d beoordeling(en) zijn uitgeschakeld."
114
  "Total of %d review(s) were enabled.","Een totaal van %d beoordeling(en) zijn uitgeschakeld."
115
  "Total of %d review(s) were removed from the sidebar.","Een totaal van %d beoordeling(en) zijn verwijdert uit de sidebar"
116
  "Total of %s log record(s) deleted.","Een totaal van %s log rijen(s) verwijdert."
117
+ "To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually.<br/><br/>","Om de laatste beoordelingen te tonen in de webwinkel dient u deze eerst te importeren.<br/>Dit kan volledig automatisch of handmatig.<br/><br/>"
118
  "Twice a Day","Tweemaal per dag"
119
  "Type","Type"
120
  "Update Review History","Update Beoordeling historie"
128
  "Webwinkel ID %s: no updates found, feed is empty or not found!","Webwinkel ID %s: geen updates gevonden, feed is leeg of niet beschikbaar."
129
  "You can find this information in your The Feedback Company account","U kunt deze informatie terugvinden in uw The Feedback Company account"
130
  "You can only activate the Rich Snippets when this block is shown on your Homepage only","U kunt deze optie enkel activeren wanneer de sidebar op de homepage wordt vertoond. Indien u ook gebruikt maakt van de homepage widget dan raden wij u aan deze optie uit te schakelen om dubbele Rich Snippets te voorkomen."
131
+ "You can invite your customers to write customer reviews.","Het is mogelijk om automatisch een herinnering te sturen naar uw klanten voor het schrijven van een beoordeling.<br><br>"
132
+ "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>"
133
+ "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/>"
134
  "Yes","Ja"
135
  "and total score updated.","totaal score geüpdate."
136
  "on","aan"
137
  "total score updated","totaal score geüpdate"
138
+ "<p>The extension comes with two coded blocks.<br/>With this blocks you can add your store rating in a Static block or CMS page.</p><br/><p><strong>The Rich Snippets Block.</strong><br/>Show your Store-rating with this block and generate results in the Google Search Engine Results better known as Rich Snippets.<br/>Paste the code below at the desired location using a Static Block or a CMS page.</p> <p>Code: {{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><br/><p><strong>Custom Block.</strong><br/>With this block you can create custom block for footer of header, you can paste the code below at the desired location using a Static Block or a CMS page.<br>To edit this block you need to edit the .phtml file located in the following path: app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/custom.phtml</p> <p>Code: {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>","<p>Deze extensie komt met 2 verschillende blokken.<br>Met deze blokken kan je de winkelbeoordeling in een static-block of CMS pagina plaatsen.</p><p><br><strong>Het Rich Snippets blok.</strong><br></strong>Toon de webwinkel-waardering met in blok en genereer hiermee de zogenaamde Rich Snippets waarbij de winkelbeoordelingen worden getoond in de Zoekmachine resultaten van bijvoorbeeld Google. Plaat de onderstaande code op de gewenste plaats in een statische blok of een CMS-pagina.</p> <p><strong>De code: </strong>{{block type=""feedbackcompany/snippets"" name=""feedbackcompanysnippets""}}</p><p><br><strong>Custom blok.</strong><br>Met dit custom blok is het mogelijk om eenvoudig een eigen blok creëren met daarin verschillende waardes als het aantal klanbeoordelingen, bedrijfsnaam en gemiddelde rating. Plaats de onderstaande code op de gewenste plek in een statisch blok of een CMS-pagina. Om dit blok naar wens te bewerken en eventueel aan te vullen met de geweneste informatie is het mogelijk om het .phtml bestand aan te passen. Deze is te vinden via de volgende path: app/design/frontend/base/default/template/magmodules/Feedbackcompany/widget/custom.phtml </p><p><strong>De code:</strong> {{block type=""feedbackcompany/custom"" name=""feedbackcompany""}}</p>"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Feedbackcompany</name>
4
- <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <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>auto-converted</user><email>info@magmodules.nl</email></author></authors>
13
- <date>2014-12-18</date>
14
- <time>08:27:32</time>
15
- <contents><target name="magelocal"><dir name="Magmodules"><dir name="Feedbackcompany"><dir name="Block"><dir name="Adminhtml"><dir name="Feedbacklog"><file name="Grid.php" hash="6b8df2977a2f22e46e96c1789a941538"/></dir><dir name="Feedbackreviews"><dir name="Renderer"><file name="Experience.php" hash="c45af4e2a66fb94f9af57bfa8b0205f8"/></dir><file name="Grid.php" hash="46a63c5c01b9a04cd46924d25bca27ca"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="70aa682cb2f6e44bea61418b7ee7ead9"/><file name="Test.php" hash="191243a67bae63c9faa4192042e71e17"/></dir><dir name="Form"><file name="Heading.php" hash="31bfab989f7aa391695ccf1a5f7ae1ec"/></dir><dir name="Grid"><file name="Log.php" hash="c7fd3e64ccb54576f1177766f0a6c845"/><file name="Seconds.php" hash="2f0079769c2ae7711249e502e25d89a2"/><file name="Stars.php" hash="0866b1d3fa7f238f7bd5bde061690ba4"/></dir><dir name="Info"><file name="Info.php" hash="7c781d9efbcd9048378538adc5a6d519"/></dir></dir><file name="Feedbacklog.php" hash="f3c50b41a3d8a0e2646ea0b7d3d7cdb5"/><file name="Feedbackreviews.php" hash="3bbe441da70493f3e6e4befb8571d945"/></dir><file name="Custom.php" hash="b7bb37733b304ce8da4fedd1f5ea5445"/><file name="Reviews.php" hash="1e4be5c264a3be70fd38e6cd0a138bcd"/><file name="Sidebar.php" hash="a3cb7a2989ccddfed4c7b8a2358e9416"/><file name="Snippets.php" hash="332b3f67d8a2faae58e589a37d8142cf"/></dir><dir name="Helper"><file name="Data.php" hash="a025efba5fee15b6c927c2b1dffc4cbf"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="d336a794dc3e3fbcdfce9e371e4a7d5c"/></dir><dir name="Reviews"><file name="Collection.php" hash="211ccf77ae9b5c4319acedc83666890e"/></dir><dir name="Stats"><file name="Collection.php" hash="ef72f167e60d414c4a902d90da7e50f2"/></dir><file name="Log.php" hash="6e42f605d5e3c95faf08c72c99641de5"/><file name="Reviews.php" hash="9dd9c1f634a835e7d12f87389e172413"/><file name="Stats.php" hash="71a0b73c25bf6ee05fab8d1f05b75ebe"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="35ac5d03ebcd2f1e4b3de2ac5a5d21a9"/><file name="Orderstatus.php" hash="831108c0238b62163da3ddfd6c06bcf0"/><file name="Position.php" hash="8c381860ffae239fbe1c50eeab8b7fa2"/><file name="Sidebarlink.php" hash="951d29505b30adcf66680584a1e7bfe6"/></dir></dir></dir><file name="Api.php" hash="9023933e55ed6dd151fe73ba7c50bd7f"/><file name="Log.php" hash="7d4c86950baad19fc07f75ef6eb5b00d"/><file name="Observer.php" hash="c8143c24510fce94435378b435cb943f"/><file name="Reviews.php" hash="a884af66ff19f541afa42de052c53b74"/><file name="Stats.php" hash="6f632eeef7185c904bfd176168dc81b2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbacklogController.php" hash="cf879105805d36a62a30bff1623219fb"/><file name="FeedbackreviewsController.php" hash="0df53d8bb96fa9a442b747743a726819"/></dir><file name="IndexController.php" hash="ec0db469394e5ef5dc6c8f2166afc5f2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="bff519cc9f4a329a9c37a84f2fc45a66"/><file name="config.xml" hash="60270690cdc656d1b16d83586e1f0065"/><file name="system.xml" hash="3cd208eed6414591d8d42d2ecb49bad3"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="59de5cb048eea1ab73ad41351038bef3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="252a56f88367e456af4929cdccad70bd"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="sidebar"><file name="left.phtml" hash="347332bcb4c298ce2df4569bd50c30b9"/><file name="right.phtml" hash="ae7548cd16f10d3d37ffde73b2eb510b"/></dir><dir name="widget"><file name="custom.phtml" hash="8b83d53327644272d8f44e443180dd9d"/><file name="richsnippets.phtml" hash="c81ad178fd9a0851560964d78c53d917"/></dir><file name="index.phtml" hash="52577d6c0ef56afd40714f38e33d3363"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="886af6aabcc892da5074c93ad0263006"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Feedbackcompany.xml" hash="89e30c33efd62d035f0d231968b471a5"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Feedbackcompany.csv" hash="455f0fff83858466e86fd75aac3769af"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="8a54801705f1c86bb545c00e275c46f1"/></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="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="6c8d46ba30a7ae87dcb75db12830b33f"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="75b478aac646b9e13e18b842effbe80d"/><file name="sidebar.css" hash="fe656003fb05be5ad4480239c130621c"/><file name="style.css" hash="92f18c23ec4ec0a07c33f6067dc76cf9"/></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="ea7e85df839bf0eb7bc6882608da80b0"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Feedbackcompany</name>
4
+ <version>1.0.3</version>
5
  <stability>stable</stability>
6
  <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>auto-converted</user><email>info@magmodules.nl</email></author></authors>
13
+ <date>2015-01-08</date>
14
+ <time>15:00:20</time>
15
+ <contents><target name="magelocal"><dir name="Magmodules"><dir name="Feedbackcompany"><dir name="Block"><dir name="Adminhtml"><dir name="Feedbacklog"><file name="Grid.php" hash="1898d4df8746111e1a5404869226b26a"/></dir><dir name="Feedbackreviews"><dir name="Renderer"><file name="Experience.php" hash="b5fd639eea45b31779747da049b66a80"/></dir><file name="Grid.php" hash="e56fee3f655371a066e9f56ce5ae914d"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="4d2bce798a5b9c2b5d62bfe35c27d720"/><file name="Test.php" hash="040ecb43856a68dca4699a63c1e9c9f8"/></dir><dir name="Form"><file name="Heading.php" hash="8f820fe2ad56e3c4be54f7f84bc47eca"/></dir><dir name="Grid"><file name="Log.php" hash="d71d6f3218ec06baae0ad9b1e6d5b5de"/><file name="Seconds.php" hash="a7e6db7624fee7717cba3048f3f5638b"/><file name="Stars.php" hash="8041613a13a202b0df1d376dc38c5e76"/></dir><dir name="Info"><file name="Info.php" hash="fe80bd3c99f8cd6c814ab2ae8ad4cffe"/></dir></dir><file name="Feedbacklog.php" hash="eb36920b105077ca572137ccb4a9345c"/><file name="Feedbackreviews.php" hash="d1cf617989422aa0533d354dfde0fdf1"/></dir><file name="Custom.php" hash="e0481aa90a30a4ae575601709e0905da"/><file name="Reviews.php" hash="9393b1ffb4f9514cad46a51db24e6ab4"/><file name="Sidebar.php" hash="a116d93bb845b6de4034276203d0e470"/><file name="Snippets.php" hash="bbd5b8aa6d21959b4a92ede1f8386481"/></dir><dir name="Helper"><file name="Data.php" hash="dedc167d42151eb293b6bb3719a9cb04"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="1c6f30ede26cadb9fd4c51f916cbfeb2"/></dir><dir name="Reviews"><file name="Collection.php" hash="17f3acddd0e184f923d137433aaa40ee"/></dir><dir name="Stats"><file name="Collection.php" hash="184fe402b66949e0d4fdb95fc6b4189d"/></dir><file name="Log.php" hash="542d942a56d159d5c1af65ed5c6de857"/><file name="Reviews.php" hash="5518780ad915f644ed9cc319def2da8c"/><file name="Stats.php" hash="268aed9ed09e83611b12c7bbbfca5076"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="0f0170d96c8807a440ab41fa6ccc1e13"/><file name="Orderstatus.php" hash="64429a1804e1bc5ec2f0ea89e7627fc8"/><file name="Position.php" hash="3c11a9fba6006528bb904036ca87f619"/><file name="Sidebarlink.php" hash="9e1a817b4253645b5632306ffd89dd03"/></dir></dir></dir><file name="Api.php" hash="a4dae0a2e271c25b6b1a78cd26e7f60a"/><file name="Log.php" hash="e64de82f87f3830914240e24ccbfb402"/><file name="Observer.php" hash="19872684b325c4106a2da876e3a975e5"/><file name="Reviews.php" hash="3a6abf11585a18ff4c9326b5c8606145"/><file name="Stats.php" hash="de59a47b0ecc42cd2fbd9c544d283d5f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbacklogController.php" hash="c1ac62ed05266768095a8c8603822c5f"/><file name="FeedbackreviewsController.php" hash="d557715248b5d3947b3ff1e01aff43bf"/></dir><file name="IndexController.php" hash="da1707d69452f5430305c20c083cba78"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8d51e2aa74e51f8de79650776cff510e"/><file name="config.xml" hash="3216bf97f4c366da334862a0c6093203"/><file name="system.xml" hash="83c076a103ffdb943a39551297d9e99a"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="c86ec8f3c3a12cda7dd750cbd21dfca7"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="252a56f88367e456af4929cdccad70bd"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="sidebar"><file name="left.phtml" hash="347332bcb4c298ce2df4569bd50c30b9"/><file name="right.phtml" hash="91dc15500664ccf455b684c1922feb53"/></dir><dir name="widget"><file name="custom.phtml" hash="dee6009ae06269c54fc7fdf6605eb8e4"/><file name="richsnippets.phtml" hash="f64edccaf7ce6fa459c8d22323f7650b"/></dir><file name="index.phtml" hash="3e6f39efe8f18cdb1ef04d1df6bca55a"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_feedbackcompany.xml" hash="886af6aabcc892da5074c93ad0263006"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Feedbackcompany.xml" hash="89e30c33efd62d035f0d231968b471a5"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Feedbackcompany.csv" hash="04ef21694283f6adba761c8891c3bdde"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="0688ba9a2d99dc2ff00c8fcd51a10776"/></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="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="logo.png" hash="6c8d46ba30a7ae87dcb75db12830b33f"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="75b478aac646b9e13e18b842effbe80d"/><file name="sidebar.css" hash="fe656003fb05be5ad4480239c130621c"/><file name="style.css" hash="92f18c23ec4ec0a07c33f6067dc76cf9"/></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="ea7e85df839bf0eb7bc6882608da80b0"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>