Version Notes
First stable release
Download this release
Release Info
Developer | Magento Core Team |
Extension | Magmodules_Webwinkelconnect |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Webwinkellog/Grid.php +10 -0
- app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Widget/Grid/Log.php +18 -13
- app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Widget/Info/Info.php +7 -7
- app/code/local/Magmodules/Webwinkelconnect/Model/Api.php +8 -5
- app/code/local/Magmodules/Webwinkelconnect/controllers/Adminhtml/WebwinkelreviewsController.php +3 -3
- app/code/local/Magmodules/Webwinkelconnect/etc/adminhtml.xml +26 -20
- app/code/local/Magmodules/Webwinkelconnect/etc/config.xml +1 -1
- app/code/local/Magmodules/Webwinkelconnect/etc/system.xml +1 -1
- app/design/frontend/base/default/layout/magmodules_webwinkelconnect.xml +1 -5
- app/design/frontend/base/default/template/magmodules/webwinkelconnect/widget/richsnippets.phtml +16 -9
- app/locale/en_US/Magmodules_Webwinkelconnect.csv +2 -1
- app/locale/nl_NL/Magmodules_Webwinkelconnect.csv +96 -94
- package.xml +4 -4
app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Webwinkellog/Grid.php
CHANGED
@@ -55,6 +55,16 @@ class Magmodules_Webwinkelconnect_Block_Adminhtml_Webwinkellog_Grid extends Mage
|
|
55 |
),
|
56 |
));
|
57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
$this->addColumn('qty', array(
|
59 |
'header' => Mage::helper('webwinkelconnect')->__('Description'),
|
60 |
'align' => 'left',
|
55 |
),
|
56 |
));
|
57 |
|
58 |
+
if(Mage::app()->getRequest()->getParam('showapiurl')) {
|
59 |
+
$this->addColumn('api_url', array(
|
60 |
+
'header' => Mage::helper('webwinkelconnect')->__('Api URL'),
|
61 |
+
'align' => 'left',
|
62 |
+
'index' => 'api_url',
|
63 |
+
'filter' => false,
|
64 |
+
'sortable' => false,
|
65 |
+
));
|
66 |
+
}
|
67 |
+
|
68 |
$this->addColumn('qty', array(
|
69 |
'header' => Mage::helper('webwinkelconnect')->__('Description'),
|
70 |
'align' => 'left',
|
app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Widget/Grid/Log.php
CHANGED
@@ -1,18 +1,22 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Magmodules.eu - http://www.magmodules.eu
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
*
|
8 |
-
*
|
9 |
-
*
|
|
|
|
|
|
|
|
|
|
|
10 |
* @category Magmodules
|
11 |
-
* @package
|
12 |
-
* @author Magmodules <info@magmodules.eu
|
13 |
-
* @copyright Copyright (c)
|
14 |
-
* @license http://
|
15 |
-
* =============================================================
|
16 |
*/
|
17 |
|
18 |
class Magmodules_Webwinkelconnect_Block_Adminhtml_Widget_Grid_Log extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Action {
|
@@ -45,7 +49,8 @@ class Magmodules_Webwinkelconnect_Block_Adminhtml_Widget_Grid_Log extends Mage_A
|
|
45 |
$order = Mage::getModel('sales/order')->load($row->getOrderId());
|
46 |
$increment_id = $order->getIncrementId();
|
47 |
$order_url = Mage::helper('adminhtml')->getUrl("adminhtml/sales_order/view", array('order_id'=> $row->getOrderId()));
|
48 |
-
$
|
|
|
49 |
}
|
50 |
}
|
51 |
|
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_Webwinkelconnect
|
17 |
+
* @author Magmodules <info@magmodules.eu)
|
18 |
+
* @copyright Copyright (c) 2014 (http://www.magmodules.eu)
|
19 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
|
20 |
*/
|
21 |
|
22 |
class Magmodules_Webwinkelconnect_Block_Adminhtml_Widget_Grid_Log extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Action {
|
49 |
$order = Mage::getModel('sales/order')->load($row->getOrderId());
|
50 |
$increment_id = $order->getIncrementId();
|
51 |
$order_url = Mage::helper('adminhtml')->getUrl("adminhtml/sales_order/view", array('order_id'=> $row->getOrderId()));
|
52 |
+
$order_url_text = '<a href="' . $order_url . '">#' . $increment_id .'</a>';
|
53 |
+
$msg = Mage::helper('webwinkelconnect')->__('%s - Repsonse: %s', $order_url_text, $row->getResponse());
|
54 |
}
|
55 |
}
|
56 |
|
app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Widget/Info/Info.php
CHANGED
@@ -31,21 +31,21 @@ class Magmodules_Webwinkelconnect_Block_Adminhtml_Widget_Info_Info extends Mage_
|
|
31 |
<tr>
|
32 |
<td width="58%">View more extensions from us:</td>
|
33 |
<td width="42%"><a href="http://www.magentocommerce.com/magento-connect/developer/Magmodules" target="_blank">Magento Connect</a></td>
|
|
|
|
|
|
|
34 |
</tr>
|
35 |
<tr>
|
36 |
-
<td>
|
37 |
-
<td><a href="http://www.magmodules.eu
|
38 |
</tr>
|
39 |
<tr>
|
40 |
<td> </td>
|
41 |
<td> </td>
|
42 |
-
</tr>
|
43 |
-
<td>Send us an E-mail:
|
44 |
-
<td><a href="mailto:info@magmodules.eu">info@magmodules.eu</a></td>
|
45 |
</tr>
|
46 |
<tr>
|
47 |
-
<td height="30">
|
48 |
-
<td><a href="http://www.magmodules.eu" target="_blank">
|
49 |
</tr>
|
50 |
</table>
|
51 |
</div>';
|
31 |
<tr>
|
32 |
<td width="58%">View more extensions from us:</td>
|
33 |
<td width="42%"><a href="http://www.magentocommerce.com/magento-connect/developer/Magmodules" target="_blank">Magento Connect</a></td>
|
34 |
+
</tr>
|
35 |
+
<td>Send us an E-mail:
|
36 |
+
<td><a href="mailto:info@magmodules.eu">info@magmodules.eu</a></td>
|
37 |
</tr>
|
38 |
<tr>
|
39 |
+
<td height="30">Visit our website:</td>
|
40 |
+
<td><a href="http://www.magmodules.eu" target="_blank">www.magmodules.eu</a></td>
|
41 |
</tr>
|
42 |
<tr>
|
43 |
<td> </td>
|
44 |
<td> </td>
|
|
|
|
|
|
|
45 |
</tr>
|
46 |
<tr>
|
47 |
+
<td height="30"><strong>Need help?</strong></td>
|
48 |
+
<td><strong><a href="http://www.magmodules.eu/help/webwinkelkeur" target="_blank">Online manual</a></strong></td>
|
49 |
</tr>
|
50 |
</table>
|
51 |
</div>';
|
app/code/local/Magmodules/Webwinkelconnect/Model/Api.php
CHANGED
@@ -32,8 +32,8 @@ class Magmodules_Webwinkelconnect_Model_Api extends Mage_Core_Model_Abstract {
|
|
32 |
}
|
33 |
|
34 |
public function getFeed($storeid, $type = '') {
|
35 |
-
$api_id = Mage::getStoreConfig('webwinkelconnect/general/api_id', $storeid);
|
36 |
-
$api_key = Mage::getStoreConfig('webwinkelconnect/general/api_key', $storeid);
|
37 |
|
38 |
if($type != 'stats') {
|
39 |
$api_url = 'https://www.webwinkelkeur.nl/apistatistics.php?id=' . $api_id . '&password=' . $api_key . '&showall=1';
|
@@ -43,9 +43,12 @@ class Magmodules_Webwinkelconnect_Model_Api extends Mage_Core_Model_Abstract {
|
|
43 |
|
44 |
if($api_id && $api_key) {
|
45 |
$xml = simplexml_load_file($api_url);
|
|
|
46 |
if($xml) {
|
47 |
return $xml;
|
48 |
} else {
|
|
|
|
|
49 |
return false;
|
50 |
}
|
51 |
} else {
|
@@ -57,9 +60,9 @@ class Magmodules_Webwinkelconnect_Model_Api extends Mage_Core_Model_Abstract {
|
|
57 |
$start_time = microtime(true);
|
58 |
$crontype = 'orderupdate';
|
59 |
$order_id = $order->getIncrementId();
|
60 |
-
$api_id = Mage::getStoreConfig('webwinkelconnect/general/api_id', $order->getStoreId());
|
61 |
-
$api_key = Mage::getStoreConfig('webwinkelconnect/general/api_key', $order->getStoreId());
|
62 |
-
$delay = Mage::getStoreConfig('webwinkelconnect/invitation/delay', $order->getStoreId());
|
63 |
$email = $order->getCustomerEmail();
|
64 |
$api_url = 'https://www.webwinkelkeur.nl/api.php?id=' . $api_id . '&password=' . $api_key . '&email=' . $email . '&order=' . $order_id . '&delay=' . $delay;
|
65 |
|
32 |
}
|
33 |
|
34 |
public function getFeed($storeid, $type = '') {
|
35 |
+
$api_id = trim(Mage::getStoreConfig('webwinkelconnect/general/api_id', $storeid));
|
36 |
+
$api_key = trim(Mage::getStoreConfig('webwinkelconnect/general/api_key', $storeid));
|
37 |
|
38 |
if($type != 'stats') {
|
39 |
$api_url = 'https://www.webwinkelkeur.nl/apistatistics.php?id=' . $api_id . '&password=' . $api_key . '&showall=1';
|
43 |
|
44 |
if($api_id && $api_key) {
|
45 |
$xml = simplexml_load_file($api_url);
|
46 |
+
|
47 |
if($xml) {
|
48 |
return $xml;
|
49 |
} else {
|
50 |
+
$error = file_get_contents($api_url);
|
51 |
+
Mage::getSingleton('adminhtml/session')->addError(Mage::helper('webwinkelconnect')->__('%s, please check the online manual for suggestions.', $error));
|
52 |
return false;
|
53 |
}
|
54 |
} else {
|
60 |
$start_time = microtime(true);
|
61 |
$crontype = 'orderupdate';
|
62 |
$order_id = $order->getIncrementId();
|
63 |
+
$api_id = trim(Mage::getStoreConfig('webwinkelconnect/general/api_id', $order->getStoreId()));
|
64 |
+
$api_key = trim(Mage::getStoreConfig('webwinkelconnect/general/api_key', $order->getStoreId()));
|
65 |
+
$delay = trim(Mage::getStoreConfig('webwinkelconnect/invitation/delay', $order->getStoreId()));
|
66 |
$email = $order->getCustomerEmail();
|
67 |
$api_url = 'https://www.webwinkelkeur.nl/api.php?id=' . $api_id . '&password=' . $api_key . '&email=' . $email . '&order=' . $order_id . '&delay=' . $delay;
|
68 |
|
app/code/local/Magmodules/Webwinkelconnect/controllers/Adminhtml/WebwinkelreviewsController.php
CHANGED
@@ -49,15 +49,15 @@ class Magmodules_Webwinkelconnect_Adminhtml_WebwinkelreviewsController extends M
|
|
49 |
if($msg) {
|
50 |
Mage::getSingleton('adminhtml/session')->addSuccess($msg);
|
51 |
} else {
|
52 |
-
Mage::getSingleton('adminhtml/session')->
|
|
|
|
|
53 |
}
|
54 |
}
|
55 |
$this->_redirect('adminhtml/system_config/edit/section/webwinkelconnect');
|
56 |
}
|
57 |
|
58 |
public function testapiAction() {
|
59 |
-
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('webwinkelconnect')->__('TODO: repsonse code van de API', $xml));
|
60 |
-
Mage::getSingleton('adminhtml/session')->addError(Mage::helper('webwinkelconnect')->__('TODO: repsonse code van de API', $xml));
|
61 |
$this->_redirect('adminhtml/system_config/edit/section/webwinkelconnect');
|
62 |
}
|
63 |
|
49 |
if($msg) {
|
50 |
Mage::getSingleton('adminhtml/session')->addSuccess($msg);
|
51 |
} else {
|
52 |
+
if(Mage::getSingleton('adminhtml/session')->getMessages()->count() < 1) {
|
53 |
+
Mage::getSingleton('adminhtml/session')->addError(Mage::helper('webwinkelconnect')->__('Webwinkel ID %s: no updates found, feed is empty or not foud!', $api_id));
|
54 |
+
}
|
55 |
}
|
56 |
}
|
57 |
$this->_redirect('adminhtml/system_config/edit/section/webwinkelconnect');
|
58 |
}
|
59 |
|
60 |
public function testapiAction() {
|
|
|
|
|
61 |
$this->_redirect('adminhtml/system_config/edit/section/webwinkelconnect');
|
62 |
}
|
63 |
|
app/code/local/Magmodules/Webwinkelconnect/etc/adminhtml.xml
CHANGED
@@ -23,27 +23,33 @@
|
|
23 |
-->
|
24 |
<config>
|
25 |
<menu>
|
26 |
-
<
|
27 |
-
<title>
|
28 |
-
<sort_order>
|
29 |
<children>
|
30 |
-
<
|
31 |
-
<title>WebwinkelKeur
|
32 |
-
<sort_order>
|
33 |
-
<
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
</menu>
|
48 |
<acl>
|
49 |
<resources>
|
23 |
-->
|
24 |
<config>
|
25 |
<menu>
|
26 |
+
<shopreview module="webwinkelconnect">
|
27 |
+
<title>Reviews</title>
|
28 |
+
<sort_order>71</sort_order>
|
29 |
<children>
|
30 |
+
<webwinkelconnect module="webwinkelconnect">
|
31 |
+
<title>WebwinkelKeur</title>
|
32 |
+
<sort_order>60</sort_order>
|
33 |
+
<children>
|
34 |
+
<webwinkelconnect_reviews module="webwinkelconnect">
|
35 |
+
<title>WebwinkelKeur Reviews</title>
|
36 |
+
<sort_order>100</sort_order>
|
37 |
+
<action>adminhtml/webwinkelreviews/</action>
|
38 |
+
</webwinkelconnect_reviews>
|
39 |
+
<webwinkelconnect_log module="webwinkelconnect">
|
40 |
+
<title>WebwinkelKeur Log</title>
|
41 |
+
<sort_order>110</sort_order>
|
42 |
+
<action>adminhtml/webwinkellog/</action>
|
43 |
+
</webwinkelconnect_log>
|
44 |
+
<webwinkelconnect_config module="webwinkelconnect">
|
45 |
+
<title>Config</title>
|
46 |
+
<sort_order>120</sort_order>
|
47 |
+
<action>adminhtml/system_config/edit/section/webwinkelconnect</action>
|
48 |
+
</webwinkelconnect_config>
|
49 |
+
</children>
|
50 |
+
</webwinkelconnect>
|
51 |
+
</children>
|
52 |
+
</shopreview>
|
53 |
</menu>
|
54 |
<acl>
|
55 |
<resources>
|
app/code/local/Magmodules/Webwinkelconnect/etc/config.xml
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
<config>
|
25 |
<modules>
|
26 |
<Magmodules_Webwinkelconnect>
|
27 |
-
<version>1.0.
|
28 |
</Magmodules_Webwinkelconnect>
|
29 |
</modules>
|
30 |
<global>
|
24 |
<config>
|
25 |
<modules>
|
26 |
<Magmodules_Webwinkelconnect>
|
27 |
+
<version>1.0.4</version>
|
28 |
</Magmodules_Webwinkelconnect>
|
29 |
</modules>
|
30 |
<global>
|
app/code/local/Magmodules/Webwinkelconnect/etc/system.xml
CHANGED
@@ -124,7 +124,7 @@
|
|
124 |
<show_in_website>1</show_in_website>
|
125 |
<show_in_store>1</show_in_store>
|
126 |
<expanded>1</expanded>
|
127 |
-
<comment><![CDATA[To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually.<br/><br/>]]></comment>
|
128 |
<fields>
|
129 |
<cron translate="label">
|
130 |
<label>Import Automatically</label>
|
124 |
<show_in_website>1</show_in_website>
|
125 |
<show_in_store>1</show_in_store>
|
126 |
<expanded>1</expanded>
|
127 |
+
<comment><![CDATA[To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually. This feature is only available to PLUS members.<br/><br/>]]></comment>
|
128 |
<fields>
|
129 |
<cron translate="label">
|
130 |
<label>Import Automatically</label>
|
app/design/frontend/base/default/layout/magmodules_webwinkelconnect.xml
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
<default>
|
4 |
<reference name="head">
|
5 |
<action method="addCss"><stylesheet>magmodules/webwinkelconnect/sidebar.css</stylesheet></action>
|
|
|
6 |
</reference>
|
7 |
<reference name="left">
|
8 |
<block type="webwinkelconnect/sidebar" name="left.webwinkelconnect" template="magmodules/webwinkelconnect/sidebar/left.phtml" />
|
@@ -31,9 +32,4 @@
|
|
31 |
<remove name="right.webwinkelconnect" />
|
32 |
</reference>
|
33 |
</webwinkelconnect_index_index>
|
34 |
-
<cms_index_index>
|
35 |
-
<reference name="head">
|
36 |
-
<action method="addCss"><stylesheet>magmodules/webwinkelconnect/richsnippets.css</stylesheet></action>
|
37 |
-
</reference>
|
38 |
-
</cms_index_index>
|
39 |
</layout>
|
3 |
<default>
|
4 |
<reference name="head">
|
5 |
<action method="addCss"><stylesheet>magmodules/webwinkelconnect/sidebar.css</stylesheet></action>
|
6 |
+
<action method="addCss"><stylesheet>magmodules/webwinkelconnect/richsnippets.css</stylesheet></action>
|
7 |
</reference>
|
8 |
<reference name="left">
|
9 |
<block type="webwinkelconnect/sidebar" name="left.webwinkelconnect" template="magmodules/webwinkelconnect/sidebar/left.phtml" />
|
32 |
<remove name="right.webwinkelconnect" />
|
33 |
</reference>
|
34 |
</webwinkelconnect_index_index>
|
|
|
|
|
|
|
|
|
|
|
35 |
</layout>
|
app/design/frontend/base/default/template/magmodules/webwinkelconnect/widget/richsnippets.phtml
CHANGED
@@ -21,14 +21,21 @@
|
|
21 |
*/
|
22 |
?>
|
23 |
<?php if(($this->getSnippetsEnabled()) && ($snippets = $this->getSnippets())) { ?>
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
<
|
28 |
-
|
29 |
-
<
|
30 |
-
|
|
|
|
|
31 |
</div>
|
32 |
-
</div>
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
34 |
<?php } ?>
|
21 |
*/
|
22 |
?>
|
23 |
<?php if(($this->getSnippetsEnabled()) && ($snippets = $this->getSnippets())) { ?>
|
24 |
+
<?php if(Mage::getBlockSingleton('page/html_header')->getIsHomePage()) { ?>
|
25 |
+
<div class="webwinkelconnect-snippets">
|
26 |
+
<?php echo $this->getHtmlStars($snippets->getPercentage()); ?>
|
27 |
+
<div itemscope="itemscope" itemtype="http://schema.org/Product">
|
28 |
+
<meta itemprop="name" content="<?php echo $snippets->getCompany(); ?>">
|
29 |
+
<div itemprop="aggregateRating" itemscope="itemscope" itemtype="http://schema.org/AggregateRating">
|
30 |
+
<meta itemprop="bestRating" content="100">
|
31 |
+
<p><?php echo Mage::helper('webwinkelconnect')->__('Rating %s based on %s customer reviews', '<span itemprop="ratingValue">' . $snippets->getPercentage() . '</span>%', '<span itemprop="reviewCount">' . $snippets->getVotes() . '</span>') ?> <?php echo $this->getExternalLink(); ?> </p>
|
32 |
+
</div>
|
33 |
</div>
|
34 |
+
</div>
|
35 |
+
<?php } else { ?>
|
36 |
+
<div class="webwinkelconnect-snippets">
|
37 |
+
<?php echo $this->getHtmlStars($snippets->getPercentage()); ?>
|
38 |
+
<p><?php echo Mage::helper('webwinkelconnect')->__('Rating %s based on %s customer reviews', '<span>' . $snippets->getPercentage() . '</span>%', '<span>' . $snippets->getVotes() . '</span>') ?> <?php echo $this->getExternalLink(); ?> </p>
|
39 |
+
</div>
|
40 |
+
<?php } ?>
|
41 |
<?php } ?>
|
app/locale/en_US/Magmodules_Webwinkelconnect.csv
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
"General Configuration","General Configuration"
|
2 |
"You can find the necessary information in your WebwinkelKeur dashboard bottom of the page -Place WebwinkelKeur mark- <br/> As addition next to the activation of this extension we also recommend you to place the appropriate WebwinkelKeur logo and banner.<br/><br/>","You can find the necessary information in your WebwinkelKeur dashboard bottom of the page -Place WebwinkelKeur mark- <br/> As addition next to the activation of this extension we also recommend you to place the appropriate WebwinkelKeur logo and banner.<br/><br/>"
|
3 |
"Enabled","Enabled"
|
@@ -7,7 +8,7 @@
|
|
7 |
"URL","URL"
|
8 |
"You can find this information in your WebwinkelKeur account","You can find this information in your WebwinkelKeur account"
|
9 |
"WebwinkelKeur Import Reviews","WebwinkelKeur Import Reviews"
|
10 |
-
"To display the latest reviews in your store, you must import the reviews. This can be done automatically or manually.","To display the latest reviews in your store, you must import the reviews. This can be done automatically or manually."
|
11 |
"Import Automatically","Import Automatically"
|
12 |
"Last Update","Last Update"
|
13 |
"Update Summary","Update Summary"
|
1 |
+
"%s, please check the online manual for suggestions.","%s, please check the online manual for suggestions."
|
2 |
"General Configuration","General Configuration"
|
3 |
"You can find the necessary information in your WebwinkelKeur dashboard bottom of the page -Place WebwinkelKeur mark- <br/> As addition next to the activation of this extension we also recommend you to place the appropriate WebwinkelKeur logo and banner.<br/><br/>","You can find the necessary information in your WebwinkelKeur dashboard bottom of the page -Place WebwinkelKeur mark- <br/> As addition next to the activation of this extension we also recommend you to place the appropriate WebwinkelKeur logo and banner.<br/><br/>"
|
4 |
"Enabled","Enabled"
|
8 |
"URL","URL"
|
9 |
"You can find this information in your WebwinkelKeur account","You can find this information in your WebwinkelKeur account"
|
10 |
"WebwinkelKeur Import Reviews","WebwinkelKeur Import Reviews"
|
11 |
+
"To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually. This feature is only available to PLUS members.<br/><br/>","To display the latest reviews in your store, you must import the reviews. <br/> This can be done automatically or manually. This feature is only available to PLUS members.<br/><br/>"
|
12 |
"Import Automatically","Import Automatically"
|
13 |
"Last Update","Last Update"
|
14 |
"Update Summary","Update Summary"
|
app/locale/nl_NL/Magmodules_Webwinkelconnect.csv
CHANGED
@@ -1,111 +1,113 @@
|
|
1 |
-
"
|
2 |
-
"
|
3 |
-
"
|
|
|
|
|
4 |
"API CREDENTIALS","API Gegevens"
|
5 |
-
"View all reviews","Lees alle beoordelingen"
|
6 |
-
"Webshop ID","Webshop ID"
|
7 |
"API Key","API Sleutel"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
"Import Automatically","Importeer automatisch"
|
|
|
|
|
|
|
|
|
|
|
13 |
"Last Update","Laatste update"
|
14 |
-
"Update Summary","Update samenvatting"
|
15 |
-
"Update Reviews","Update beoordelingen"
|
16 |
-
"Update Review History","Update historische beoordelingen"
|
17 |
-
"Process Manually","Handmatig inladen"
|
18 |
-
"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.","Gebruik de Magento Cronjob om automatisch beoordelingen in te laden. Zorg ervoor dat de Magento Cronjob werkt, is dit niet het geval? Neem dan contact op met je hosting-partij"
|
19 |
-
"Select the schedule for automatic updating","Selecteer de tijdsperiode waarin de beoordelingen moeten worden geüpdate"
|
20 |
"Latest Reviews Visibility","Laatste Beoordelingen zichtbaarheid"
|
21 |
-
"
|
22 |
"Left Sidebar","Linker Sidebar"
|
23 |
-
"
|
24 |
-
"Character length of Reviews","Lengte van een beoordelingen"
|
25 |
"Link to","Link naar"
|
26 |
-
"
|
27 |
-
"
|
28 |
-
"
|
29 |
-
"WebwinkelKeur Overview Page","WebwinkelKeur overzichtpagina"
|
30 |
-
"We can import your customer reviews and display them in your store as new content. <br/><br/> Link: http://www.mywebshop.com/<strong>webwinkelkeur</strong><br/><br/>","We kunnen uw klantbeoordelingen importeren en weergeven op een eigen pagina binnen uw webwinkel.<br> Hiermee worden de beoordelingen naast bij WebwinkelKeur ook op uw eigen website weergegeven.<br/><br/> Link: http://www.naamwebwinkel.nl/<strong>webwinkelkeur</strong><br/><br/>"
|
31 |
-
"Pagination","Pagina's opdelen"
|
32 |
-
"Pagination is the process of dividing (content) into discrete pages","Pagina's opdelen kan handig zijn wanneer er teveel beoordelingen zijn voor 1 pagina"
|
33 |
-
"Reviews per page","Aantal beoordelingen per pagina"
|
34 |
"Meta Data","Meta data"
|
35 |
-
"Meta Title","Meta titel"
|
36 |
-
"Meta Description","Meta omschrijving"
|
37 |
"Meta Keywords","Meta zoekwoorden"
|
38 |
-
"
|
39 |
-
"
|
40 |
-
"
|
41 |
-
"
|
42 |
-
"
|
43 |
-
"
|
44 |
-
"
|
45 |
-
"Send the invitation x days after the order is completed","Stuur de uitnodiging X dagen nadat de bovengenoemde status is bereikt"
|
46 |
-
"Maximum Delay","Maximale vertraging"
|
47 |
-
"Change only if necessary","Alleen veranderen wanneer aangegeven"
|
48 |
-
"Send customers automatically receive an invitation to share a customer experience. This feature is only available for WebwinkelKeur PLUS members.","Stuur klanten volledig automatisch een uitnodiging om hun klant ervaring te delen. Deze functie is alleen beschikbaar voor WebwinkelKeur PLUS leden"
|
49 |
-
"Specify at which status you want to send the invitation. Default is Completed","Geef aan bij welke status de uitnodiging verzonden moet worden. Standaard is dit <strong>Complete</strong>"
|
50 |
-
"This will ensure that the customer receives the invitation shortly after receiving the product and not before. This increases the opportunity that the client will share his experience.","Dit zal ervoor zorgen dat de klant pas na het ontvangst van het product de uitnodiging ontvangt. Dit verhoogt de kans dat de klant zijn ervaring zal delen."
|
51 |
-
"Number of days to complete order may last, if it takes longer then no invitation will be sent. Read more about this feature on WebwinkelKeur.nl.","Aantal dagen dat een sessie kan duren, als het langer duurt zal er geen uitnodiging zal worden verstuurd. Lees meer over deze functie op WebwinkelKeur.nl."
|
52 |
-
"WebwinkelKeur Javascript Sidebar","WebwinkelKeur Javascript Sidebar"
|
53 |
-
"The WebwinkelKeur javascript integration ensures that your WebwinkelKeur to load page on your own web store. <br/> Now customers don't have to leave your store anymore to read the reviews. <br/> This effectively increases your conversion!<br><br>","De WebwinkelKeur javascript integratie zorgt ervoor dat uw WebwinkelKeur pagina binnen uw eigen webwinkel te laden is. <br>Zo hoeven klanten uw webwinkel niet te verlaten om uw gegevens te bekijken, beoordelingen te lezen of te plaatsen. <br>Dit verhoogt daarmee uw conversie.<br><br>"
|
54 |
-
"Javascript Integration","Javascript Integratie"
|
55 |
-
"Show Sidebar","Sidebar tonen"
|
56 |
-
"Tooltip","Tooltip"
|
57 |
-
"Sidebar Position","Sidebar positie"
|
58 |
"Place of the sidebar","Plek van de sidebar"
|
59 |
-
"
|
60 |
-
"
|
61 |
-
"
|
62 |
-
"
|
63 |
-
"
|
64 |
-
"
|
65 |
-
"
|
66 |
-
"
|
67 |
-
"
|
68 |
-
"
|
69 |
-
"Clean After Days","Opschonen na aantal dagen"
|
70 |
-
"WebwinkelKeur Rich Snippets","WebwinkelKeur Rich Snippets"
|
71 |
-
"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=""webwinkelkeur/snippets"" name=""webwinkelsnippets""}} to call the block on the homepage.<br/><br/>","Rich snippets maken het mogelijk om bepaalde informatie aan Google door te geven.<br> Met deze Rich snippets kunt u uw gemiddelde beoordeling doorgeven aan Google waardoor er sterren kunnen verschijnen in de zoekresultaten. <br/><br/>Plaats: {{block type=""webwinkelkeur/snippets"" name=""webwinkelsnippets""}} in de CMS Homepage om het blok in te schakelen.<br/><br/>"
|
72 |
-
"WebwinkelKeur Reviews","Beoordelingen"
|
73 |
-
"WebwinkelKeur Log","WebwinkelKeur Log"
|
74 |
-
"WebwinkelKeur Config,"WebwinkelKeur Instellingen"
|
75 |
-
"Shop","Winkel"
|
76 |
-
"Experience","Recensie"
|
77 |
-
"Delivery","Verzending"
|
78 |
-
"Friendlyness","Vriendelijkheid"
|
79 |
-
"Price Quality","Prijs/kwaliteit"
|
80 |
-
"Sidebar","Sidebar"
|
81 |
-
"Delete all reviews","Verwijder alle recensies"
|
82 |
"Set to invisible","Deactiveer"
|
83 |
"Set to visible","Activeer"
|
84 |
-
"
|
85 |
-
"
|
86 |
-
"
|
87 |
-
"
|
88 |
-
"
|
89 |
-
"
|
|
|
|
|
|
|
|
|
|
|
90 |
"Total of %d review(s) were disabled.","Een totaal van %d beoordeling(en) zijn uitgeschakeld."
|
91 |
"Total of %d review(s) were enabled.","Een totaal van %d beoordeling(en) zijn ingeschakeld"
|
92 |
-
"Total of %d review(s) were added to the sidebar.","Een totaal van %d beoordelingen zijn toegevoegd aan de sidebar."
|
93 |
"Total of %d review(s) were removed from the sidebar.","Een totaal van %d beoordelingen zijn verwijdert uit de sidebar"
|
94 |
-
"
|
95 |
-
"
|
96 |
-
"
|
97 |
-
"
|
98 |
-
"
|
99 |
-
"
|
100 |
-
"
|
101 |
-
"Cleanup Log","Log opschonen"
|
102 |
-
"Write review","Schrijf beoordeling"
|
103 |
-
"Link","Link"
|
104 |
-
"Delivery Time","Verzending"
|
105 |
"Userfriendlyness","Vriendelijkheid"
|
106 |
-
"
|
107 |
-
"
|
108 |
-
"
|
109 |
-
"
|
|
|
110 |
"WebwinkelKeur Custom Blocks","WebwinkelKeur Blokken"
|
111 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"%s - Repsonse: %s","%s - Beoordling: %s"
|
2 |
+
"%s new review(s)","%s nieuwe beoordeling(en)"
|
3 |
+
"%s review(s) updated","%s beoordeling(en) geüpdatet"
|
4 |
+
"%s, please check the online manual for suggestions.","%s, controleer onze online handleiding voor suggesties."
|
5 |
+
"(more)","(meer)"
|
6 |
"API CREDENTIALS","API Gegevens"
|
|
|
|
|
7 |
"API Key","API Sleutel"
|
8 |
+
"Activate","Activeren"
|
9 |
+
"Active","Actief"
|
10 |
+
"Add Rich Snippets","Voeg Rich Snippets toe"
|
11 |
+
"Add to Sidebar","Plaats in Sidebar"
|
12 |
+
"Add to Sidebar Homepage","Voeg toe aan homepage sidebar"
|
13 |
+
"Aftersales","Service"
|
14 |
+
"Api URL","Api URL"
|
15 |
+
"Are you sure you want to cleanup logfiles?","Weet je zeker dat je alle logfiles wilt verwijderen?"
|
16 |
+
"Are you sure you want to delete all reviews?","Weet je zeker dat je alle beoordelingen wilt verwijderen?"
|
17 |
+
"Auto Cleaning","Automatisch opschonen"
|
18 |
+
"Based on %s reviews","Gebaseerd op %s beoordelingen"
|
19 |
+
"Character length of Reviews","Lengte van een beoordelingen"
|
20 |
+
"Clean After Days","Opschonen na aantal dagen"
|
21 |
+
"Cleanup Log","Log opschonen"
|
22 |
+
"Cron",Cron"
|
23 |
+
"Date","Datum"
|
24 |
+
"Delay","Vertraging"
|
25 |
+
"Delete","Verwijder"
|
26 |
+
"Delete all reviews","Verwijder alle recensies"
|
27 |
+
"Delivery Time","Verzending"
|
28 |
+
"Description","Beschrijving"
|
29 |
+
"Enable Log Function","Activeer log functionaliteit"
|
30 |
+
"Enabled","Actief"
|
31 |
+
"Every 15 minutes","Elke 15 minuten"
|
32 |
+
"Every Hour","Elk uur"
|
33 |
+
"Every other Hour","Om het uur"
|
34 |
+
"Experience","Ervaring"
|
35 |
+
"External (Webwinkelkeur.nl)","Extern (Webwinkelkeur.nl)"
|
36 |
+
"General Configuration","Algemene Configuratie"
|
37 |
"Import Automatically","Importeer automatisch"
|
38 |
+
"Internal (/webwinkelkeur)","Internal (/webwinkelkeur)"
|
39 |
+
"Invitation","Invitation"
|
40 |
+
"Invitation Call",Uitnodiging"
|
41 |
+
"Invitation to write the customer experience","Uitnodiging om een review e-mail te schrijven"
|
42 |
+
"Javascript Integration","Javascript Integratie"
|
43 |
"Last Update","Laatste update"
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
"Latest Reviews Visibility","Laatste Beoordelingen zichtbaarheid"
|
45 |
+
"Left","Links"
|
46 |
"Left Sidebar","Linker Sidebar"
|
47 |
+
"Link","Link"
|
|
|
48 |
"Link to","Link naar"
|
49 |
+
"Magmodules","Magmodules"
|
50 |
+
"Manual","Handmatig"
|
51 |
+
"Maximum Delay","Maximale vertraging"
|
|
|
|
|
|
|
|
|
|
|
52 |
"Meta Data","Meta data"
|
|
|
|
|
53 |
"Meta Keywords","Meta zoekwoorden"
|
54 |
+
"Name","Naam"
|
55 |
+
"No","Nee"
|
56 |
+
"No reviews found...","Geen beoordelingen gevonden..."
|
57 |
+
"None","Geen"
|
58 |
+
"Number of Reviews","Aantal beoordelingen"
|
59 |
+
"Once a Day","1 keer per dag"
|
60 |
+
"Once a Week","1 keer per week"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
"Place of the sidebar","Plek van de sidebar"
|
62 |
+
"Please select item(s)","Selecteer hier item(s)"
|
63 |
+
"Price / Quality","Prijs / Kwaliteit"
|
64 |
+
"Process Manually","Handmatig inladen"
|
65 |
+
"Rating","Beoordeeld"
|
66 |
+
"Rating %s based on %s customer reviews","Score %s gebaseerd op %s klantenbeoordelingen"
|
67 |
+
"Remove from Sidebar","Verwijder uit Sidebar"
|
68 |
+
"Reviews","Beoordelingen"
|
69 |
+
"Reviews Cron","Beoordeling Cron"
|
70 |
+
"Right","Rechts"
|
71 |
+
"Right Sidebar","Rechter Sidebar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
"Set to invisible","Deactiveer"
|
73 |
"Set to visible","Activeer"
|
74 |
+
"Shop","Winkel"
|
75 |
+
"Show Sidebar","Sidebar tonen"
|
76 |
+
"Sidebar","Sidebar"
|
77 |
+
"Sidebar Position","Sidebar positie"
|
78 |
+
"Stats Cron","Status Cron"
|
79 |
+
"Succefully deleted all %s saved review(s).","Succesvol verwijdert van %s beoordeling(en)."
|
80 |
+
"Test API","Test API"
|
81 |
+
"Time","Tijd"
|
82 |
+
"Tooltip","Tooltip"
|
83 |
+
"Total of %d log record(s) deleted.","Totaal van %d log regel(s) zijn verwijdert."
|
84 |
+
"Total of %d review(s) were added to the sidebar.","Een totaal van %d beoordelingen zijn toegevoegd aan de sidebar."
|
85 |
"Total of %d review(s) were disabled.","Een totaal van %d beoordeling(en) zijn uitgeschakeld."
|
86 |
"Total of %d review(s) were enabled.","Een totaal van %d beoordeling(en) zijn ingeschakeld"
|
|
|
87 |
"Total of %d review(s) were removed from the sidebar.","Een totaal van %d beoordelingen zijn verwijdert uit de sidebar"
|
88 |
+
"Total of %s log record(s) deleted.","Een totaal van %s log regel(s) zijn verwijdert."
|
89 |
+
"Twice a Day","2 keer per dag"
|
90 |
+
"Type","Type"
|
91 |
+
"URL","URL"
|
92 |
+
"Update Review History","Update historische beoordelingen"
|
93 |
+
"Update Reviews","Update beoordelingen"
|
94 |
+
"Update Summary","Update samenvatting"
|
|
|
|
|
|
|
|
|
95 |
"Userfriendlyness","Vriendelijkheid"
|
96 |
+
"View all reviews","Lees alle beoordelingen"
|
97 |
+
"Webshop ID","Webshop ID"
|
98 |
+
"Webwinkel ID %s:","Webwinkel ID %s:"
|
99 |
+
"Webwinkel ID %s: no updates found, feed is empty or not foud!","Webwinkel ID %s: geen updates gevonden, feed is leeg of niet gevonden"
|
100 |
+
"WebwinkelKeur","WebwinkelKeur"
|
101 |
"WebwinkelKeur Custom Blocks","WebwinkelKeur Blokken"
|
102 |
+
"WebwinkelKeur Import Reviews","WebwinkelKeur Import Reviews"
|
103 |
+
"WebwinkelKeur Javascript Sidebar","WebwinkelKeur Javascript Sidebar"
|
104 |
+
"WebwinkelKeur Log Settings","WebwinkelKeur log instellingen"
|
105 |
+
"WebwinkelKeur Overview Page","WebwinkelKeur overzichtpagina"
|
106 |
+
"WebwinkelKeur Permission Setting","WebwinkelKeur permissie instellingen"
|
107 |
+
"WebwinkelKeur Reviews",Beoordelingen"
|
108 |
+
"Webwinkelkeur Logs","Webwinkelkeur Logs"
|
109 |
+
"Write review","Schrijf beoordeling"
|
110 |
+
"Yes","Ja"
|
111 |
+
"and total score updated.","en totaal score geüpdatet."
|
112 |
+
"on","op"
|
113 |
+
"total score updated.","totaal score geüpdatet."
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Webwinkelconnect</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license/>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Connect your Magento shop to Webwinkelkeur</description>
|
11 |
<notes>First stable release</notes>
|
12 |
<authors><author><name>Magmodules</name><user>auto-converted</user><email>info@magmodules.nl</email></author></authors>
|
13 |
-
<date>2014-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="Magmodules"><dir name="Webwinkelconnect"><dir name="Block"><dir name="Adminhtml"><dir name="Webwinkellog"><file name="Grid.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magmodules_Webwinkelconnect</name>
|
4 |
+
<version>1.0.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license/>
|
7 |
<channel>community</channel>
|
10 |
<description>Connect your Magento shop to Webwinkelkeur</description>
|
11 |
<notes>First stable release</notes>
|
12 |
<authors><author><name>Magmodules</name><user>auto-converted</user><email>info@magmodules.nl</email></author></authors>
|
13 |
+
<date>2014-12-17</date>
|
14 |
+
<time>15:35:58</time>
|
15 |
+
<contents><target name="magelocal"><dir name="Magmodules"><dir name="Webwinkelconnect"><dir name="Block"><dir name="Adminhtml"><dir name="Webwinkellog"><file name="Grid.php" hash="82ab3154d8f67defaee43f69b96ab3b1"/></dir><dir name="Webwinkelreviews"><dir name="Renderer"><file name="Experience.php" hash="aada48c75ea91d244b7b9c92cd00120f"/></dir><file name="Grid.php" hash="5577ba977b99624150b4939842aa301b"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="4787bbaffd410554364ff4a5e1e63ac9"/><file name="Test.php" hash="b2b5c607bfac5cabd2a588ed38322749"/></dir><dir name="Form"><file name="Heading.php" hash="02e3828635cace2d0b9e027b83cd06ed"/></dir><dir name="Grid"><file name="Log.php" hash="7c14cb7ea86f63cc4561e15176b5f81c"/><file name="Seconds.php" hash="10dcf6a7640efa9fbcf7ef6ae7e9ae43"/><file name="Stars.php" hash="85ad993421de14fab686d52a8fa950f6"/></dir><dir name="Info"><file name="Info.php" hash="cce5fd559581170059c240ccbd4f494c"/></dir></dir><file name="Webwinkellog.php" hash="f612e6364574f05f809824fd8a38da88"/><file name="Webwinkelreviews.php" hash="36cf79d85b2253aabbe09c0b56d120cd"/></dir><file name="Custom.php" hash="c63942e28751a786790952f2838223bf"/><file name="Reviews.php" hash="d0bcb2f320b5467c8562352f5c99ed61"/><file name="Sidebar.php" hash="8e9e5ffaff528af96ec0c3fcd856758f"/><file name="Snippets.php" hash="1535a7bfbf96eddda9f69e2abb89d01d"/></dir><dir name="Helper"><file name="Data.php" hash="6a8186a71b8c8622975a944c5da0bb23"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="89243624a30bf222d0b8dfb2fac1b081"/></dir><dir name="Reviews"><file name="Collection.php" hash="ce9a3bafe5fa02c3d9c6582dd5beb756"/></dir><dir name="Stats"><file name="Collection.php" hash="6fdca00a42531fea30c1c0dcd2a92ca4"/></dir><file name="Log.php" hash="dadc9bb908ece8dd9132f4def52615bd"/><file name="Reviews.php" hash="83035fb0362d9b70e082976fd5442aa6"/><file name="Stats.php" hash="0ef2b3d186d79366824ba278575d3fd5"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="fd8c061c265d3c4ad1c3c3dcadd8abb0"/><file name="Orderstatus.php" hash="d31db8b504538d0708c180edae7ec718"/><file name="Position.php" hash="c8982d5dd8175146c93b813d3f001360"/><file name="Sidebarlink.php" hash="2161d465770d7d8e605340a2dfb67b08"/></dir></dir></dir><file name="Api.php" hash="738b91338adebf0473f576416ec26b08"/><file name="Log.php" hash="853c8f468509bf73114d626d6f72150d"/><file name="Observer.php" hash="cc23d646dbb035e237e268311e1662e0"/><file name="Reviews.php" hash="58cd41469de30e84e8f297d5fee0ca17"/><file name="Stats.php" hash="1f7abb4254e239a39492116aec4675b2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="WebwinkellogController.php" hash="e95152405a256d1fbb96188e2272dcbb"/><file name="WebwinkelreviewsController.php" hash="de304296175ac779ebb221aab376c619"/></dir><file name="IndexController.php" hash="ada8a868046d0c0709d30299a9615bfc"/></dir><dir name="etc"><file name="adminhtml.xml" hash="964a1a430ab69512e75c118b32b04edd"/><file name="config.xml" hash="19c33d6d53ba87cae7cc0527d9f7a04c"/><file name="system.xml" hash="5ae0bf597531ccfee02a07b7a4840154"/></dir><dir name="sql"><dir name="webwinkelconnect_setup"><file name="mysql4-install-1.0.1.php" hash="456058215ad80f59ec71e74d8f1af075"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="magmodules_webwinkelconnect.xml" hash="0e589fce607f517314266dea8ef7e34b"/></dir><dir name="template"><dir name="magmodules"><dir name="webwinkelconnect"><dir name="sidebar"><file name="js-sidebar.phtml" hash="24f9f033fd87089371d212b18a600130"/><file name="left.phtml" hash="192aa7247f9c6465c4d707a308eca2ee"/><file name="right.phtml" hash="71f0db4084f733eb802db5801af6d699"/></dir><dir name="widget"><file name="custom.phtml" hash="c71e537fe9f4650086afce3b59cb32aa"/><file name="richsnippets.phtml" hash="b1292310650b4a8e70ba1597276de582"/></dir><file name="index.phtml" hash="266bf7361d534bd05d3e0c6ffec2858e"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="magmodules_webwinkelconnect.xml" hash="34b4d3252daa7c80d230b049e0b73311"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magmodules_Webwinkelconnect.xml" hash="1784309611987476302cb191d4da009d"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Magmodules_Webwinkelconnect.csv" hash="21fadc8f926d7d0a77bca161982bd8c6"/></dir><dir name="nl_NL"><file name="Magmodules_Webwinkelconnect.csv" hash="d8693edf615c254d68e63a20a4e8c6f6"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="magmodules"><dir name="webwinkelconnect"><dir name="images"><file name="5-stars-empty.png" hash="799c499ca785331e7e69d892df52dd48"/><file name="5-stars-full.png" hash="1d06151a2c4da6bb71381538c8a903a5"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="b2370d97684a2fa2fbc42fb6de470e42"/><file name="sidebar.css" hash="2ce0e0147ac565e6819a43fd68ea331e"/><file name="style.css" hash="f58b58fa6bdab0022c5e8ebca8c86d67"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magmodules"><dir name="webwinkelconnect"><file name="grid.css" hash="ce720c1772a8176eabf3866fcd83bb7a"/><file name="star.png" hash="4beacfb62ebdd5feecd946494e895f4c"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|