Version Notes
First stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | Magmodules_Feedbackcompany |
Version | 1.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.2
- app/code/local/Magmodules/Feedbackcompany/Block/Sidebar.php +4 -2
- app/code/local/Magmodules/Feedbackcompany/Helper/Data.php +3 -1
- app/code/local/Magmodules/Feedbackcompany/Model/Api.php +7 -3
- app/code/local/Magmodules/Feedbackcompany/Model/Observer.php +15 -11
- app/code/local/Magmodules/Feedbackcompany/Model/Stats.php +5 -3
- app/code/local/Magmodules/Feedbackcompany/etc/config.xml +2 -1
- app/code/local/Magmodules/Feedbackcompany/etc/system.xml +1 -3
- app/code/local/Magmodules/Feedbackcompany/sql/feedbackcompany_setup/mysql4-upgrade-1.2.1-1.2.2.php +32 -0
- app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/medium.phtml +25 -4
- app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/sidebar.phtml +6 -1
- app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/small.phtml +15 -2
- app/locale/en_US/Magmodules_Feedbackcompany.csv +11 -0
- app/locale/nl_NL/Magmodules_Feedbackcompany.csv +17 -1
- package.xml +4 -4
- skin/frontend/base/default/magmodules/feedbackcompany/sidebar.css +5 -2
app/code/local/Magmodules/Feedbackcompany/Block/Sidebar.php
CHANGED
@@ -69,7 +69,9 @@ class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template
|
|
69 |
}
|
70 |
|
71 |
function getReviewsUrl($sidebar = 'left') {
|
72 |
-
|
|
|
|
|
73 |
if($sidebar == 'left'):
|
74 |
$link = Mage::getStoreConfig('feedbackcompany/sidebar/left_link');
|
75 |
endif;
|
@@ -85,7 +87,7 @@ class Magmodules_Feedbackcompany_Block_Sidebar extends Mage_Core_Block_Template
|
|
85 |
endif;
|
86 |
|
87 |
if($url) {
|
88 |
-
return '<a href="' . $url . '">' . $this->__('View all reviews') . '</a>';
|
89 |
} else {
|
90 |
return false;
|
91 |
}
|
69 |
}
|
70 |
|
71 |
function getReviewsUrl($sidebar = 'left') {
|
72 |
+
|
73 |
+
$url = '';
|
74 |
+
|
75 |
if($sidebar == 'left'):
|
76 |
$link = Mage::getStoreConfig('feedbackcompany/sidebar/left_link');
|
77 |
endif;
|
87 |
endif;
|
88 |
|
89 |
if($url) {
|
90 |
+
return '<a href="' . $url . '" target="_blank">' . $this->__('View all reviews') . '</a>';
|
91 |
} else {
|
92 |
return false;
|
93 |
}
|
app/code/local/Magmodules/Feedbackcompany/Helper/Data.php
CHANGED
@@ -164,7 +164,9 @@ class Magmodules_Feedbackcompany_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
164 |
if($char_limit > 1) {
|
165 |
$url = $this->getReviewsUrl($sidebar);
|
166 |
$content = Mage::helper('core/string')->truncate($content, $char_limit, ' ...', $_remainder, false);
|
167 |
-
$
|
|
|
|
|
168 |
}
|
169 |
return $content;
|
170 |
}
|
164 |
if($char_limit > 1) {
|
165 |
$url = $this->getReviewsUrl($sidebar);
|
166 |
$content = Mage::helper('core/string')->truncate($content, $char_limit, ' ...', $_remainder, false);
|
167 |
+
if($url) {
|
168 |
+
$content .= ' <a href="' . $url . '" target="_blank">' . $this->__('Read More') . '</a>';
|
169 |
+
}
|
170 |
}
|
171 |
return $content;
|
172 |
}
|
app/code/local/Magmodules/Feedbackcompany/Model/Api.php
CHANGED
@@ -65,12 +65,13 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
|
|
65 |
$date_order = Mage::getModel('core/date')->timestamp($order->getCreatedAt());
|
66 |
$date_diff = (($date_order - $date_now) / 86400);
|
67 |
$backlog = Mage::getStoreConfig('feedbackcompany/invitation/backlog', $store_id);
|
68 |
-
|
|
|
69 |
if($backlog < 1) {
|
70 |
$backlog = 30;
|
71 |
}
|
72 |
|
73 |
-
if(($order->getStatus() == $inv_status) && ($date_diff < $backlog)) {
|
74 |
|
75 |
$start_time = microtime(true);
|
76 |
$crontype = 'orderupdate';
|
@@ -198,7 +199,10 @@ class Magmodules_Feedbackcompany_Model_Api extends Mage_Core_Model_Abstract {
|
|
198 |
curl_close($feedbackconnect);
|
199 |
|
200 |
if($response) {
|
201 |
-
$response_html = $response;
|
|
|
|
|
|
|
202 |
} else {
|
203 |
$response_html = 'No response from https://connect.feedbackcompany.nl';
|
204 |
}
|
65 |
$date_order = Mage::getModel('core/date')->timestamp($order->getCreatedAt());
|
66 |
$date_diff = (($date_order - $date_now) / 86400);
|
67 |
$backlog = Mage::getStoreConfig('feedbackcompany/invitation/backlog', $store_id);
|
68 |
+
$sent = $order->getFeedbackSent();
|
69 |
+
|
70 |
if($backlog < 1) {
|
71 |
$backlog = 30;
|
72 |
}
|
73 |
|
74 |
+
if(($order->getStatus() == $inv_status) && ($date_diff < $backlog) && (!$sent)) {
|
75 |
|
76 |
$start_time = microtime(true);
|
77 |
$crontype = 'orderupdate';
|
199 |
curl_close($feedbackconnect);
|
200 |
|
201 |
if($response) {
|
202 |
+
$response_html = $response;
|
203 |
+
if($response_html == 'Request OK.') {
|
204 |
+
$order->setFeedbackSent(1)->save();
|
205 |
+
}
|
206 |
} else {
|
207 |
$response_html = 'No response from https://connect.feedbackcompany.nl';
|
208 |
}
|
app/code/local/Magmodules/Feedbackcompany/Model/Observer.php
CHANGED
@@ -89,13 +89,15 @@ class Magmodules_Feedbackcompany_Model_Observer {
|
|
89 |
$order = $shipment->getOrder();
|
90 |
if((Mage::getStoreConfig('feedbackcompany/invitation/enabled', $order->getStoreId())) && (Mage::getStoreConfig('feedbackcompany/invitation/connector', $order->getStoreId()))):
|
91 |
if($order->getStatus() == Mage::getStoreConfig('feedbackcompany/invitation/status', $order->getStoreId())):
|
92 |
-
if(
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
95 |
Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
96 |
endif;
|
97 |
-
else:
|
98 |
-
Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
99 |
endif;
|
100 |
endif;
|
101 |
endif;
|
@@ -105,13 +107,15 @@ class Magmodules_Feedbackcompany_Model_Observer {
|
|
105 |
$order = $observer->getEvent()->getOrder();
|
106 |
if((Mage::getStoreConfig('feedbackcompany/invitation/enabled', $order->getStoreId())) && (Mage::getStoreConfig('feedbackcompany/invitation/connector', $order->getStoreId()))):
|
107 |
if($order->getStatus() == Mage::getStoreConfig('feedbackcompany/invitation/status', $order->getStoreId())):
|
108 |
-
if(
|
109 |
-
|
110 |
-
|
111 |
-
$
|
|
|
|
|
|
|
|
|
112 |
endif;
|
113 |
-
else:
|
114 |
-
Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
115 |
endif;
|
116 |
endif;
|
117 |
endif;
|
89 |
$order = $shipment->getOrder();
|
90 |
if((Mage::getStoreConfig('feedbackcompany/invitation/enabled', $order->getStoreId())) && (Mage::getStoreConfig('feedbackcompany/invitation/connector', $order->getStoreId()))):
|
91 |
if($order->getStatus() == Mage::getStoreConfig('feedbackcompany/invitation/status', $order->getStoreId())):
|
92 |
+
if(!$order->getFeedbackSent()):
|
93 |
+
if(Mage::getStoreConfig('feedbackcompany/invitation/backlog', $order->getStoreId()) > 0):
|
94 |
+
$date_diff = floor(time() - strtotime($order->getCreatedAt()))/(60*60*24);
|
95 |
+
if($date_diff < Mage::getStoreConfig('feedbackcompany/invitation/backlog', $order->getStoreId())):
|
96 |
+
Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
97 |
+
endif;
|
98 |
+
else:
|
99 |
Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
100 |
endif;
|
|
|
|
|
101 |
endif;
|
102 |
endif;
|
103 |
endif;
|
107 |
$order = $observer->getEvent()->getOrder();
|
108 |
if((Mage::getStoreConfig('feedbackcompany/invitation/enabled', $order->getStoreId())) && (Mage::getStoreConfig('feedbackcompany/invitation/connector', $order->getStoreId()))):
|
109 |
if($order->getStatus() == Mage::getStoreConfig('feedbackcompany/invitation/status', $order->getStoreId())):
|
110 |
+
if(!$order->getFeedbackSent()):
|
111 |
+
if(Mage::getStoreConfig('feedbackcompany/invitation/backlog', $order->getStoreId()) > 0):
|
112 |
+
$date_diff = floor(time() - strtotime($order->getCreatedAt()))/(60*60*24);
|
113 |
+
if($date_diff < Mage::getStoreConfig('feedbackcompany/invitation/backlog', $order->getStoreId())):
|
114 |
+
$value = Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
115 |
+
endif;
|
116 |
+
else:
|
117 |
+
Mage::getModel('feedbackcompany/api')->sendInvitation($order);
|
118 |
endif;
|
|
|
|
|
119 |
endif;
|
120 |
endif;
|
121 |
endif;
|
app/code/local/Magmodules/Feedbackcompany/Model/Stats.php
CHANGED
@@ -85,9 +85,11 @@ class Magmodules_Feedbackcompany_Model_Stats extends Mage_Core_Model_Abstract {
|
|
85 |
$i++;
|
86 |
}
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
|
|
91 |
|
92 |
if($indatabase = $this->loadbyShopId(0)) {
|
93 |
$id = $indatabase->getId();
|
85 |
$i++;
|
86 |
}
|
87 |
|
88 |
+
if($i > 0) {
|
89 |
+
$score = ($score / $i);
|
90 |
+
$scoremax = ($scoremax / $i);
|
91 |
+
$company = 'Overall';
|
92 |
+
}
|
93 |
|
94 |
if($indatabase = $this->loadbyShopId(0)) {
|
95 |
$id = $indatabase->getId();
|
app/code/local/Magmodules/Feedbackcompany/etc/config.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Feedbackcompany>
|
26 |
-
<version>1.2.
|
27 |
</Magmodules_Feedbackcompany>
|
28 |
</modules>
|
29 |
<global>
|
@@ -51,6 +51,7 @@
|
|
51 |
<feedbackcompany_setup>
|
52 |
<setup>
|
53 |
<module>Magmodules_Feedbackcompany</module>
|
|
|
54 |
</setup>
|
55 |
<connection>
|
56 |
<use>core_setup</use>
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Magmodules_Feedbackcompany>
|
26 |
+
<version>1.2.2</version>
|
27 |
</Magmodules_Feedbackcompany>
|
28 |
</modules>
|
29 |
<global>
|
51 |
<feedbackcompany_setup>
|
52 |
<setup>
|
53 |
<module>Magmodules_Feedbackcompany</module>
|
54 |
+
<class>Mage_Sales_Model_Mysql4_Setup</class>
|
55 |
</setup>
|
56 |
<connection>
|
57 |
<use>core_setup</use>
|
app/code/local/Magmodules/Feedbackcompany/etc/system.xml
CHANGED
@@ -229,7 +229,6 @@
|
|
229 |
<show_in_website>1</show_in_website>
|
230 |
<show_in_store>1</show_in_store>
|
231 |
<depends><left>1</left></depends>
|
232 |
-
<comment>You can only activate the Rich Snippets when this block is shown on your Homepage only</comment>
|
233 |
</left_snippets>
|
234 |
<left_link translate="label">
|
235 |
<label>Link to</label>
|
@@ -289,7 +288,7 @@
|
|
289 |
<depends><right>1</right></depends>
|
290 |
</right_link>
|
291 |
<right_snippets translate="label">
|
292 |
-
<label>Add
|
293 |
<frontend_type>select</frontend_type>
|
294 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
295 |
<sort_order>66</sort_order>
|
@@ -297,7 +296,6 @@
|
|
297 |
<show_in_website>1</show_in_website>
|
298 |
<show_in_store>1</show_in_store>
|
299 |
<depends><right>1</right></depends>
|
300 |
-
<comment>You can only activate the Rich Snippets when this block is shown on your Homepage only</comment>
|
301 |
</right_snippets>
|
302 |
</fields>
|
303 |
</sidebar>
|
229 |
<show_in_website>1</show_in_website>
|
230 |
<show_in_store>1</show_in_store>
|
231 |
<depends><left>1</left></depends>
|
|
|
232 |
</left_snippets>
|
233 |
<left_link translate="label">
|
234 |
<label>Link to</label>
|
288 |
<depends><right>1</right></depends>
|
289 |
</right_link>
|
290 |
<right_snippets translate="label">
|
291 |
+
<label>Add Rich Snippets</label>
|
292 |
<frontend_type>select</frontend_type>
|
293 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
294 |
<sort_order>66</sort_order>
|
296 |
<show_in_website>1</show_in_website>
|
297 |
<show_in_store>1</show_in_store>
|
298 |
<depends><right>1</right></depends>
|
|
|
299 |
</right_snippets>
|
300 |
</fields>
|
301 |
</sidebar>
|
app/code/local/Magmodules/Feedbackcompany/sql/feedbackcompany_setup/mysql4-upgrade-1.2.1-1.2.2.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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) 2015 (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 |
+
$installer->startSetup();
|
24 |
+
$this->addAttribute('order', 'feedback_sent', array(
|
25 |
+
'type' => 'date',
|
26 |
+
'label' => 'Feedbackcompany Connect',
|
27 |
+
'visible' => false,
|
28 |
+
'required' => false,
|
29 |
+
'visible_on_front' => false,
|
30 |
+
'user_defined' => false
|
31 |
+
));
|
32 |
+
$installer->endSetup();
|
app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/medium.phtml
CHANGED
@@ -19,15 +19,26 @@
|
|
19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
*/
|
21 |
$total = $this->getTotals();
|
|
|
22 |
?>
|
23 |
<div class="feedbackcompany-medium-widget">
|
24 |
<div class="feedbackcompany-medium-widget-content">
|
25 |
<?php if($this->getSnippetsEnabled('medium')) { ?>
|
26 |
<div itemscope itemtype="http://schema.org/WebPage">
|
27 |
-
|
|
|
|
|
|
|
|
|
28 |
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
29 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'medium'); ?>
|
30 |
-
<p class="feedbackcompany-text"
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
<?php if($review = $this->getLatestReview()) { ?>
|
32 |
<?php echo $this->formatContent($review, 'medium'); ?>
|
33 |
<p class="client-details"><?php echo $review->getCustomerName() . ', ' . Mage::helper('core')->formatDate($review->getDateCreated(), 'medium', false); ?></p>
|
@@ -35,9 +46,19 @@
|
|
35 |
</div>
|
36 |
</div>
|
37 |
<?php } else { ?>
|
38 |
-
|
|
|
|
|
|
|
|
|
39 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'medium'); ?>
|
40 |
-
<p class="feedbackcompany-text"
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
<?php if($review = $this->getLatestReview()) { ?>
|
42 |
<?php echo $this->formatContent($review, 'medium'); ?>
|
43 |
<p class="client-details"><?php echo $review->getCustomerName() . ', ' . Mage::helper('core')->formatDate($review->getDateCreated(), 'medium', false); ?></p>
|
19 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
*/
|
21 |
$total = $this->getTotals();
|
22 |
+
$link = $this->getReviewsUrl('medium');
|
23 |
?>
|
24 |
<div class="feedbackcompany-medium-widget">
|
25 |
<div class="feedbackcompany-medium-widget-content">
|
26 |
<?php if($this->getSnippetsEnabled('medium')) { ?>
|
27 |
<div itemscope itemtype="http://schema.org/WebPage">
|
28 |
+
<?php if($link) { ?>
|
29 |
+
<a href="<?php echo $link; ?>" target="_blank"><img src="<?php echo $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png'); ?>" class="feedbackcompany-medium-image"></a>
|
30 |
+
<?php } else { ?>
|
31 |
+
<img src="<?php echo $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png'); ?>" class="feedbackcompany-medium-image">
|
32 |
+
<?php } ?>
|
33 |
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
34 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'medium'); ?>
|
35 |
+
<p class="feedbackcompany-small-text">
|
36 |
+
<?php if($link) { ?>
|
37 |
+
<?php echo $this->__('Reviews from customers: %s - <a href="%s" target="_blank">%s reviews</a>', '<span itemprop="ratingValue">' . $total->getStarsQty() . '</span> / <span itemprop="bestRating">10</span>', $link, '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?>
|
38 |
+
<?php } else { ?>
|
39 |
+
<?php echo $this->__('Reviews from customers: %s - %s reviews', '<span itemprop="ratingValue">' . $total->getStarsQty() . '</span> / <span itemprop="bestRating">10</span>', '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?>
|
40 |
+
<?php } ?>
|
41 |
+
</p>
|
42 |
<?php if($review = $this->getLatestReview()) { ?>
|
43 |
<?php echo $this->formatContent($review, 'medium'); ?>
|
44 |
<p class="client-details"><?php echo $review->getCustomerName() . ', ' . Mage::helper('core')->formatDate($review->getDateCreated(), 'medium', false); ?></p>
|
46 |
</div>
|
47 |
</div>
|
48 |
<?php } else { ?>
|
49 |
+
<?php if($link) { ?>
|
50 |
+
<a href="<?php echo $link; ?>" target="_blank"><img src="<?php echo $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png'); ?>" class="feedbackcompany-medium-image"></a>
|
51 |
+
<?php } else { ?>
|
52 |
+
<img src="<?php echo $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png'); ?>" class="feedbackcompany-medium-image">
|
53 |
+
<?php } ?>
|
54 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'medium'); ?>
|
55 |
+
<p class="feedbackcompany-small-text">
|
56 |
+
<?php if($link) { ?>
|
57 |
+
<?php echo $this->__('Reviews from customers: %s - <a href="%s" target="_blank">%s reviews</a>', $total->getStarsQty() . ' / 10', $link, $total->getVotes()); ?>
|
58 |
+
<?php } else { ?>
|
59 |
+
<?php echo $this->__('Reviews from customers: %s - %s reviews', $total->getStarsQty() . ' / 10', $total->getVotes()); ?>
|
60 |
+
<?php } ?>
|
61 |
+
</p>
|
62 |
<?php if($review = $this->getLatestReview()) { ?>
|
63 |
<?php echo $this->formatContent($review, 'medium'); ?>
|
64 |
<p class="client-details"><?php echo $review->getCustomerName() . ', ' . Mage::helper('core')->formatDate($review->getDateCreated(), 'medium', false); ?></p>
|
app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/sidebar.phtml
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
*/
|
21 |
$sidebarreviews = $this->getReviews();
|
22 |
$total = $this->getTotals();
|
|
|
23 |
?>
|
24 |
<div>
|
25 |
<div class="block feedbackcompany-sidebar">
|
@@ -58,7 +59,11 @@
|
|
58 |
</div>
|
59 |
<?php endforeach; ?>
|
60 |
<div class="block-content">
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
</div>
|
63 |
</div>
|
64 |
</div>
|
20 |
*/
|
21 |
$sidebarreviews = $this->getReviews();
|
22 |
$total = $this->getTotals();
|
23 |
+
$link = $this->getReviewsUrl('sidebar');
|
24 |
?>
|
25 |
<div>
|
26 |
<div class="block feedbackcompany-sidebar">
|
59 |
</div>
|
60 |
<?php endforeach; ?>
|
61 |
<div class="block-content">
|
62 |
+
<?php if($link) { ?>
|
63 |
+
<a href="<?php echo $link; ?>" target="_blank"><img src="<?php echo $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png'); ?>" class="feedbackcompany-logo"></a>
|
64 |
+
<?php } else { ?>
|
65 |
+
<img src="<?php echo $this->getSkinUrl('magmodules/feedbackcompany/images/logo.png'); ?>" class="feedbackcompany-logo">
|
66 |
+
<?php } ?>
|
67 |
</div>
|
68 |
</div>
|
69 |
</div>
|
app/design/frontend/base/default/template/magmodules/feedbackcompany/widget/small.phtml
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
*/
|
22 |
$total = $this->getTotals();
|
|
|
23 |
?>
|
24 |
<div class="feedbackcompany-small-widget">
|
25 |
<?php if($this->getSnippetsEnabled('small')) { ?>
|
@@ -27,12 +28,24 @@
|
|
27 |
<div class="feedbackcompany-small-score">
|
28 |
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
29 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'small'); ?>
|
30 |
-
<p class="feedbackcompany-small-text"
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
</div>
|
32 |
</div>
|
33 |
</div>
|
34 |
<?php } else { ?>
|
35 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'small'); ?>
|
36 |
-
<p class="feedbackcompany-small-text"
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
<?php } ?>
|
38 |
</div>
|
20 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
*/
|
22 |
$total = $this->getTotals();
|
23 |
+
$link = $this->getReviewsUrl('small');
|
24 |
?>
|
25 |
<div class="feedbackcompany-small-widget">
|
26 |
<?php if($this->getSnippetsEnabled('small')) { ?>
|
28 |
<div class="feedbackcompany-small-score">
|
29 |
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
30 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'small'); ?>
|
31 |
+
<p class="feedbackcompany-small-text">
|
32 |
+
<?php if($link) { ?>
|
33 |
+
<?php echo $this->__('Reviews from customers: %s - <a href="%s" target="_blank">%s reviews</a>', '<span itemprop="ratingValue">' . $total->getStarsQty() . '</span> / <span itemprop="bestRating">10</span>', $link, '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?>
|
34 |
+
<?php } else { ?>
|
35 |
+
<?php echo $this->__('Reviews from customers: %s - %s reviews', '<span itemprop="ratingValue">' . $total->getStarsQty() . '</span> / <span itemprop="bestRating">10</span>', '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?>
|
36 |
+
<?php } ?>
|
37 |
+
</p>
|
38 |
</div>
|
39 |
</div>
|
40 |
</div>
|
41 |
<?php } else { ?>
|
42 |
<?php echo $this->getHtmlStars($total->getPercentage(), 'small'); ?>
|
43 |
+
<p class="feedbackcompany-small-text">
|
44 |
+
<?php if($link) { ?>
|
45 |
+
<?php echo $this->__('Reviews from customers: %s - <a href="%s" target="_blank">%s reviews</a>', $total->getStarsQty() . ' / 10', $link, $total->getVotes()); ?>
|
46 |
+
<?php } else { ?>
|
47 |
+
<?php echo $this->__('Reviews from customers: %s - %s reviews', $total->getStarsQty() . ' / 10', $total->getVotes()); ?>
|
48 |
+
<?php } ?>
|
49 |
+
</p>
|
50 |
<?php } ?>
|
51 |
</div>
|
app/locale/en_US/Magmodules_Feedbackcompany.csv
CHANGED
@@ -13,6 +13,7 @@
|
|
13 |
"Api URL","Api URL"
|
14 |
"Are you sure you want to cleanup logfiles?","Are you sure you want to cleanup logfiles?"
|
15 |
"Are you sure you want to delete all reviews?","Are you sure you want to delete all reviews?"
|
|
|
16 |
"Auto Cleaning","Auto Cleaning"
|
17 |
"Below minimum order value","Below minimum order value"
|
18 |
"Category is excluded","Category is excluded"
|
@@ -92,6 +93,9 @@
|
|
92 |
"Resend if Double","Resend if Double"
|
93 |
"Review","Review"
|
94 |
"Reviews","Reviews"
|
|
|
|
|
|
|
95 |
"Reviews Cron","Reviews Cron"
|
96 |
"Review Link Text","Review Link Text"
|
97 |
"Rich Snippets is a schema.org markup that makes it possible to give richer and more specific information. <br/> The Rich Snippets will show your store rating in the google search engine results. <br/><br/>Use: {{block type=""feedbackcompany/snippets"" name=""webwinkelsnippets""}} to call the block on the homepage.<br/><br/>","Rich Snippets is a schema.org markup that makes it possible to give richer and more specific information. <br/> The Rich Snippets will show your store rating in the google search engine results. <br/><br/>Use: {{block type=""feedbackcompany/snippets"" name=""webwinkelsnippets""}} to call the block on the homepage.<br/><br/>"
|
@@ -139,6 +143,7 @@
|
|
139 |
"Use the Magento Cronjob to use the automatically import. A cronjob is a daemon which keeps running and gets activated at a said interval (time period). Please make sure your default Magento Cron is working. If not, contact your hosting company for help.","Use the Magento Cronjob to use the automatically import. A cronjob is a daemon which keeps running and gets activated at a said interval (time period). Please make sure your default Magento Cron is working. If not, contact your hosting company for help."
|
140 |
"User","User"
|
141 |
"View all reviews","View all reviews"
|
|
|
142 |
"Webwinkel ID %s:","Webwinkel ID %s:"
|
143 |
"Webwinkel ID %s: no updates found, feed is empty or not found!","Webwinkel ID %s: no updates found, feed is empty or not found!"
|
144 |
"You can find this information in your The Feedback Company account","You can find this information in your The Feedback Company account"
|
@@ -154,3 +159,9 @@
|
|
154 |
"on","on"
|
155 |
"total score updated","total score updated"
|
156 |
"<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>"
|
|
|
|
|
|
|
|
|
|
|
|
13 |
"Api URL","Api URL"
|
14 |
"Are you sure you want to cleanup logfiles?","Are you sure you want to cleanup logfiles?"
|
15 |
"Are you sure you want to delete all reviews?","Are you sure you want to delete all reviews?"
|
16 |
+
"Based on %s reviews","Based on %s reviews"
|
17 |
"Auto Cleaning","Auto Cleaning"
|
18 |
"Below minimum order value","Below minimum order value"
|
19 |
"Category is excluded","Category is excluded"
|
93 |
"Resend if Double","Resend if Double"
|
94 |
"Review","Review"
|
95 |
"Reviews","Reviews"
|
96 |
+
"Reviews from customers: %s - %s reviews","Reviews from customers: %s - %s reviews"
|
97 |
+
"Reviews from customers: %s - %s reviews"
|
98 |
+
"Reviews from customers: %s - <a href=""%s"" target=""_blank"">%s reviews</a>","Reviews from customers: %s - <a href=""%s"" target=""_blank"">%s reviews</a>"
|
99 |
"Reviews Cron","Reviews Cron"
|
100 |
"Review Link Text","Review Link Text"
|
101 |
"Rich Snippets is a schema.org markup that makes it possible to give richer and more specific information. <br/> The Rich Snippets will show your store rating in the google search engine results. <br/><br/>Use: {{block type=""feedbackcompany/snippets"" name=""webwinkelsnippets""}} to call the block on the homepage.<br/><br/>","Rich Snippets is a schema.org markup that makes it possible to give richer and more specific information. <br/> The Rich Snippets will show your store rating in the google search engine results. <br/><br/>Use: {{block type=""feedbackcompany/snippets"" name=""webwinkelsnippets""}} to call the block on the homepage.<br/><br/>"
|
143 |
"Use the Magento Cronjob to use the automatically import. A cronjob is a daemon which keeps running and gets activated at a said interval (time period). Please make sure your default Magento Cron is working. If not, contact your hosting company for help.","Use the Magento Cronjob to use the automatically import. A cronjob is a daemon which keeps running and gets activated at a said interval (time period). Please make sure your default Magento Cron is working. If not, contact your hosting company for help."
|
144 |
"User","User"
|
145 |
"View all reviews","View all reviews"
|
146 |
+
"Write review","Schrijf Beoordeling"
|
147 |
"Webwinkel ID %s:","Webwinkel ID %s:"
|
148 |
"Webwinkel ID %s: no updates found, feed is empty or not found!","Webwinkel ID %s: no updates found, feed is empty or not found!"
|
149 |
"You can find this information in your The Feedback Company account","You can find this information in your The Feedback Company account"
|
159 |
"on","on"
|
160 |
"total score updated","total score updated"
|
161 |
"<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>"
|
162 |
+
"Information on the website","Information on the website"
|
163 |
+
"Ease of ordering","Ease of ordering"
|
164 |
+
"Delivery speed","Delivery speed"
|
165 |
+
"Order status updates","Order status updates"
|
166 |
+
"Customer-friendly","Customer-friendly"
|
167 |
+
"Response time","Response time"
|
app/locale/nl_NL/Magmodules_Feedbackcompany.csv
CHANGED
@@ -14,6 +14,7 @@
|
|
14 |
"Are you sure you want to cleanup logfiles?","Definitief de logfiles opschonen?"
|
15 |
"Are you sure you want to delete all reviews?","Definitief alle beoordelingen verwijderen?"
|
16 |
"Auto Cleaning","Automatisch opruimen"
|
|
|
17 |
"Below minimum order value","Beneden het minimale orderbedrag"
|
18 |
"Category is excluded","Categorie is uitgesloten"
|
19 |
"Can do better:","Kan beter doen:"
|
@@ -92,6 +93,8 @@
|
|
92 |
"Resend if Double","Stuur opnieuw indien dubbel"
|
93 |
"Review","Beoordeling"
|
94 |
"Reviews","Beoordelingen"
|
|
|
|
|
95 |
"Reviews Cron","Beoordeling Cron"
|
96 |
"Right","Rechts"
|
97 |
"Review Link Text","Beoordeling link tekst"
|
@@ -139,6 +142,8 @@
|
|
139 |
"User","Gebruiker"
|
140 |
"View all reviews","Bekijk alle beoordelingen"
|
141 |
"Webwinkel ID %s:","Webwinkel ID %s:"
|
|
|
|
|
142 |
"Webwinkel ID %s: no updates found, feed is empty or not found!","Webwinkel ID %s: geen updates gevonden, feed is leeg of niet beschikbaar."
|
143 |
"You can find this information in your The Feedback Company account","U kunt deze informatie terugvinden in uw The Feedback Company account"
|
144 |
"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."
|
@@ -152,4 +157,15 @@
|
|
152 |
"and total score updated.","totaal score geüpdate."
|
153 |
"on","aan"
|
154 |
"total score updated","totaal score geüpdate"
|
155 |
-
"<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>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
"Are you sure you want to cleanup logfiles?","Definitief de logfiles opschonen?"
|
15 |
"Are you sure you want to delete all reviews?","Definitief alle beoordelingen verwijderen?"
|
16 |
"Auto Cleaning","Automatisch opruimen"
|
17 |
+
"Based on %s reviews","Gebaseerd op %s beoordelingen"
|
18 |
"Below minimum order value","Beneden het minimale orderbedrag"
|
19 |
"Category is excluded","Categorie is uitgesloten"
|
20 |
"Can do better:","Kan beter doen:"
|
93 |
"Resend if Double","Stuur opnieuw indien dubbel"
|
94 |
"Review","Beoordeling"
|
95 |
"Reviews","Beoordelingen"
|
96 |
+
"Reviews from customers: %s - %s reviews","Klantenscore %s op basis van %s beoordelingen"
|
97 |
+
"Reviews from customers: %s - <a href=""%s"" target=""_blank"">%s reviews</a>","Klantenscore: %s op basis van <a href=""%s"" target=""_blank"">%s beoordelingen</a>"
|
98 |
"Reviews Cron","Beoordeling Cron"
|
99 |
"Right","Rechts"
|
100 |
"Review Link Text","Beoordeling link tekst"
|
142 |
"User","Gebruiker"
|
143 |
"View all reviews","Bekijk alle beoordelingen"
|
144 |
"Webwinkel ID %s:","Webwinkel ID %s:"
|
145 |
+
"View all reviews","Bekijk alle beoordelingen"
|
146 |
+
"Write review","Schrijf beoordeling"
|
147 |
"Webwinkel ID %s: no updates found, feed is empty or not found!","Webwinkel ID %s: geen updates gevonden, feed is leeg of niet beschikbaar."
|
148 |
"You can find this information in your The Feedback Company account","U kunt deze informatie terugvinden in uw The Feedback Company account"
|
149 |
"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."
|
157 |
"and total score updated.","totaal score geüpdate."
|
158 |
"on","aan"
|
159 |
"total score updated","totaal score geüpdate"
|
160 |
+
"<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>"
|
161 |
+
"Friendlyness","Vriendelijkheid"
|
162 |
+
"Leadtime","Levertijd"
|
163 |
+
"Responsetime","Reactiesnelheid"
|
164 |
+
"Order Process","Order Process"
|
165 |
+
"Aftersales","After sales"
|
166 |
+
"Information on the website","Informatie op de website"
|
167 |
+
"Ease of ordering","Bestelgemak"
|
168 |
+
"Delivery speed","Snelheid levering"
|
169 |
+
"Order status updates","Info over verloop order"
|
170 |
+
"Customer-friendly","Klantvriendelijkheid"
|
171 |
+
"Response time","Reactiesnelheid"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Feedbackcompany</name>
|
4 |
-
<version>1.2.
|
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>2015-04-
|
14 |
-
<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"/><file name="Note.php" hash="974eaf447da64ec78001cd91f3cc3827"/></dir><dir name="Grid"><file name="Log.php" hash="ceff6fe31ea786257d1fd1c5c7a4ef82"/><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="81c71fd897e67911da525be8e9e8d4a1"/><file name="Reviews.php" hash="9393b1ffb4f9514cad46a51db24e6ab4"/><file name="Sidebar.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Feedbackcompany</name>
|
4 |
+
<version>1.2.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>2015-04-24</date>
|
14 |
+
<time>13:47:48</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"/><file name="Note.php" hash="974eaf447da64ec78001cd91f3cc3827"/></dir><dir name="Grid"><file name="Log.php" hash="ceff6fe31ea786257d1fd1c5c7a4ef82"/><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="81c71fd897e67911da525be8e9e8d4a1"/><file name="Reviews.php" hash="9393b1ffb4f9514cad46a51db24e6ab4"/><file name="Sidebar.php" hash="2cf37dc01dbde2a192f1b3a7f81c60c8"/></dir><dir name="Helper"><file name="Data.php" hash="1364831227cc724d3e8bdeca62d3451b"/></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="Attribute.php" hash="de511d86d47ae252e3097c335302c294"/><file name="Category.php" hash="43e5e5d69b764e9c93f9089e0ec64d26"/><file name="Cronfrequency.php" hash="80f7f624a17328052b156c7fde67ff7a"/><file name="Orderstatus.php" hash="64429a1804e1bc5ec2f0ea89e7627fc8"/><file name="Position.php" hash="3c11a9fba6006528bb904036ca87f619"/><file name="Reviewlink.php" hash="87122c1414c49a24222288fe3e96216c"/><file name="Sidebarlink.php" hash="9e1a817b4253645b5632306ffd89dd03"/></dir></dir></dir><file name="Api.php" hash="145849678951add55a82fbffcfa33318"/><file name="Log.php" hash="e64de82f87f3830914240e24ccbfb402"/><file name="Observer.php" hash="c781a64b5308663af8c4958d25d2b8ae"/><file name="Reviews.php" hash="d144787d65c37508296f731107841c84"/><file name="Stats.php" hash="1acf7b22daf0e46aa1379b540ca3bfdc"/></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="2d1b110457d2285abddf73141d157a89"/><file name="system.xml" hash="83fcd0142e450f2e166019fa24bab16b"/></dir><dir name="sql"><dir name="feedbackcompany_setup"><file name="mysql4-install-0.9.0.php" hash="c86ec8f3c3a12cda7dd750cbd21dfca7"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="ef0c26c41ecfe27a20abacd5f041fae6"/></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="e602f5a1e7028f893a598e4b171e26b8"/></dir><dir name="template"><dir name="magmodules"><dir name="feedbackcompany"><dir name="sidebar"><file name="left.phtml" hash="ce6032051f6297d0d7754e209a2fe1fd"/><file name="right.phtml" hash="0033188b9d06524aa61dfd703a3b0f0a"/></dir><dir name="widget"><file name="medium.phtml" hash="d8b924dfb8ecff0c727e1f7175b3cd3e"/><file name="sidebar.phtml" hash="a3823c23c28bb7ee701ecf73faf147d3"/><file name="small.phtml" hash="a01354bab54c15dcce78aa55482c4bce"/></dir><file name="index.phtml" hash="5ece09fd9fb623aaf45773235f6632fc"/></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="c9ee3be1fe9081310a138e6690b1dbeb"/></dir><dir name="nl_NL"><file name="Magmodules_Feedbackcompany.csv" hash="b96db18b82e1041cd6f307454b6c3121"/></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="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="sidebar.css" hash="7054e114987ad6f34d590ca91a0156c6"/><file name="style.css" hash="4e2db1d0aa075b49d1bf64774980cc48"/></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>
|
skin/frontend/base/default/magmodules/feedbackcompany/sidebar.css
CHANGED
@@ -166,8 +166,7 @@ img.feedbackcompany-logo {
|
|
166 |
}
|
167 |
|
168 |
.feedbackcompany-medium-widget-content {
|
169 |
-
padding:
|
170 |
-
}
|
171 |
|
172 |
.feedbackcompany-medium-image {
|
173 |
float:right
|
@@ -194,4 +193,8 @@ img.feedbackcompany-logo {
|
|
194 |
.ratings .rating-box {
|
195 |
float:left;
|
196 |
margin:2px 3px 0 0
|
|
|
|
|
|
|
|
|
197 |
}
|
166 |
}
|
167 |
|
168 |
.feedbackcompany-medium-widget-content {
|
169 |
+
padding: 3%;}
|
|
|
170 |
|
171 |
.feedbackcompany-medium-image {
|
172 |
float:right
|
193 |
.ratings .rating-box {
|
194 |
float:left;
|
195 |
margin:2px 3px 0 0
|
196 |
+
}
|
197 |
+
|
198 |
+
.feedbackcompany-text {
|
199 |
+
margin-bottom: 5px!important;
|
200 |
}
|