Trustedshops_Trustedshops - Version 1.1.1

Version Notes

* Fix German Translation
* Only display Trustcard if an order is available
* add new product review variables
* add product rating notice

Download this release

Release Info

Developer Trusted Shops
Extension Trustedshops_Trustedshops
Version 1.1.1
Comparing to
See all releases


Code changes from version 1.1.0 to 1.1.1

app/code/community/Trustedshops/Trustedshops/Block/Trustcard.php CHANGED
@@ -39,15 +39,20 @@ class Trustedshops_Trustedshops_Block_Trustcard extends Trustedshops_Trustedshop
39
  */
40
  public function getOrder()
41
  {
42
- if (is_null($this->_order)) {
43
- $session = Mage::getSingleton('checkout/session');
44
- $lastOrder = $session->getLastRealOrder();
45
- if (empty($lastOrder)) {
46
- $lastOrder = $session->getLastOrderId();
47
- $lastOrder = Mage::getModel('sales/order')->load($lastOrder);
 
 
 
48
  }
49
- $this->_order = $lastOrder;
 
50
  }
 
51
  return $this->_order;
52
  }
53
 
@@ -76,6 +81,10 @@ class Trustedshops_Trustedshops_Block_Trustcard extends Trustedshops_Trustedshop
76
  */
77
  public function collectReviews()
78
  {
 
 
 
 
79
  if ($this->isExpert()) {
80
  if (!$this->getConfig('collect_orders', 'trustbadge')) {
81
  return false;
@@ -85,6 +94,30 @@ class Trustedshops_Trustedshops_Block_Trustcard extends Trustedshops_Trustedshop
85
  return $this->getConfig('collect_reviews', 'product');
86
  }
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  /**
89
  * get the formatted order amount
90
  *
@@ -92,9 +125,41 @@ class Trustedshops_Trustedshops_Block_Trustcard extends Trustedshops_Trustedshop
92
  */
93
  public function getOrderAmount()
94
  {
 
 
 
 
95
  return $this->getOrder()->getGrandTotal();
96
  }
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  /**
99
  * get the estimated delivery date
100
  *
@@ -222,7 +287,22 @@ class Trustedshops_Trustedshops_Block_Trustcard extends Trustedshops_Trustedshop
222
  return '';
223
  }
224
 
 
 
 
225
  $product = $this->getProduct($item);
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
  $attribute = $this->getMagentoAttribute($attributeCode);
228
 
@@ -243,6 +323,10 @@ class Trustedshops_Trustedshops_Block_Trustcard extends Trustedshops_Trustedshop
243
  return Mage::helper('core')->escapeHtml($value);
244
  }
245
 
 
 
 
 
246
  public function getProduct($item)
247
  {
248
  $product = $item->getProduct();
39
  */
40
  public function getOrder()
41
  {
42
+ try {
43
+ if (is_null($this->_order)) {
44
+ $session = Mage::getSingleton('checkout/session');
45
+ $lastOrder = $session->getLastRealOrder();
46
+ if (empty($lastOrder)) {
47
+ $lastOrder = $session->getLastOrderId();
48
+ $lastOrder = Mage::getModel('sales/order')->load($lastOrder);
49
+ }
50
+ $this->_order = $lastOrder;
51
  }
52
+ } catch (Exception $e) {
53
+ $this->_order = null;
54
  }
55
+
56
  return $this->_order;
57
  }
58
 
81
  */
82
  public function collectReviews()
83
  {
84
+ if (!$this->getOrder()) {
85
+ return false;
86
+ }
87
+
88
  if ($this->isExpert()) {
89
  if (!$this->getConfig('collect_orders', 'trustbadge')) {
90
  return false;
94
  return $this->getConfig('collect_reviews', 'product');
95
  }
96
 
97
+ /**
98
+ * @return string
99
+ */
100
+ public function getIncrementId()
101
+ {
102
+ if (!$this->getOrder()) {
103
+ return "";
104
+ }
105
+
106
+ return $this->getOrder()->getIncrementId();
107
+ }
108
+
109
+ /**
110
+ * @return string
111
+ */
112
+ public function getCustomerEmail()
113
+ {
114
+ if (!$this->getOrder()) {
115
+ return "";
116
+ }
117
+
118
+ return $this->getOrder()->getCustomerEmail();
119
+ }
120
+
121
  /**
122
  * get the formatted order amount
123
  *
125
  */
126
  public function getOrderAmount()
127
  {
128
+ if (!$this->getOrder()) {
129
+ return "";
130
+ }
131
+
132
  return $this->getOrder()->getGrandTotal();
133
  }
134
 
135
+ /**
136
+ * @return string
137
+ */
138
+ public function getStoreCurrencyCode()
139
+ {
140
+ if (!$this->getOrder()) {
141
+ return "";
142
+ }
143
+
144
+ return $this->getOrder()->getStoreCurrencyCode();
145
+ }
146
+
147
+ /**
148
+ * @return string
149
+ */
150
+ public function getPaymentMethod()
151
+ {
152
+ if (!$this->getOrder()) {
153
+ return "";
154
+ }
155
+
156
+ if (!$this->getOrder()->getPayment()) {
157
+ return "";
158
+ }
159
+
160
+ return $this->getOrder()->getPayment()->getMethod();
161
+ }
162
+
163
  /**
164
  * get the estimated delivery date
165
  *
287
  return '';
288
  }
289
 
290
+ /*
291
+ * load attributes of the child product
292
+ */
293
  $product = $this->getProduct($item);
294
+ if ($product->isComposite()) {
295
+ $childItems = $item->getChildrenItems();
296
+ $childItem = array_shift($childItems);
297
+ if (!$childItem || !$childItem->getId()) {
298
+ return "";
299
+ }
300
+ $product = $childItem->getProduct();
301
+ }
302
+
303
+ if (!$product || !$product->getId()) {
304
+ return "";
305
+ }
306
 
307
  $attribute = $this->getMagentoAttribute($attributeCode);
308
 
323
  return Mage::helper('core')->escapeHtml($value);
324
  }
325
 
326
+ /**
327
+ * @param $item
328
+ * @return Mage_Catalog_Model_Product
329
+ */
330
  public function getProduct($item)
331
  {
332
  $product = $item->getProduct();
app/code/community/Trustedshops/Trustedshops/etc/config.xml CHANGED
@@ -123,11 +123,13 @@ sku: ['%sku%'],
123
  variant: 'productreviews',
124
  borderColor: '#0DBEDC',
125
  locale: 'de_DE',
 
126
  starColor: '#FFDC0F',
127
  starSize: '15px',
128
  ratingSummary: 'false',
129
  maxHeight: '1200px',
130
  'element': '#ts_product_sticker',
 
131
  introtext: '' /* optional */
132
  };
133
  var scripts = document.getElementsByTagName('SCRIPT'),
123
  variant: 'productreviews',
124
  borderColor: '#0DBEDC',
125
  locale: 'de_DE',
126
+ backgroundColor: ' #ffffff',
127
  starColor: '#FFDC0F',
128
  starSize: '15px',
129
  ratingSummary: 'false',
130
  maxHeight: '1200px',
131
  'element': '#ts_product_sticker',
132
+ hideEmptySticker: 'false',
133
  introtext: '' /* optional */
134
  };
135
  var scripts = document.getElementsByTagName('SCRIPT'),
app/code/community/Trustedshops/Trustedshops/etc/system.xml CHANGED
@@ -230,8 +230,7 @@
230
  </expert_collect_reviews>
231
  <expert_collect_reviews_notice translate="label" module="trustedshops">
232
  <label>Collect Product Reviews Notice</label>
233
- <comment><![CDATA[More Traffic, less returns:
234
- Make sure to unlock unlimited Product Reviews in your Trusted Shops plan]]></comment>
235
  <frontend_model>trustedshops/adminhtml_field_notice</frontend_model>
236
  <sort_order>50</sort_order>
237
  <show_in_default>1</show_in_default>
@@ -607,8 +606,9 @@ Make sure to unlock unlimited Product Reviews in your Trusted Shops plan]]></com
607
  </depends>
608
  </expert_rating_header>
609
 
610
- <rating_active translate="label" module="trustedshops">
611
  <label>Show Star ratings on Product Detail Page below your Product Name</label>
 
612
  <frontend_type>select</frontend_type>
613
  <source_model>adminhtml/system_config_source_yesno</source_model>
614
  <sort_order>160</sort_order>
@@ -623,8 +623,9 @@ Make sure to unlock unlimited Product Reviews in your Trusted Shops plan]]></com
623
  <collect_reviews>1</collect_reviews>
624
  </depends>
625
  </rating_active>
626
- <expert_rating_active translate="label" module="trustedshops">
627
  <label>Show Star ratings on Product Detail Page below your Product Name</label>
 
628
  <frontend_type>select</frontend_type>
629
  <source_model>adminhtml/system_config_source_yesno</source_model>
630
  <sort_order>170</sort_order>
230
  </expert_collect_reviews>
231
  <expert_collect_reviews_notice translate="label" module="trustedshops">
232
  <label>Collect Product Reviews Notice</label>
233
+ <comment><![CDATA[More Traffic, less returns:<br/>Make sure to unlock unlimited Product Reviews in your Trusted Shops plan]]></comment>
 
234
  <frontend_model>trustedshops/adminhtml_field_notice</frontend_model>
235
  <sort_order>50</sort_order>
236
  <show_in_default>1</show_in_default>
606
  </depends>
607
  </expert_rating_header>
608
 
609
+ <rating_active translate="label comment" module="trustedshops">
610
  <label>Show Star ratings on Product Detail Page below your Product Name</label>
611
+ <comment>Please note that the Product Review Stars will only appear after the product has received its first review.</comment>
612
  <frontend_type>select</frontend_type>
613
  <source_model>adminhtml/system_config_source_yesno</source_model>
614
  <sort_order>160</sort_order>
623
  <collect_reviews>1</collect_reviews>
624
  </depends>
625
  </rating_active>
626
+ <expert_rating_active translate="label comment" module="trustedshops">
627
  <label>Show Star ratings on Product Detail Page below your Product Name</label>
628
+ <comment>Please note that the Product Review Stars will only appear after the product has received its first review.</comment>
629
  <frontend_type>select</frontend_type>
630
  <source_model>adminhtml/system_config_source_yesno</source_model>
631
  <sort_order>170</sort_order>
app/design/frontend/base/default/template/trustedshops/review.phtml CHANGED
@@ -20,11 +20,13 @@
20
  variant: 'productreviews',
21
  borderColor: '<?php echo $this->getBorderColor() ?>',
22
  locale: '<?php echo $this->getLocale() ?>',
 
23
  starColor: '<?php echo $this->getStarColor() ?>',
24
  starSize: '15px',
25
  ratingSummary: 'false',
26
  maxHeight: '1200px',
27
  'element': '#ts_product_sticker',
 
28
  introtext: '' /* optional */
29
  };
30
  var scripts = document.getElementsByTagName('SCRIPT'),
20
  variant: 'productreviews',
21
  borderColor: '<?php echo $this->getBorderColor() ?>',
22
  locale: '<?php echo $this->getLocale() ?>',
23
+ backgroundColor: ' #ffffff',
24
  starColor: '<?php echo $this->getStarColor() ?>',
25
  starSize: '15px',
26
  ratingSummary: 'false',
27
  maxHeight: '1200px',
28
  'element': '#ts_product_sticker',
29
+ hideEmptySticker: 'false',
30
  introtext: '' /* optional */
31
  };
32
  var scripts = document.getElementsByTagName('SCRIPT'),
app/design/frontend/base/default/template/trustedshops/trustcard.phtml CHANGED
@@ -11,11 +11,11 @@
11
  <?php /** @var Trustedshops_Trustedshops_Block_Trustcard $this */ ?>
12
  <?php if ($this->collectOrders()) : ?>
13
  <div id="trustedShopsCheckout" style="display: none;">
14
- <span id="tsCheckoutOrderNr"><?php echo $this->getOrder()->getIncrementId() ?></span>
15
- <span id="tsCheckoutBuyerEmail"><?php echo $this->getOrder()->getCustomerEmail() ?></span>
16
  <span id="tsCheckoutOrderAmount"><?php echo $this->getOrderAmount() ?></span>
17
- <span id="tsCheckoutOrderCurrency"><?php echo $this->getOrder()->getStoreCurrencyCode() ?></span>
18
- <span id="tsCheckoutOrderPaymentType"><?php echo $this->getOrder()->getPayment()->getMethod() ?></span>
19
  <span id="tsCheckoutOrderEstDeliveryDate"><?php echo $this->getEstimatedDeliveryDate() ?></span>
20
  <?php if ($this->collectReviews()) : ?>
21
  <!-- product reviews start -->
11
  <?php /** @var Trustedshops_Trustedshops_Block_Trustcard $this */ ?>
12
  <?php if ($this->collectOrders()) : ?>
13
  <div id="trustedShopsCheckout" style="display: none;">
14
+ <span id="tsCheckoutOrderNr"><?php echo $this->getIncrementId() ?></span>
15
+ <span id="tsCheckoutBuyerEmail"><?php echo $this->getCustomerEmail() ?></span>
16
  <span id="tsCheckoutOrderAmount"><?php echo $this->getOrderAmount() ?></span>
17
+ <span id="tsCheckoutOrderCurrency"><?php echo $this->getStoreCurrencyCode() ?></span>
18
+ <span id="tsCheckoutOrderPaymentType"><?php echo $this->getPaymentMethod() ?></span>
19
  <span id="tsCheckoutOrderEstDeliveryDate"><?php echo $this->getEstimatedDeliveryDate() ?></span>
20
  <?php if ($this->collectReviews()) : ?>
21
  <!-- product reviews start -->
app/locale/de_AT/Trustedshops_Trustedshops.csv CHANGED
@@ -23,6 +23,7 @@
23
  "Code for Product Review Sticker","Code für Produktbewertungen"
24
  "Product Review Stars","Produktbewertungssterne"
25
  "Show Star ratings on Product Detail Page below your Product Name","Produktbewertungen auf der Produktdetailseite unter dem Produktnamen anzeigen"
 
26
  "Star Colour","Farbe der Sterne"
27
  "Star Size","Größe der Sterne"
28
  "Font Size","Schriftgröße"
23
  "Code for Product Review Sticker","Code für Produktbewertungen"
24
  "Product Review Stars","Produktbewertungssterne"
25
  "Show Star ratings on Product Detail Page below your Product Name","Produktbewertungen auf der Produktdetailseite unter dem Produktnamen anzeigen"
26
+ "Please note that the Product Review Stars will only appear after the product has received its first review.","Bitte beachten Sie, dass die Produktbewertungssterne erst ab der ersten Produktbewertung angezeigt werden."
27
  "Star Colour","Farbe der Sterne"
28
  "Star Size","Größe der Sterne"
29
  "Font Size","Schriftgröße"
app/locale/de_CH/Trustedshops_Trustedshops.csv CHANGED
@@ -23,6 +23,7 @@
23
  "Code for Product Review Sticker","Code für Produktbewertungen"
24
  "Product Review Stars","Produktbewertungssterne"
25
  "Show Star ratings on Product Detail Page below your Product Name","Produktbewertungen auf der Produktdetailseite unter dem Produktnamen anzeigen"
 
26
  "Star Colour","Farbe der Sterne"
27
  "Star Size","Größe der Sterne"
28
  "Font Size","Schriftgröße"
23
  "Code for Product Review Sticker","Code für Produktbewertungen"
24
  "Product Review Stars","Produktbewertungssterne"
25
  "Show Star ratings on Product Detail Page below your Product Name","Produktbewertungen auf der Produktdetailseite unter dem Produktnamen anzeigen"
26
+ "Please note that the Product Review Stars will only appear after the product has received its first review.","Bitte beachten Sie, dass die Produktbewertungssterne erst ab der ersten Produktbewertung angezeigt werden."
27
  "Star Colour","Farbe der Sterne"
28
  "Star Size","Größe der Sterne"
29
  "Font Size","Schriftgröße"
app/locale/de_DE/Trustedshops_Trustedshops.csv CHANGED
@@ -23,6 +23,7 @@
23
  "Code for Product Review Sticker","Code für Produktbewertungen"
24
  "Product Review Stars","Produktbewertungssterne"
25
  "Show Star ratings on Product Detail Page below your Product Name","Produktbewertungen auf der Produktdetailseite unter dem Produktnamen anzeigen"
 
26
  "Star Colour","Farbe der Sterne"
27
  "Star Size","Größe der Sterne"
28
  "Font Size","Schriftgröße"
23
  "Code for Product Review Sticker","Code für Produktbewertungen"
24
  "Product Review Stars","Produktbewertungssterne"
25
  "Show Star ratings on Product Detail Page below your Product Name","Produktbewertungen auf der Produktdetailseite unter dem Produktnamen anzeigen"
26
+ "Please note that the Product Review Stars will only appear after the product has received its first review.","Bitte beachten Sie, dass die Produktbewertungssterne erst ab der ersten Produktbewertung angezeigt werden."
27
  "Star Colour","Farbe der Sterne"
28
  "Star Size","Größe der Sterne"
29
  "Font Size","Schriftgröße"
app/locale/fr_CA/Trustedshops_Trustedshops.csv CHANGED
@@ -21,6 +21,7 @@
21
  "Code for Product Review Sticker","Code pour la vignette avis produits"
22
  "Product Review Stars","Étoiles d'évaluation"
23
  "Show Star ratings on Product Detail Page below your Product Name","Afficher les étoiles d'évaluation en-dessous du nom de votre produit"
 
24
  "Star Colour","Couleur des étoiles"
25
  "Star Size","Taille des étoiles"
26
  "Font Size","Taille de la police"
21
  "Code for Product Review Sticker","Code pour la vignette avis produits"
22
  "Product Review Stars","Étoiles d'évaluation"
23
  "Show Star ratings on Product Detail Page below your Product Name","Afficher les étoiles d'évaluation en-dessous du nom de votre produit"
24
+ "Please note that the Product Review Stars will only appear after the product has received its first review.","Merci de noter que les étoiles d'évaluation n’apparaîtront que lorsque le produit aura reçu son premier avis."
25
  "Star Colour","Couleur des étoiles"
26
  "Star Size","Taille des étoiles"
27
  "Font Size","Taille de la police"
app/locale/fr_FR/Trustedshops_Trustedshops.csv CHANGED
@@ -21,6 +21,7 @@
21
  "Code for Product Review Sticker","Code pour la vignette avis produits"
22
  "Product Review Stars","Étoiles d'évaluation"
23
  "Show Star ratings on Product Detail Page below your Product Name","Afficher les étoiles d'évaluation en-dessous du nom de votre produit"
 
24
  "Star Colour","Couleur des étoiles"
25
  "Star Size","Taille des étoiles"
26
  "Font Size","Taille de la police"
21
  "Code for Product Review Sticker","Code pour la vignette avis produits"
22
  "Product Review Stars","Étoiles d'évaluation"
23
  "Show Star ratings on Product Detail Page below your Product Name","Afficher les étoiles d'évaluation en-dessous du nom de votre produit"
24
+ "Please note that the Product Review Stars will only appear after the product has received its first review.","Merci de noter que les étoiles d'évaluation n’apparaîtront que lorsque le produit aura reçu son premier avis."
25
  "Star Colour","Couleur des étoiles"
26
  "Star Size","Taille des étoiles"
27
  "Font Size","Taille de la police"
package.xml CHANGED
@@ -1,18 +1,21 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Trustedshops_Trustedshops</name>
4
- <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Trustedshops Integration</summary>
10
  <description>Trustedshops Integration</description>
11
- <notes>Initial Release</notes>
 
 
 
12
  <authors><author><name>Trusted Shops</name><user>Burck</user><email>productfeedback@trustedshops.com</email></author></authors>
13
- <date>2016-04-25</date>
14
- <time>07:58:52</time>
15
- <contents><target name="magecommunity"><dir name="Trustedshops"><dir name="Trustedshops"><dir name="Block"><file name="Abstract.php" hash="2dea70550d50f85777c83728b1bddea5"/><dir name="Adminhtml"><dir name="Field"><file name="Expertnotice.php" hash="d3c2dfe2f73f5bf05fbd14c2fdf78cb5"/><file name="Integration.php" hash="254335a9e4583b5017dedd94cd1919f5"/><file name="Intro.php" hash="adfa0209519aa101d507a94b6f963819"/><file name="Notice.php" hash="586200702537efaf28592fc104a99c84"/></dir></dir><file name="Rating.php" hash="fd0da4aaab2433888f6635898e5b2f93"/><dir name="Review"><file name="Tab.php" hash="afc3eb61d16074042ff1dab0abae4954"/></dir><file name="Review.php" hash="e8cbc25fff3fd7f0562c257b14dad84a"/><file name="Trustbadge.php" hash="430bf1bbf7c5993c0c3b06ea3d7a3b17"/><file name="Trustcard.php" hash="1d47a6696ad89d78715be84cc928058a"/><dir name="Widget"><file name="Dependence.php" hash="e324513eba860d5082ab5a07355397b5"/></dir></dir><dir name="Helper"><file name="Data.php" hash="70cca035ec45b854253cd678b65bb422"/></dir><dir name="Model"><file name="Observer.php" hash="9488fecac965e8babcb90b422b64350f"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="d403234fab5c87faf34a38ceeaa04f78"/><file name="Mode.php" hash="2db89acc46905cb2b557b8e0151589d1"/><file name="Variant.php" hash="256ae7759180764b7891debdf53e49ec"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="422b4d54a7765b44a71089b728ed5481"/><file name="config.xml" hash="f5914bf0141481ffdcb9ea1a0b0740bd"/><file name="system.xml" hash="403890422a56f6d15b8a0b3cfc573cce"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="trustedshops.xml" hash="5fb8e437eacd818f4ae69b90f752cffc"/></dir><dir name="template"><dir name="trustedshops"><file name="rating.phtml" hash="02df47873f916afcd7699cc99efd3de0"/><file name="review.phtml" hash="52cf3a7d10d235fd4389491f35cf56f6"/><file name="review_tab.phtml" hash="bfe1e9709121f861a40b9fbfdddf7fae"/><file name="trustbadge.phtml" hash="11ac32d48c4dcc236b6f6a8057c5d65e"/><file name="trustcard.phtml" hash="8191b101466c9b84710e3b883ca101f7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Trustedshops_Trustedshops.xml" hash="30b3e1bafa2c765173d109e862901fef"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="trustedshops"><file name="trustedshops_de.jpg" hash="05e410dc03ff247f174f6a972ada598f"/><file name="trustedshops_en.jpg" hash="196f8042dd61d812af126e11c28ad63d"/><file name="trustedshops_fr.jpg" hash="461ae3156ed09632fad459dd72d406a7"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="de_AT"><file name="Trustedshops_Trustedshops.csv" hash="c141addf15b2d4bb61f1c5b52c3669c8"/></dir><dir name="de_CH"><file name="Trustedshops_Trustedshops.csv" hash="c141addf15b2d4bb61f1c5b52c3669c8"/></dir><dir name="de_DE"><file name="Trustedshops_Trustedshops.csv" hash="c141addf15b2d4bb61f1c5b52c3669c8"/></dir><dir name="fr_CA"><file name="Trustedshops_Trustedshops.csv" hash="2ec3c5240aafb86dad92e01ccca8696a"/></dir><dir name="fr_FR"><file name="Trustedshops_Trustedshops.csv" hash="2ec3c5240aafb86dad92e01ccca8696a"/></dir></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.3.0</min><max>7.0.5</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Trustedshops_Trustedshops</name>
4
+ <version>1.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Trustedshops Integration</summary>
10
  <description>Trustedshops Integration</description>
11
+ <notes>* Fix German Translation&#xD;
12
+ * Only display Trustcard if an order is available&#xD;
13
+ * add new product review variables&#xD;
14
+ * add product rating notice</notes>
15
  <authors><author><name>Trusted Shops</name><user>Burck</user><email>productfeedback@trustedshops.com</email></author></authors>
16
+ <date>2016-06-09</date>
17
+ <time>08:02:19</time>
18
+ <contents><target name="magecommunity"><dir name="Trustedshops"><dir name="Trustedshops"><dir name="Block"><file name="Abstract.php" hash="2dea70550d50f85777c83728b1bddea5"/><dir name="Adminhtml"><dir name="Field"><file name="Expertnotice.php" hash="d3c2dfe2f73f5bf05fbd14c2fdf78cb5"/><file name="Integration.php" hash="254335a9e4583b5017dedd94cd1919f5"/><file name="Intro.php" hash="adfa0209519aa101d507a94b6f963819"/><file name="Notice.php" hash="586200702537efaf28592fc104a99c84"/></dir></dir><file name="Rating.php" hash="fd0da4aaab2433888f6635898e5b2f93"/><dir name="Review"><file name="Tab.php" hash="afc3eb61d16074042ff1dab0abae4954"/></dir><file name="Review.php" hash="e8cbc25fff3fd7f0562c257b14dad84a"/><file name="Trustbadge.php" hash="430bf1bbf7c5993c0c3b06ea3d7a3b17"/><file name="Trustcard.php" hash="47ec675aa46d260c28d729aba705334a"/><dir name="Widget"><file name="Dependence.php" hash="e324513eba860d5082ab5a07355397b5"/></dir></dir><dir name="Helper"><file name="Data.php" hash="70cca035ec45b854253cd678b65bb422"/></dir><dir name="Model"><file name="Observer.php" hash="9488fecac965e8babcb90b422b64350f"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Attribute.php" hash="d403234fab5c87faf34a38ceeaa04f78"/><file name="Mode.php" hash="2db89acc46905cb2b557b8e0151589d1"/><file name="Variant.php" hash="256ae7759180764b7891debdf53e49ec"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="422b4d54a7765b44a71089b728ed5481"/><file name="config.xml" hash="f2b4075262d1998c9e07d47b09b8db85"/><file name="system.xml" hash="07a0cb87c3f443d621c5487ccc91dc22"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="trustedshops.xml" hash="5fb8e437eacd818f4ae69b90f752cffc"/></dir><dir name="template"><dir name="trustedshops"><file name="rating.phtml" hash="02df47873f916afcd7699cc99efd3de0"/><file name="review.phtml" hash="70deab7d87ac75f41f3548669a8c50a2"/><file name="review_tab.phtml" hash="bfe1e9709121f861a40b9fbfdddf7fae"/><file name="trustbadge.phtml" hash="11ac32d48c4dcc236b6f6a8057c5d65e"/><file name="trustcard.phtml" hash="87fba6dd48439cd5bc7a3c29834ffb1d"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Trustedshops_Trustedshops.xml" hash="30b3e1bafa2c765173d109e862901fef"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="trustedshops"><file name="trustedshops_de.jpg" hash="7e5d11cb8d58704de6fa9b9150135d09"/><file name="trustedshops_en.jpg" hash="196f8042dd61d812af126e11c28ad63d"/><file name="trustedshops_fr.jpg" hash="461ae3156ed09632fad459dd72d406a7"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="de_AT"><file name="Trustedshops_Trustedshops.csv" hash="e39a07e18613003ce082f8054b1bae22"/></dir><dir name="de_CH"><file name="Trustedshops_Trustedshops.csv" hash="e39a07e18613003ce082f8054b1bae22"/></dir><dir name="de_DE"><file name="Trustedshops_Trustedshops.csv" hash="e39a07e18613003ce082f8054b1bae22"/></dir><dir name="fr_CA"><file name="Trustedshops_Trustedshops.csv" hash="b04c68aa4b7e2de86dc9b99d7e269355"/></dir><dir name="fr_FR"><file name="Trustedshops_Trustedshops.csv" hash="b04c68aa4b7e2de86dc9b99d7e269355"/></dir></dir></target></contents>
19
  <compatible/>
20
+ <dependencies><required><php><min>5.3.0</min><max>7.0.6</max></php></required></dependencies>
21
  </package>
skin/adminhtml/default/default/images/trustedshops/trustedshops_de.jpg CHANGED
Binary file