Magmodules_Webwinkelconnect - Version 1.1.1

Version Notes

First stable release

Download this release

Release Info

Developer Magmodules
Extension Magmodules_Webwinkelconnect
Version 1.1.1
Comparing to
See all releases


Code changes from version 1.1.0 to 1.1.1

app/code/local/Magmodules/Webwinkelconnect/Block/Adminhtml/Widget/Info/Info.php CHANGED
@@ -24,7 +24,12 @@ class Magmodules_Webwinkelconnect_Block_Adminhtml_Widget_Info_Info extends Mage_
24
 
25
  public function render(Varien_Data_Form_Element_Abstract $element)
26
  {
27
- $html = '<div style="background:url(\'http://www.magmodules.eu/_logo.png\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 200px;">
 
 
 
 
 
28
  <h4>About Magmodules.eu</h4>
29
  <p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
30
  <br />
24
 
25
  public function render(Varien_Data_Form_Element_Abstract $element)
26
  {
27
+ $magento_version = Mage::getVersion();
28
+ $module_version = Mage::getConfig()->getNode()->modules->Magmodules_Webwinkelconnect->version;
29
+
30
+ $logo_link = '//www.magmodules.eu/logo/webwinkelconnect/' . $module_version . '/' . $magento_version . '/logo.png';
31
+
32
+ $html = '<div style="background:url(\'' . $logo_link . '\') no-repeat scroll 15px center #EAF0EE;border:1px solid #CCCCCC;margin-bottom:10px;padding:10px 5px 5px 200px;">
33
  <h4>About Magmodules.eu</h4>
34
  <p>We are a Magento only E-commerce Agency located in the Netherlands.<br>
35
  <br />
app/code/local/Magmodules/Webwinkelconnect/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
  <config>
25
  <modules>
26
  <Magmodules_Webwinkelconnect>
27
- <version>1.1.0</version>
28
  </Magmodules_Webwinkelconnect>
29
  </modules>
30
  <global>
24
  <config>
25
  <modules>
26
  <Magmodules_Webwinkelconnect>
27
+ <version>1.1.1</version>
28
  </Magmodules_Webwinkelconnect>
29
  </modules>
30
  <global>
app/code/local/Magmodules/Webwinkelconnect/etc/system.xml CHANGED
@@ -33,7 +33,7 @@
33
  <label>WebwinkelKeur</label>
34
  <tab>magmodules</tab>
35
  <frontend_type>text</frontend_type>
36
- <sort_order>42</sort_order>
37
  <show_in_default>1</show_in_default>
38
  <show_in_website>1</show_in_website>
39
  <show_in_store>1</show_in_store>
@@ -406,7 +406,7 @@
406
  <depends><right>1</right></depends>
407
  </right_link>
408
  <right_snippets translate="label">
409
- <label>Add to Sidebar Homepage</label>
410
  <frontend_type>select</frontend_type>
411
  <source_model>adminhtml/system_config_source_yesno</source_model>
412
  <sort_order>66</sort_order>
33
  <label>WebwinkelKeur</label>
34
  <tab>magmodules</tab>
35
  <frontend_type>text</frontend_type>
36
+ <sort_order>123</sort_order>
37
  <show_in_default>1</show_in_default>
38
  <show_in_website>1</show_in_website>
39
  <show_in_store>1</show_in_store>
406
  <depends><right>1</right></depends>
407
  </right_link>
408
  <right_snippets translate="label">
409
+ <label>Add Rich Snippets</label>
410
  <frontend_type>select</frontend_type>
411
  <source_model>adminhtml/system_config_source_yesno</source_model>
412
  <sort_order>66</sort_order>
app/design/frontend/base/default/template/magmodules/webwinkelconnect/sidebar/left.phtml CHANGED
@@ -19,16 +19,18 @@
19
  * @copyright Copyright (c) 2016 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
- $sidebarreviews = $this->getSidebarCollection('left');
23
- $total = $this->getTotalScore();
24
  ?>
25
- <?php if($sidebarreviews && $total): ?>
 
 
 
 
26
  <div class="block webwinkelkeur-sidebar">
27
  <div class="block-title">
28
  <strong><span><?php echo $this->__('WebwinkelKeur') ?></span></strong>
29
  </div>
30
- <?php if($total->getPercentage() > 0): ?>
31
- <?php if($this->getSnippetsEnabled('left')): ?>
32
  <div class="block-content" itemscope itemtype="http://schema.org/WebPage">
33
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
34
  <div class="total-block-text" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
@@ -36,33 +38,33 @@
36
  <p class="based-on"><?php echo $this->__('Based on %s reviews', '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?></p>
37
  </div>
38
  </div>
39
- <?php else: ?>
40
  <div class="block-content">
41
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
42
  <div class="total-block-text">
43
  <p><strong><?php echo $total->getStarsQty(); ?> / 10</strong></p>
44
  </div>
45
  </div>
46
- <?php endif; ?>
47
- <?php endif; ?>
48
- <?php $i=0; foreach($sidebarreviews as $sidebarreview): ?>
49
  <?php $content = $this->formatContent($sidebarreview, 'left'); ?>
50
  <div class="block-content">
51
  <div class="shopreview-sidebar-block">
52
  <p><?php echo $content; ?></p>
53
  <span class="rating-name"><?php echo $sidebarreview->getName(); ?></span>
54
- <?php if($sidebarreview->getRating()): ?>
55
  <span class="rating-empty"><span class="rating-star-<?php echo $sidebarreview->getRating();?>"></span></span>
56
- <?php endif; ?>
57
  </div>
58
  </div>
59
- <?php endforeach; ?>
60
- <?php if($reviewurl = $this->getReviewsUrl()): ?>
61
  <div class="block-content">
62
  <div class="actions">
63
  <?php echo $reviewurl; ?>
64
  </div>
65
  </div>
66
- <?php endif; ?>
67
  </div>
68
- <?php endif; ?>
19
  * @copyright Copyright (c) 2016 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
 
 
22
  ?>
23
+ <?php
24
+ $sidebarreviews = $this->getSidebarCollection('left');
25
+ $total = $this->getTotalScore();
26
+ ?>
27
+ <?php if($sidebarreviews && $total) { ?>
28
  <div class="block webwinkelkeur-sidebar">
29
  <div class="block-title">
30
  <strong><span><?php echo $this->__('WebwinkelKeur') ?></span></strong>
31
  </div>
32
+ <?php if($total->getPercentage() > 0) { ?>
33
+ <?php if($this->getSnippetsEnabled('left')) { ?>
34
  <div class="block-content" itemscope itemtype="http://schema.org/WebPage">
35
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
36
  <div class="total-block-text" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
38
  <p class="based-on"><?php echo $this->__('Based on %s reviews', '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?></p>
39
  </div>
40
  </div>
41
+ <?php } else { ?>
42
  <div class="block-content">
43
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
44
  <div class="total-block-text">
45
  <p><strong><?php echo $total->getStarsQty(); ?> / 10</strong></p>
46
  </div>
47
  </div>
48
+ <?php } ?>
49
+ <?php } ?>
50
+ <?php foreach($sidebarreviews as $sidebarreview) { ?>
51
  <?php $content = $this->formatContent($sidebarreview, 'left'); ?>
52
  <div class="block-content">
53
  <div class="shopreview-sidebar-block">
54
  <p><?php echo $content; ?></p>
55
  <span class="rating-name"><?php echo $sidebarreview->getName(); ?></span>
56
+ <?php if($sidebarreview->getRating()) { ?>
57
  <span class="rating-empty"><span class="rating-star-<?php echo $sidebarreview->getRating();?>"></span></span>
58
+ <?php } ?>
59
  </div>
60
  </div>
61
+ <?php } ?>
62
+ <?php if($reviewurl = $this->getReviewsUrl()) { ?>
63
  <div class="block-content">
64
  <div class="actions">
65
  <?php echo $reviewurl; ?>
66
  </div>
67
  </div>
68
+ <?php } ?>
69
  </div>
70
+ <?php } ?>
app/design/frontend/base/default/template/magmodules/webwinkelconnect/sidebar/right.phtml CHANGED
@@ -19,17 +19,18 @@
19
  * @copyright Copyright (c) 2016 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
22
- $sidebarreviews = $this->getSidebarCollection('right');
23
- $total = $this->helper('webwinkelconnect')->getTotalScore();
24
  ?>
25
-
26
- <?php if($sidebarreviews): ?>
 
 
 
27
  <div class="block webwinkelkeur-sidebar">
28
  <div class="block-title">
29
  <strong><span><?php echo $this->__('WebwinkelKeur') ?></span></strong>
30
  </div>
31
- <?php if($total->getPercentage() > 0): ?>
32
- <?php if($this->getSnippetsEnabled('right')): ?>
33
  <div class="block-content" itemscope itemtype="http://schema.org/WebPage">
34
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
35
  <div class="total-block-text" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
@@ -37,33 +38,33 @@
37
  <p class="based-on"><?php echo $this->__('Based on %s reviews', '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?></p>
38
  </div>
39
  </div>
40
- <?php else: ?>
41
  <div class="block-content">
42
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
43
  <div class="total-block-text">
44
  <p><strong><?php echo $total->getStarsQty(); ?> / 10</strong></p>
45
  </div>
46
  </div>
47
- <?php endif; ?>
48
- <?php endif; ?>
49
- <?php $i=0; foreach($sidebarreviews as $sidebarreview): ?>
50
  <?php $content = $this->formatContent($sidebarreview, 'right'); ?>
51
  <div class="block-content">
52
  <div class="shopreview-sidebar-block">
53
  <p><?php echo $content; ?></p>
54
  <span class="rating-name"><?php echo $sidebarreview->getName(); ?></span>
55
- <?php if($sidebarreview->getRating()): ?>
56
  <span class="rating-empty"><span class="rating-star-<?php echo $sidebarreview->getRating();?>"></span></span>
57
- <?php endif; ?>
58
  </div>
59
  </div>
60
- <?php endforeach; ?>
61
- <?php if($reviewurl = $this->getReviewsUrl()): ?>
62
  <div class="block-content">
63
  <div class="actions">
64
  <?php echo $reviewurl; ?>
65
  </div>
66
  </div>
67
- <?php endif; ?>
68
  </div>
69
- <?php endif; ?>
19
  * @copyright Copyright (c) 2016 (http://www.magmodules.eu)
20
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
  */
 
 
22
  ?>
23
+ <?php
24
+ $sidebarreviews = $this->getSidebarCollection('right');
25
+ $total = $this->getTotalScore();
26
+ ?>
27
+ <?php if($sidebarreviews && $total) { ?>
28
  <div class="block webwinkelkeur-sidebar">
29
  <div class="block-title">
30
  <strong><span><?php echo $this->__('WebwinkelKeur') ?></span></strong>
31
  </div>
32
+ <?php if($total->getPercentage() > 0) { ?>
33
+ <?php if($this->getSnippetsEnabled('right')) { ?>
34
  <div class="block-content" itemscope itemtype="http://schema.org/WebPage">
35
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
36
  <div class="total-block-text" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
38
  <p class="based-on"><?php echo $this->__('Based on %s reviews', '<span itemprop="ratingCount">' . $total->getVotes() . '</span>'); ?></p>
39
  </div>
40
  </div>
41
+ <?php } else { ?>
42
  <div class="block-content">
43
  <div class="total-block-stars"><span style="width: <?php echo $total->getPercentage(); ?>%"></span></div>
44
  <div class="total-block-text">
45
  <p><strong><?php echo $total->getStarsQty(); ?> / 10</strong></p>
46
  </div>
47
  </div>
48
+ <?php } ?>
49
+ <?php } ?>
50
+ <?php foreach($sidebarreviews as $sidebarreview) { ?>
51
  <?php $content = $this->formatContent($sidebarreview, 'right'); ?>
52
  <div class="block-content">
53
  <div class="shopreview-sidebar-block">
54
  <p><?php echo $content; ?></p>
55
  <span class="rating-name"><?php echo $sidebarreview->getName(); ?></span>
56
+ <?php if($sidebarreview->getRating()) { ?>
57
  <span class="rating-empty"><span class="rating-star-<?php echo $sidebarreview->getRating();?>"></span></span>
58
+ <?php } ?>
59
  </div>
60
  </div>
61
+ <?php } ?>
62
+ <?php if($reviewurl = $this->getReviewsUrl()) { ?>
63
  <div class="block-content">
64
  <div class="actions">
65
  <?php echo $reviewurl; ?>
66
  </div>
67
  </div>
68
+ <?php } ?>
69
  </div>
70
+ <?php } ?>
app/design/frontend/base/default/template/magmodules/webwinkelconnect/widget/custom.phtml CHANGED
@@ -22,28 +22,14 @@
22
 
23
  // Load data
24
  $enabled = $this->getWebwinkelconnectEnabled();
25
- $data = $this->getWebwinkelconnectData();
26
-
27
- // All available data
28
- $company = $data->getCompany();
29
- $avarage = $data->getAvarage();
30
- $avarage_stars = $data->getAvarageStars();
31
- $percentage_positive = $data->getPercentagePositive();
32
- $number_positive = $data->getNumberPositive();
33
- $percentage_neutral = $data->getPercentageNeutral();
34
- $number_neutral = $data->getNumberNeutral();
35
- $percentage_negative = $data->getPercentageNegative();
36
- $number_negative = $data->getNumberNegative();
37
- $percentage = $data->getPercentage();
38
- $stars_qty = $data->getStarsQty();
39
 
40
  ?>
41
- <?php if($enabled) { ?>
42
  <div class="webwinkelconnect-custom">
43
- <div class="client">Klanten vinden <?php echo $company; ?> goed!</div>
44
  <div class="rating-box">
45
- <div class="rating" style="width:<?php echo $percentage; ?>%"> </div>
46
  </div>
47
- <div class="number">o.b.v. <?php echo $number_positive; ?> klanten</div>
48
  </div>
49
  <?php } ?>
22
 
23
  // Load data
24
  $enabled = $this->getWebwinkelconnectEnabled();
25
+ $total = $this->getWebwinkelconnectData();
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  ?>
28
+ <?php if($enabled && !empty($total)) { ?>
29
  <div class="webwinkelconnect-custom">
 
30
  <div class="rating-box">
31
+ <div class="rating" style="width:<?php echo $total->getPercentage(); ?>%"> </div>
32
  </div>
33
+ <div class="number">o.b.v. <?php echo $total->getVotes(); ?> klanten</div>
34
  </div>
35
  <?php } ?>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Webwinkelconnect</name>
4
- <version>1.1.0</version>
5
  <stability>stable</stability>
6
- <license/>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Connect your Magento shop to Webwinkelkeur</summary>
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>2016-04-12</date>
14
- <time>13:23:09</time>
15
- <contents><target name="magelocal"><dir name="Magmodules"><dir name="Webwinkelconnect"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Version.php" hash="1ba46a72ad79b7676564a3749288372f"/></dir><dir name="Webwinkellog"><file name="Grid.php" hash="49c90878ba370466315ef8f31b13125f"/></dir><dir name="Webwinkelreviews"><dir name="Renderer"><file name="Experience.php" hash="00059de0643e03b927422bf876ce0b62"/></dir><file name="Grid.php" hash="30acb5d78daf578d716fee8946db5c93"/></dir><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="a30f6c484054c6f7708d0478516e07a8"/><file name="Test.php" hash="04b11a53cd1e38c6ed0a3835f3d2502a"/></dir><dir name="Form"><file name="Heading.php" hash="5498ca0123d64a918382ca8f770785a2"/></dir><dir name="Grid"><file name="Log.php" hash="189a8353f1d796ffd18f69f58f50ffec"/><file name="Seconds.php" hash="252fa1ba18a6a1730e3f3c3b0b48a538"/><file name="Stars.php" hash="6e612fb47248a5785224a03557545a77"/></dir><dir name="Info"><file name="Info.php" hash="4e63eeda117003f51e439288db9bf6fe"/></dir></dir><file name="Webwinkellog.php" hash="91ae5cc3a71011f6b50c7cba0b848de2"/><file name="Webwinkelreviews.php" hash="0978a792e68fe7e05ebf01201aa8a1b4"/></dir><file name="Custom.php" hash="2e0ebd97f2a62a778187394ca86b4e69"/><file name="Reviews.php" hash="6ef47f43f23455cef296004f14ac876b"/><file name="Sidebar.php" hash="c0a2f7a47a6ef31ea89b0f957c3d566b"/><file name="Snippets.php" hash="1535a7bfbf96eddda9f69e2abb89d01d"/></dir><dir name="Helper"><file name="Data.php" hash="3569a8a61b7816a2ef192e3025a6f86d"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="29e0546a62ac65529d098e9f35de63a9"/></dir><dir name="Reviews"><file name="Collection.php" hash="277db9162cc77920dc9908f5e1632ca1"/></dir><dir name="Stats"><file name="Collection.php" hash="2aa92cf6d9fbdfea485a271b77b89773"/></dir><file name="Log.php" hash="a6075ad109911dfbba4246ff4515dd18"/><file name="Reviews.php" hash="0d67d2e3b474fa93731f83a9e19b9953"/><file name="Stats.php" hash="876f7786687b353b6c6b717cb7fe2078"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="2557eeef91be4487efdeb34c8bd1cb9c"/><file name="Cronfrequencylong.php" hash="f117dc0e59d619a56a575d1c224ca575"/><file name="Language.php" hash="0250136500c2af5cde6de8212d9fa00e"/><file name="Orderstatus.php" hash="739d600e0fcba5bdaf7b9cb5422e966d"/><file name="Position.php" hash="59cc0d6fcf673497ac792739c1839fc1"/><file name="Sidebarlink.php" hash="d3de1d3e38abeaae2e5ad48f7e045f98"/></dir></dir></dir><file name="Api.php" hash="31082b27d0fb5c119f8c5990928f7618"/><file name="Log.php" hash="b3467e859fde0036023a73d2a47ad64f"/><file name="Observer.php" hash="570ff211feb36ecd56a98a9db5b05d7d"/><file name="Reviews.php" hash="337157bef7a04c2dcfd61b9253364d12"/><file name="Stats.php" hash="9d47fa394271ace74498a9acfe37dec0"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="WebwinkellogController.php" hash="aa2db0805340d3379bb8592bf452e9e7"/><file name="WebwinkelreviewsController.php" hash="2392fdda21c551dcfe1a1a09b86b907b"/></dir><file name="IndexController.php" hash="f14fade8dff7311f4ad1e72c36c59c17"/></dir><dir name="data"><dir name="webwinkelconnect_setup"><file name="data-upgrade-1.0.8-1.0.9.php" hash="629719be47c3247466b66acb16bb4957"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="50b3069d0b78206dd00b3870fa541365"/><file name="config.xml" hash="9db2bfdd3952ee4259aa222cea13341e"/><file name="system.xml" hash="8e9036e28055487ab3bedcac44ac523d"/></dir><dir name="sql"><dir name="webwinkelconnect_setup"><file name="mysql4-install-1.0.1.php" hash="e61ce8348d2280577f3dac4887093ad2"/></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="febf8a3614d4a7335912156886f5c34d"/><file name="left.phtml" hash="f28722c811d1bcd92d9ea0b70a610892"/><file name="right.phtml" hash="fb6e0be0932a38707a7fcb61d460cbda"/></dir><dir name="widget"><file name="custom.phtml" hash="51a272f137502471e21556f6a4a6580f"/><file name="richsnippets.phtml" hash="2c72e6454b326fe6097b4ee2054f9794"/></dir><file name="index.phtml" hash="886f1c12663219bbd0111d100abd738f"/></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="efbc09050642b8b557749803b1b29d62"/></dir><dir name="nl_NL"><file name="Magmodules_Webwinkelconnect.csv" hash="be318ae191adfe45d0db88a0ba586a23"/></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="bkg_rating.gif" hash="0efa835d6b68d7f8042170b182ace2a9"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="e402d40db02e62f100d12d6dcc963e91"/><file name="sidebar.css" hash="2ce0e0147ac565e6819a43fd68ea331e"/><file name="style.css" hash="4de2d4973d80a8e99045b1d0053ae9f7"/></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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magmodules_Webwinkelconnect</name>
4
+ <version>1.1.1</version>
5
  <stability>stable</stability>
6
+ <license>OSL 3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Connect your Magento shop to Webwinkelkeur</summary>
10
  <description>Connect your Magento shop to Webwinkelkeur</description>
11
  <notes>First stable release</notes>
12
+ <authors><author><name>Magmodules</name><user>magmodules</user><email>info@magmodules.nl</email></author></authors>
13
+ <date>2016-06-19</date>
14
+ <time>09:38:05</time>
15
+ <contents><target name="magelocal"><dir name="Magmodules"><dir name="Webwinkelconnect"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Version.php" hash="1ba46a72ad79b7676564a3749288372f"/></dir><dir name="Webwinkellog"><file name="Grid.php" hash="49c90878ba370466315ef8f31b13125f"/></dir><file name="Webwinkellog.php" hash="91ae5cc3a71011f6b50c7cba0b848de2"/><dir name="Webwinkelreviews"><file name="Grid.php" hash="30acb5d78daf578d716fee8946db5c93"/><dir name="Renderer"><file name="Experience.php" hash="00059de0643e03b927422bf876ce0b62"/></dir></dir><file name="Webwinkelreviews.php" hash="0978a792e68fe7e05ebf01201aa8a1b4"/><dir name="Widget"><dir name="Buttons"><file name="Process.php" hash="a30f6c484054c6f7708d0478516e07a8"/><file name="Test.php" hash="04b11a53cd1e38c6ed0a3835f3d2502a"/></dir><dir name="Form"><file name="Heading.php" hash="5498ca0123d64a918382ca8f770785a2"/></dir><dir name="Grid"><file name="Log.php" hash="189a8353f1d796ffd18f69f58f50ffec"/><file name="Seconds.php" hash="252fa1ba18a6a1730e3f3c3b0b48a538"/><file name="Stars.php" hash="6e612fb47248a5785224a03557545a77"/></dir><dir name="Info"><file name="Info.php" hash="86748ca3f7c32c893cd1266c01c9179a"/></dir></dir></dir><file name="Custom.php" hash="2e0ebd97f2a62a778187394ca86b4e69"/><file name="Reviews.php" hash="6ef47f43f23455cef296004f14ac876b"/><file name="Sidebar.php" hash="c0a2f7a47a6ef31ea89b0f957c3d566b"/><file name="Snippets.php" hash="1535a7bfbf96eddda9f69e2abb89d01d"/></dir><dir name="Helper"><file name="Data.php" hash="3569a8a61b7816a2ef192e3025a6f86d"/></dir><dir name="Model"><file name="Api.php" hash="31082b27d0fb5c119f8c5990928f7618"/><file name="Log.php" hash="b3467e859fde0036023a73d2a47ad64f"/><dir name="Mysql4"><dir name="Log"><file name="Collection.php" hash="29e0546a62ac65529d098e9f35de63a9"/></dir><file name="Log.php" hash="a6075ad109911dfbba4246ff4515dd18"/><dir name="Reviews"><file name="Collection.php" hash="277db9162cc77920dc9908f5e1632ca1"/></dir><file name="Reviews.php" hash="0d67d2e3b474fa93731f83a9e19b9953"/><dir name="Stats"><file name="Collection.php" hash="2aa92cf6d9fbdfea485a271b77b89773"/></dir><file name="Stats.php" hash="876f7786687b353b6c6b717cb7fe2078"/></dir><file name="Observer.php" hash="570ff211feb36ecd56a98a9db5b05d7d"/><file name="Reviews.php" hash="337157bef7a04c2dcfd61b9253364d12"/><file name="Stats.php" hash="9d47fa394271ace74498a9acfe37dec0"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Cronfrequency.php" hash="2557eeef91be4487efdeb34c8bd1cb9c"/><file name="Cronfrequencylong.php" hash="f117dc0e59d619a56a575d1c224ca575"/><file name="Language.php" hash="0250136500c2af5cde6de8212d9fa00e"/><file name="Orderstatus.php" hash="739d600e0fcba5bdaf7b9cb5422e966d"/><file name="Position.php" hash="59cc0d6fcf673497ac792739c1839fc1"/><file name="Sidebarlink.php" hash="d3de1d3e38abeaae2e5ad48f7e045f98"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="WebwinkellogController.php" hash="aa2db0805340d3379bb8592bf452e9e7"/><file name="WebwinkelreviewsController.php" hash="2392fdda21c551dcfe1a1a09b86b907b"/></dir><file name="IndexController.php" hash="f14fade8dff7311f4ad1e72c36c59c17"/></dir><dir name="data"><dir name="webwinkelconnect_setup"><file name="data-upgrade-1.0.8-1.0.9.php" hash="629719be47c3247466b66acb16bb4957"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="50b3069d0b78206dd00b3870fa541365"/><file name="config.xml" hash="0b30c473a1206f3e8186fda7a263c9e4"/><file name="system.xml" hash="3bf5b64888eb26a89f544fdfb071a824"/></dir><dir name="sql"><dir name="webwinkelconnect_setup"><file name="mysql4-install-1.0.1.php" hash="e61ce8348d2280577f3dac4887093ad2"/></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"><file name="index.phtml" hash="886f1c12663219bbd0111d100abd738f"/><dir name="sidebar"><file name="js-sidebar.phtml" hash="febf8a3614d4a7335912156886f5c34d"/><file name="left.phtml" hash="8fe479e77b503b1ee43b9bcae4ccb240"/><file name="right.phtml" hash="15521a01ffd1cf7d158b9242496f91c6"/></dir><dir name="widget"><file name="custom.phtml" hash="790ab26d554ed701e093a67403f9c56a"/><file name="richsnippets.phtml" hash="2c72e6454b326fe6097b4ee2054f9794"/></dir></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><dir name="en_US"><file name="Magmodules_Webwinkelconnect.csv" hash="efbc09050642b8b557749803b1b29d62"/></dir><dir name="nl_NL"><file name="Magmodules_Webwinkelconnect.csv" hash="be318ae191adfe45d0db88a0ba586a23"/></dir></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="bkg_rating.gif" hash="0efa835d6b68d7f8042170b182ace2a9"/><file name="greystar.png" hash="ab99888c7a8f47826ad7a83bcabf9130"/><file name="star.png" hash="647c77f0ef881fb2a90a4f53f70d75fa"/></dir><file name="richsnippets.css" hash="e402d40db02e62f100d12d6dcc963e91"/><file name="sidebar.css" hash="2ce0e0147ac565e6819a43fd68ea331e"/><file name="style.css" hash="4de2d4973d80a8e99045b1d0053ae9f7"/></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><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>