Version Notes
First stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | Magmodules_Feedbackcompany |
Version | 1.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.4.1 to 1.4.2
- app/code/community/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbacklog/Grid.php +1 -1
- app/code/community/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Buttons/Process.php +1 -1
- app/code/community/Magmodules/Feedbackcompany/Model/Api.php +5 -5
- app/code/community/Magmodules/Feedbackcompany/Model/Productreviews.php +4 -4
- app/code/community/Magmodules/Feedbackcompany/Model/Reviews.php +6 -12
- app/code/community/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbackreviewsController.php +1 -1
- app/code/community/Magmodules/Feedbackcompany/data/feedbackcompany_setup/data-upgrade-1.4.1-1.4.2.php +35 -0
- app/code/community/Magmodules/Feedbackcompany/etc/config.xml +1 -1
- app/locale/en_US/Magmodules_Feedbackcompany.csv +2 -0
- app/locale/nl_NL/Magmodules_Feedbackcompany.csv +2 -0
- package.xml +4 -4
app/code/community/Magmodules/Feedbackcompany/Block/Adminhtml/Feedbacklog/Grid.php
CHANGED
@@ -85,7 +85,7 @@ class Magmodules_Feedbackcompany_Block_Adminhtml_Feedbacklog_Grid extends Mage_A
|
|
85 |
'width' => '120',
|
86 |
'type' => 'options',
|
87 |
'options' => array(
|
88 |
-
'' => Mage::helper('feedbackcompany')->__('
|
89 |
'stats' => Mage::helper('feedbackcompany')->__('Stats Cron'),
|
90 |
'reviews' => Mage::helper('feedbackcompany')->__('Reviews Cron'),
|
91 |
'productreviews'=> Mage::helper('feedbackcompany')->__('Producteviews Cron'),
|
85 |
'width' => '120',
|
86 |
'type' => 'options',
|
87 |
'options' => array(
|
88 |
+
'' => Mage::helper('feedbackcompany')->__('Manually'),
|
89 |
'stats' => Mage::helper('feedbackcompany')->__('Stats Cron'),
|
90 |
'reviews' => Mage::helper('feedbackcompany')->__('Reviews Cron'),
|
91 |
'productreviews'=> Mage::helper('feedbackcompany')->__('Producteviews Cron'),
|
app/code/community/Magmodules/Feedbackcompany/Block/Adminhtml/Widget/Buttons/Process.php
CHANGED
@@ -28,7 +28,7 @@ class Magmodules_Feedbackcompany_Block_Adminhtml_Widget_Buttons_Process extends
|
|
28 |
$html = $this->getLayout()->createBlock('adminhtml/widget_button')
|
29 |
->setType('button')
|
30 |
->setClass('scalable')
|
31 |
-
->setLabel(Mage::helper('feedbackcompany')->__('
|
32 |
->setOnClick("setLocation('$url')")
|
33 |
->toHtml();
|
34 |
return $html;
|
28 |
$html = $this->getLayout()->createBlock('adminhtml/widget_button')
|
29 |
->setType('button')
|
30 |
->setClass('scalable')
|
31 |
+
->setLabel(Mage::helper('feedbackcompany')->__('Import all reviews'))
|
32 |
->setOnClick("setLocation('$url')")
|
33 |
->toHtml();
|
34 |
return $html;
|
app/code/community/Magmodules/Feedbackcompany/Model/Api.php
CHANGED
@@ -74,11 +74,11 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
|
|
74 |
if($type == 'stats') {
|
75 |
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishDetails=0&nor=0&Basescore=10';
|
76 |
}
|
77 |
-
if($type == 'reviews') {
|
78 |
-
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=
|
79 |
}
|
80 |
-
if($type == '
|
81 |
-
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=
|
82 |
}
|
83 |
if($api_id) {
|
84 |
$xml = simplexml_load_file($api_url);
|
@@ -116,7 +116,7 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
|
|
116 |
$remind_delay = Mage::getStoreConfig('feedbackcompany/invitation/remind_delay', $store_id);
|
117 |
$min_order = Mage::getStoreConfig('feedbackcompany/invitation/min_order_total', $store_id);
|
118 |
$exclude_cat = Mage::getStoreConfig('feedbackcompany/invitation/exclude_category', $store_id);
|
119 |
-
$productreviews = Mage::getStoreConfig('feedbackcompany/
|
120 |
$email = $order->getCustomerEmail();
|
121 |
$order_number = $order->getIncrementID();
|
122 |
$order_total = $order->getGrandTotal();
|
74 |
if($type == 'stats') {
|
75 |
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishDetails=0&nor=0&Basescore=10';
|
76 |
}
|
77 |
+
if(($type == 'reviews') || ($type == 'history')) {
|
78 |
+
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=100&publishDetails=1&publishOnHold=0&sort=desc&emlpass=test&publishCompResponse=1&Basescore=10';
|
79 |
}
|
80 |
+
if($type == 'all') {
|
81 |
+
$api_url = 'https://beoordelingen.feedbackcompany.nl/samenvoordeel/scripts/flexreview/getreviewxml.cfm?ws=' . $api_id . '&publishIDs=1&nor=10000&publishDetails=1&publishOnHold=0&sort=desc&emlpass=test&publishCompResponse=1&Basescore=10';
|
82 |
}
|
83 |
if($api_id) {
|
84 |
$xml = simplexml_load_file($api_url);
|
116 |
$remind_delay = Mage::getStoreConfig('feedbackcompany/invitation/remind_delay', $store_id);
|
117 |
$min_order = Mage::getStoreConfig('feedbackcompany/invitation/min_order_total', $store_id);
|
118 |
$exclude_cat = Mage::getStoreConfig('feedbackcompany/invitation/exclude_category', $store_id);
|
119 |
+
$productreviews = Mage::getStoreConfig('feedbackcompany/productreviews/enabled', $store_id);
|
120 |
$email = $order->getCustomerEmail();
|
121 |
$order_number = $order->getIncrementID();
|
122 |
$order_total = $order->getGrandTotal();
|
app/code/community/Magmodules/Feedbackcompany/Model/Productreviews.php
CHANGED
@@ -31,9 +31,9 @@ class Magmodules_Feedbackcompany_Model_Productreviews extends Mage_Core_Model_Ab
|
|
31 |
foreach($feed->product_reviews as $review) {
|
32 |
$feedback_id = $review->id;
|
33 |
$_loadrev = Mage::getModel('review/review')->load($feedback_id, 'feedbackcompany_id');
|
34 |
-
if($_loadrev->getReviewId() < 1) {
|
35 |
$_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $review->product_sku);
|
36 |
-
if($_product
|
37 |
$content = $review->review;
|
38 |
if((strlen($content) > 0) && ($review->rating > 0)) {
|
39 |
try {
|
@@ -63,8 +63,8 @@ class Magmodules_Feedbackcompany_Model_Productreviews extends Mage_Core_Model_Ab
|
|
63 |
$new++;
|
64 |
}
|
65 |
} catch (Exception $e) {
|
66 |
-
Mage::log($e->getMessage(), null, 'feedbackcompany.log');
|
67 |
-
Mage::getSingleton('adminhtml/session')->addError(Mage::helper('feedbackcompany')->__('There has been an error, please check var/log/feedbackcompany.log'));
|
68 |
}
|
69 |
}
|
70 |
}
|
31 |
foreach($feed->product_reviews as $review) {
|
32 |
$feedback_id = $review->id;
|
33 |
$_loadrev = Mage::getModel('review/review')->load($feedback_id, 'feedbackcompany_id');
|
34 |
+
if(($_loadrev->getReviewId() < 1) && ($review->rating > 0)) {
|
35 |
$_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $review->product_sku);
|
36 |
+
if($_product) {
|
37 |
$content = $review->review;
|
38 |
if((strlen($content) > 0) && ($review->rating > 0)) {
|
39 |
try {
|
63 |
$new++;
|
64 |
}
|
65 |
} catch (Exception $e) {
|
66 |
+
// Mage::log($e->getMessage(), null, 'feedbackcompany.log');
|
67 |
+
// Mage::getSingleton('adminhtml/session')->addError(Mage::helper('feedbackcompany')->__('There has been an error, please check var/log/feedbackcompany.log'));
|
68 |
}
|
69 |
}
|
70 |
}
|
app/code/community/Magmodules/Feedbackcompany/Model/Reviews.php
CHANGED
@@ -29,18 +29,14 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Mage_Core_Model_Abstract
|
|
29 |
$this->_init('feedbackcompany/reviews');
|
30 |
}
|
31 |
|
32 |
-
public function loadbyFeedbackId($feedback_id)
|
33 |
-
{
|
34 |
-
$this->_getResource()->load($this, $feedback_id, 'feedback_id');
|
35 |
-
return $this;
|
36 |
-
}
|
37 |
-
|
38 |
public function processFeed($feed, $storeid = 0, $type)
|
39 |
{
|
40 |
$updates = 0; $new = 0; $history = 0;
|
41 |
$api_id = Mage::getStoreConfig('feedbackcompany/general/api_id', $storeid);
|
42 |
-
$company = Mage::getStoreConfig('feedbackcompany/general/company', $storeid);
|
|
|
43 |
foreach($feed->reviewDetails->reviewDetail as $review) {
|
|
|
44 |
$feedback_id = $review->id;
|
45 |
$score = ($review->score / 2);
|
46 |
$score_max = ($review->scoremax / 2);
|
@@ -63,10 +59,10 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Mage_Core_Model_Abstract
|
|
63 |
$company_response = $review->companyResponse;
|
64 |
$date_created = $review->createdate;
|
65 |
$date_created = substr($date_created, 0, 4) . '/' . substr($date_created, 4, 2) . '/' . substr($date_created, 6, 2);
|
66 |
-
$indatabase = $this->
|
67 |
|
68 |
if($indatabase->getReviewId()) {
|
69 |
-
if($type == 'history') {
|
70 |
$reviews = Mage::getModel('feedbackcompany/reviews');
|
71 |
$reviews->setReviewId($indatabase->getReviewId())
|
72 |
->setShopId($api_id)
|
@@ -94,9 +90,7 @@ class Magmodules_Feedbackcompany_Model_Reviews extends Mage_Core_Model_Abstract
|
|
94 |
->setDateCreated($date_created)
|
95 |
->save();
|
96 |
$updates++;
|
97 |
-
}
|
98 |
-
break;
|
99 |
-
}
|
100 |
} else {
|
101 |
$reviews = Mage::getModel('feedbackcompany/reviews');
|
102 |
$reviews->setShopId($api_id)
|
29 |
$this->_init('feedbackcompany/reviews');
|
30 |
}
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
public function processFeed($feed, $storeid = 0, $type)
|
33 |
{
|
34 |
$updates = 0; $new = 0; $history = 0;
|
35 |
$api_id = Mage::getStoreConfig('feedbackcompany/general/api_id', $storeid);
|
36 |
+
$company = Mage::getStoreConfig('feedbackcompany/general/company', $storeid);
|
37 |
+
|
38 |
foreach($feed->reviewDetails->reviewDetail as $review) {
|
39 |
+
|
40 |
$feedback_id = $review->id;
|
41 |
$score = ($review->score / 2);
|
42 |
$score_max = ($review->scoremax / 2);
|
59 |
$company_response = $review->companyResponse;
|
60 |
$date_created = $review->createdate;
|
61 |
$date_created = substr($date_created, 0, 4) . '/' . substr($date_created, 4, 2) . '/' . substr($date_created, 6, 2);
|
62 |
+
$indatabase = $this->getCollection()->addFieldToFilter('feedback_id', $feedback_id)->getFirstItem();
|
63 |
|
64 |
if($indatabase->getReviewId()) {
|
65 |
+
if(($type == 'history') || ($type == 'all')) {
|
66 |
$reviews = Mage::getModel('feedbackcompany/reviews');
|
67 |
$reviews->setReviewId($indatabase->getReviewId())
|
68 |
->setShopId($api_id)
|
90 |
->setDateCreated($date_created)
|
91 |
->save();
|
92 |
$updates++;
|
93 |
+
}
|
|
|
|
|
94 |
} else {
|
95 |
$reviews = Mage::getModel('feedbackcompany/reviews');
|
96 |
$reviews->setShopId($api_id)
|
app/code/community/Magmodules/Feedbackcompany/controllers/Adminhtml/FeedbackreviewsController.php
CHANGED
@@ -39,7 +39,7 @@ class Magmodules_Feedbackcompany_Adminhtml_FeedbackreviewsController extends Mag
|
|
39 |
foreach($storeids as $storeid) {
|
40 |
$msg = '';
|
41 |
$api_id = Mage::getStoreConfig('feedbackcompany/general/api_id', $storeid);
|
42 |
-
$result = Mage::getModel('feedbackcompany/api')->processFeed($storeid, '
|
43 |
$log = Mage::getModel('feedbackcompany/log')->addToLog('reviews', $storeid, $result, '', (microtime(true) - $start_time), '', '');
|
44 |
|
45 |
if(($result['review_new'] > 0) || ($result['review_updates'] > 0) || ($result['stats'] == true)) {
|
39 |
foreach($storeids as $storeid) {
|
40 |
$msg = '';
|
41 |
$api_id = Mage::getStoreConfig('feedbackcompany/general/api_id', $storeid);
|
42 |
+
$result = Mage::getModel('feedbackcompany/api')->processFeed($storeid, 'all');
|
43 |
$log = Mage::getModel('feedbackcompany/log')->addToLog('reviews', $storeid, $result, '', (microtime(true) - $start_time), '', '');
|
44 |
|
45 |
if(($result['review_new'] > 0) || ($result['review_updates'] > 0) || ($result['stats'] == true)) {
|
app/code/community/Magmodules/Feedbackcompany/data/feedbackcompany_setup/data-upgrade-1.4.1-1.4.2.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magmodules.eu - http://www.magmodules.eu
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to 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) 2016 (http://www.magmodules.eu)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
+
*/
|
21 |
+
|
22 |
+
$installer = $this;
|
23 |
+
if(Mage::getModel('admin/block')) {
|
24 |
+
$connection = $installer->getConnection();
|
25 |
+
$table = $installer->getTable('admin/permission_block');
|
26 |
+
$blockNames = array(
|
27 |
+
'feedbackcompany/custom',
|
28 |
+
);
|
29 |
+
foreach ($blockNames as $blockName) {
|
30 |
+
$connection->insertIgnore($table, array(
|
31 |
+
'block_name' => $blockName,
|
32 |
+
'is_allowed' => 1,
|
33 |
+
));
|
34 |
+
}
|
35 |
+
}
|
app/code/community/Magmodules/Feedbackcompany/etc/config.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Feedbackcompany>
|
26 |
-
<version>1.4.
|
27 |
</Magmodules_Feedbackcompany>
|
28 |
</modules>
|
29 |
<global>
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Feedbackcompany>
|
26 |
+
<version>1.4.2</version>
|
27 |
</Magmodules_Feedbackcompany>
|
28 |
</modules>
|
29 |
<global>
|
app/locale/en_US/Magmodules_Feedbackcompany.csv
CHANGED
@@ -55,6 +55,7 @@
|
|
55 |
"Information:","Information:"
|
56 |
"Internal (/feedbackcompany)","Internal (/feedbackcompany)"
|
57 |
"Invitation","Invitation"
|
|
|
58 |
"Invitation Call","Invitation Call"
|
59 |
"Invitation to write the customer experience","Invitation to write the customer experience"
|
60 |
"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"
|
@@ -70,6 +71,7 @@
|
|
70 |
"Manual","Manual"
|
71 |
"Maximum Delay","Maximum Delay"
|
72 |
"Meta Data","Meta Data"
|
|
|
73 |
"Meta Keywords","Meta Keywords"
|
74 |
"Minimum Order Total","Minimum Order Total"
|
75 |
"No","No"
|
55 |
"Information:","Information:"
|
56 |
"Internal (/feedbackcompany)","Internal (/feedbackcompany)"
|
57 |
"Invitation","Invitation"
|
58 |
+
"Import all reviews","Import all reviews"
|
59 |
"Invitation Call","Invitation Call"
|
60 |
"Invitation to write the customer experience","Invitation to write the customer experience"
|
61 |
"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"
|
71 |
"Manual","Manual"
|
72 |
"Maximum Delay","Maximum Delay"
|
73 |
"Meta Data","Meta Data"
|
74 |
+
"Process Manually","Process Manually"
|
75 |
"Meta Keywords","Meta Keywords"
|
76 |
"Minimum Order Total","Minimum Order Total"
|
77 |
"No","No"
|
app/locale/nl_NL/Magmodules_Feedbackcompany.csv
CHANGED
@@ -57,7 +57,9 @@
|
|
57 |
"Information:","Informatie:"
|
58 |
"Internal (/feedbackcompany)","Intern (/feedbackcompany)"
|
59 |
"Invitation","Herinnering"
|
|
|
60 |
"Invitation Call","Herinnering e-mail"
|
|
|
61 |
"The Feedback Company Invitation email","The Feedback Company - Email uitnodigingen"
|
62 |
"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."
|
63 |
"Last Update","Laatste Update"
|
57 |
"Information:","Informatie:"
|
58 |
"Internal (/feedbackcompany)","Intern (/feedbackcompany)"
|
59 |
"Invitation","Herinnering"
|
60 |
+
"Process Manually","Handmatig uitvoeren"
|
61 |
"Invitation Call","Herinnering e-mail"
|
62 |
+
"Import all reviews","Importeer alle beoordelingen"
|
63 |
"The Feedback Company Invitation email","The Feedback Company - Email uitnodigingen"
|
64 |
"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."
|
65 |
"Last Update","Laatste Update"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Feedbackcompany</name>
|
4 |
-
<version>1.4.
|
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>2016-02-
|
14 |
-
<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="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Feedbackcompany</name>
|
4 |
+
<version>1.4.2</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>2016-02-19</date>
|
14 |
+
<time>14:07:14</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="0b35dd7762cf181dc8215a1283d81e5f"/></dir><dir name="Feedbackreviews"><dir name="Renderer"><file name="Experience.php" hash="58e6b4524ee8c4e95e76a2fa29309f4f"/></dir><file name="Grid.php" hash="034b652b83b627d464f4d566b1a8dd19"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="fba16d7671930510e1d2d70483e43581"/><file name="Productreviews.php" hash="1e7da9da2ec3eb28e5fde451c8cfb781"/><file name="Test.php" hash="95bb230b8c02d349cbb4c8a914ea2fd6"/></dir><dir name="Field"><file name="Version.php" hash="004c1eef29828c33ece2b069738b66b3"/></dir><dir name="Form"><file name="Heading.php" hash="6392f0a879d8b475c5ec93aec74fa11d"/><file name="Note.php" hash="80abe28a9156c42dfc3ea61a2e265fc3"/></dir><dir name="Grid"><file name="Log.php" hash="f48fe4676148cb91f8150a726289c50d"/><file name="Seconds.php" hash="a3c061430ffb9bb59bc18308d8bf1bbf"/><file name="Stars.php" hash="bc6bbb13c6e58fcb0c389e94def62ecb"/></dir><dir name="Info"><file name="Info.php" hash="41fa6901e5f3744fa67b8413916c9ab0"/></dir></dir><file name="Feedbacklog.php" hash="03448637e329d9aed31916c403f237a7"/><file name="Feedbackreviews.php" hash="b9c0059184019f277dde9b70b94bfa37"/></dir><file name="Custom.php" hash="3c5fe7bb2629fbed033bb681bad6f440"/><file name="Header.php" hash="44a5dc7866157c032b0c90f27d162b5f"/><file name="Reviews.php" hash="88505fc0d4c17fa6bf89448bdf547ceb"/><file name="Sidebar.php" hash="8e3494bd8e32eff42c5b0c26755694bf"/></dir><dir name="Helper"><file name="Data.php" hash="7c4cc8adfdd8c7421648920d32edb12a"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="ae1342456877a1fae35eae8724c923c4"/></dir><dir name="Reviews"><file name="Collection.php" hash="59f40c5d3de2c2c00eda58edf82afec3"/></dir><dir name="Stats"><file name="Collection.php" hash="c5556305c5bd4a47d962755df17c14d4"/></dir><file name="Log.php" hash="78b2b64a97bb8f6fa76afd60c6a5757f"/><file name="Reviews.php" hash="f5237ea23f972634b63cb3aeadb4a0ec"/><file name="Stats.php" hash="071d7308b21fe3069f262b9105597a89"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="91c88ae96b609900a6b53ecfff8e2828"/><file name="Category.php" hash="2fe30678feee498bd105d259cadae215"/><file name="Cronfrequency.php" hash="f126c7c010109380e6f6ef811e62ee7c"/><file name="Cronfrequencylong.php" hash="98f8af8e23c22f1cc9adc678d1d8097c"/><file name="Orderstatus.php" hash="a5e23aa216840cf22c545ba024da3d7e"/><file name="Position.php" hash="32dba14b3fbba1b4e16836b5c9c25807"/><file name="Reviewlink.php" hash="d5d8ad2ab7e11a13b980288b34c6eba7"/><file name="Reviewrating.php" hash="1f7712ec677f95ada3450bcdc8c5c837"/><file name="Reviewstatus.php" hash="fa704d1e65eb64b01ad54bbc79e8c020"/><file name="Sidebarlink.php" hash="19eeff07235ee02fea3634e0f32e10a7"/></dir></dir></dir><file name="Api.php" hash="2a4150a5c48cde0331780e6f9aeb9fc4"/><file name="Log.php" hash="4280f12a6802bdb2d438d1ef0623daa0"/><file name="Observer.php" hash="af8d0290560fd2bde6e2ac7442888762"/><file name="Productreviews.php" hash="eb332d8b82125d80cbbb2a594470ee39"/><file name="Reviews.php" hash="e4a7a8a9e3d8bb71c679e6daa95edb58"/><file name="Stats.php" hash="ec42f45afdc036c5ef5a9e89c7b4bc84"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeedbacklogController.php" hash="20d556f96f108ebfbaec6b62288fbd5e"/><file name="FeedbackreviewsController.php" hash="89e0ce0793c6b237aa66b09a7b336061"/></dir><file name="IndexController.php" hash="b388778f34531a73e8fc2fc91a6a784c"/></dir><dir name="data"><dir name="feedbackcompany_setup"><file name="data-upgrade-1.4.1-1.4.2.php" hash="d465809c3677737fa92d60c50ae0d1ff"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="f62877d5fa2eaa083ffaebc15d8256c9"/><file name="config.xml" hash="88f4f89afa2bb1c2b5b480baa39852ab"/><file name="system.xml" hash="cd14a037f77b05502f20785730c363e9"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="e5e350306db02211bf1926ccb46d62fb"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="d2823271b6fcdbe69212c58bbe99ab65"/><file name="mysql4-upgrade-1.2.5-1.2.6.php" hash="0b7697b895677239dd9b4378e7578b90"/><file name="mysql4-upgrade-1.3.0-1.3.1.php" hash="32d63d431f7987492f31502ec1939599"/></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="3cca540d05eb59dab5ab24278841833a"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="sidebar"><file name="left.phtml" hash="8c235d9ffd16096f50c2e36054bdf8f9"/><file name="right.phtml" hash="383c7db6e01441cddbbe07b2914a84a6"/></dir><dir name="widget"><file name="header.phtml" hash="cd1c71fe6c9a0f0b28ccc5951da027fb"/><file name="medium.phtml" hash="d9e0025c3c189e9ad3b512fbfc7c59dd"/><file name="sidebar.phtml" hash="852632fc6b4f223f42459da0498efd9f"/><file name="small.phtml" hash="b6e07949b3bccbd244651328a329f33e"/></dir><file name="index.phtml" hash="35e543c38a0ef1732463e6c8019cdd3e"/></dir></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="template"><dir name="magmodules"><file name="feedbackcompany" hash=""/></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="bcf891696a8602a49ef00ec0440b944a"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Feedbackcompany.csv" hash="6399ccf57bfc824ab3f8431a48ee9767"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="524f4c92f5e15f3633e2c3221ef08702"/></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="6c8d46ba30a7ae87dcb75db12830b33f"/><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="d41d8cd98f00b204e9800998ecf8427e"/><file name="sidebar.css" hash="38c395e51070701e5d2d56e789a9f159"/><file name="style.css" hash="53c93412d6fb3025bd54c2b4ee13a645"/></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>
|