ShopLogin_ShopLogin - Version 1.4.6

Version Notes

Basis Extension for ShopLogin including the Plugins "Log in with ShopLogin" and "ShopLogin global Wish List".

Download this release

Release Info

Developer Shoplogin
Extension ShopLogin_ShopLogin
Version 1.4.6
Comparing to
See all releases


Code changes from version 1.4.1 to 1.4.6

app/code/community/ShopLogin/ShopLogin/Block/Default.php CHANGED
@@ -1,9 +1,4 @@
1
  <?php
2
- /*
3
- * Log in with ShopLogin for Magento
4
- * https://www.shoplogin.com/for-merchants/
5
- * v1.4.1 for Magento
6
- */
7
 
8
  class ShopLogin_ShopLogin_Block_Default extends Mage_Core_Block_Template {
9
  private $_helper;
@@ -53,3 +48,5 @@ class ShopLogin_ShopLogin_Block_Default extends Mage_Core_Block_Template {
53
  }
54
 
55
  }
 
 
1
  <?php
 
 
 
 
 
2
 
3
  class ShopLogin_ShopLogin_Block_Default extends Mage_Core_Block_Template {
4
  private $_helper;
48
  }
49
 
50
  }
51
+
52
+ ?>
app/code/community/ShopLogin/ShopLogin/Helper/Data.php CHANGED
@@ -1,9 +1,4 @@
1
  <?php
2
- /*
3
- * Log in with ShopLogin for Magento
4
- * https://www.shoplogin.com/for-merchants/
5
- * v1.4.1 for Magento
6
- */
7
 
8
  class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
9
 
@@ -65,22 +60,64 @@ class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
65
 
66
  public function getClientId()
67
  {
68
- return Mage::getStoreConfig('shoplogin/settings/clientid');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  }
70
 
71
  public function getRecommendationLicenseKey()
72
  {
73
- return Mage::getStoreConfig('shoplogin/settings_recommendation/licensekey');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
 
76
  public function getClientSecret()
77
  {
78
- return Mage::getStoreConfig('shoplogin/settings/clientsecret');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  }
80
 
81
  public function getIsUserConnected()
82
  {
83
- // hier wird abgefragt ob der aktuelle User bereits mit ShopLogin über die Tabelle verknüpft ist.
84
 
85
  if(Mage::getSingleton('customer/session')->isLoggedIn())
86
  {
@@ -118,7 +155,7 @@ class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
118
 
119
  public function get_user_isauthorized($signed_request = false)
120
  {
121
- // hier werden die Basisdaten des Users (eMail, Vorname, Nachame, Token) mit Hilfe des AppSecret aus dem verschlüsselten Cookie herausgelesen
122
 
123
  if(isset($_COOKIE['shoplogin_'.$this->appid]) && $_COOKIE['shoplogin_'.$this->appid])
124
  {
@@ -155,7 +192,7 @@ class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
155
 
156
  public function get_address_fromtoken($data_token = '', $addon='')
157
  {
158
- // hier wird die API mit dem Token aus dem Cookie abgefragt, bei Erfolg liefert diese die Adressdaten des Users zurück
159
 
160
  if(strlen($data_token) != 74)
161
  {
@@ -172,7 +209,7 @@ class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
172
 
173
  protected function do_curl($url)
174
  {
175
- // Abfrage der Api mit CURL mit einigen zusätzlichen Parametern wie Version etc.
176
  // sowie einer Checksumme bestehend aus der "komplettenUrl#AppSecret"
177
 
178
  $url = $url."&version=magento-".Mage::getConfig()->getModuleConfig("ShopLogin_ShopLogin")->version."&shop_system=magento-".Mage::getVersion();
@@ -182,7 +219,7 @@ class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
182
  curl_setopt($ch, CURLOPT_URL, $url);
183
  curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , 5);
184
  curl_setopt($ch, CURLOPT_TIMEOUT, 10);
185
- curl_setopt($ch, CURLOPT_USERAGENT, 'sl-magento-1.4.1');
186
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
187
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
188
 
@@ -215,4 +252,4 @@ class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
215
 
216
  }
217
 
218
- ?>
1
  <?php
 
 
 
 
 
2
 
3
  class ShopLogin_ShopLogin_Helper_Data extends Mage_Core_Helper_Abstract {
4
 
60
 
61
  public function getClientId()
62
  {
63
+ $domain = @getenv("HTTP_HOST");
64
+ if(!$domain) { $domain = @getenv("HTTP_X_FORWARDED_HOST"); }
65
+ $clientids = explode("_", Mage::getStoreConfig('shoplogin/settings/clientid'));
66
+ if(count($clientids) == 1)
67
+ {
68
+ return $clientids[0];
69
+ }
70
+ foreach($clientids as $k)
71
+ {
72
+ $details = explode(":", $k);
73
+ if(substr_count($details[0],$domain) || substr_count($domain, $details[0]))
74
+ {
75
+ return $details[1];
76
+ }
77
+ }
78
  }
79
 
80
  public function getRecommendationLicenseKey()
81
  {
82
+ $domain = @getenv("HTTP_HOST");
83
+ if(!$domain) { $domain = @getenv("HTTP_X_FORWARDED_HOST"); }
84
+ $clientids = explode("_", Mage::getStoreConfig('shoplogin/settings_recommendation/licensekey'));
85
+ if(count($clientids) == 1)
86
+ {
87
+ return $clientids[0];
88
+ }
89
+ foreach($clientids as $k)
90
+ {
91
+ $details = explode(":", $k);
92
+ if(substr_count($details[0],$domain) || substr_count($domain, $details[0]))
93
+ {
94
+ return $details[1];
95
+ }
96
+ }
97
  }
98
 
99
  public function getClientSecret()
100
  {
101
+ $domain = @getenv("HTTP_HOST");
102
+ if(!$domain) { $domain = @getenv("HTTP_X_FORWARDED_HOST"); }
103
+ $clientids = explode("_", Mage::getStoreConfig('shoplogin/settings/clientsecret'));
104
+ if(count($clientids) == 1)
105
+ {
106
+ return $clientids[0];
107
+ }
108
+ foreach($clientids as $k)
109
+ {
110
+ $details = explode(":", $k);
111
+ if(substr_count($details[0],$domain) || substr_count($domain, $details[0]))
112
+ {
113
+ return $details[1];
114
+ }
115
+ }
116
  }
117
 
118
  public function getIsUserConnected()
119
  {
120
+ // hier wird abgefragt ob der aktuelle User bereits mit ShopLogin über die Tabelle verknüpft ist.
121
 
122
  if(Mage::getSingleton('customer/session')->isLoggedIn())
123
  {
155
 
156
  public function get_user_isauthorized($signed_request = false)
157
  {
158
+ // hier werden die Basisdaten des Users (eMail, Vorname, Nachame, Token) mit Hilfe des AppSecret aus dem verschlüsselten Cookie herausgelesen
159
 
160
  if(isset($_COOKIE['shoplogin_'.$this->appid]) && $_COOKIE['shoplogin_'.$this->appid])
161
  {
192
 
193
  public function get_address_fromtoken($data_token = '', $addon='')
194
  {
195
+ // hier wird die API mit dem Token aus dem Cookie abgefragt, bei Erfolg liefert diese die Adressdaten des Users zurück
196
 
197
  if(strlen($data_token) != 74)
198
  {
209
 
210
  protected function do_curl($url)
211
  {
212
+ // Abfrage der Api mit CURL mit einigen zusätzlichen Parametern wie Version etc.
213
  // sowie einer Checksumme bestehend aus der "komplettenUrl#AppSecret"
214
 
215
  $url = $url."&version=magento-".Mage::getConfig()->getModuleConfig("ShopLogin_ShopLogin")->version."&shop_system=magento-".Mage::getVersion();
219
  curl_setopt($ch, CURLOPT_URL, $url);
220
  curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , 5);
221
  curl_setopt($ch, CURLOPT_TIMEOUT, 10);
222
+ curl_setopt($ch, CURLOPT_USERAGENT, 'sl-magento-1.4.6');
223
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
224
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
225
 
252
 
253
  }
254
 
255
+ ?>
app/code/community/ShopLogin/ShopLogin/Model/Shoplogin.php CHANGED
@@ -1,9 +1,4 @@
1
  <?php
2
- /*
3
- * Log in with ShopLogin for Magento
4
- * https://www.shoplogin.com/for-merchants/
5
- * v1.4.1 for Magento
6
- */
7
 
8
  class ShopLogin_ShopLogin_Model_Shoplogin extends Mage_Core_Model_Abstract
9
  {
1
  <?php
 
 
 
 
 
2
 
3
  class ShopLogin_ShopLogin_Model_Shoplogin extends Mage_Core_Model_Abstract
4
  {
app/code/community/ShopLogin/ShopLogin/controllers/CustomerController.php CHANGED
@@ -1,9 +1,4 @@
1
  <?php
2
- /*
3
- * Log in with ShopLogin for Magento
4
- * https://www.shoplogin.com/for-merchants/
5
- * v1.4.1 for Magento
6
- */
7
 
8
  class ShopLogin_ShopLogin_CustomerController extends Mage_Core_Controller_Front_Action
9
  {
@@ -316,4 +311,5 @@ class ShopLogin_ShopLogin_CustomerController extends Mage_Core_Controller_Front_
316
  $this->_redirectUrl($session->getBeforeAuthUrl(true));
317
  }
318
  }
 
319
  ?>
1
  <?php
 
 
 
 
 
2
 
3
  class ShopLogin_ShopLogin_CustomerController extends Mage_Core_Controller_Front_Action
4
  {
311
  $this->_redirectUrl($session->getBeforeAuthUrl(true));
312
  }
313
  }
314
+
315
  ?>
app/code/community/ShopLogin/ShopLogin/etc/adminhtml.xml CHANGED
@@ -1,11 +1,4 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /*
4
- * Log in with ShopLogin for Magento
5
- * https://www.shoplogin.com/for-merchants/
6
- * v1.4.1 for Magento
7
- */
8
- -->
9
  <config>
10
  <acl>
11
  <resources>
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <config>
3
  <acl>
4
  <resources>
app/code/community/ShopLogin/ShopLogin/etc/config.xml CHANGED
@@ -1,15 +1,8 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /*
4
- * Log in with ShopLogin for Magento
5
- * https://www.shoplogin.com/for-merchants/
6
- * v1.4.1 for Magento
7
- */
8
- -->
9
  <config>
10
  <modules>
11
  <ShopLogin_ShopLogin>
12
- <version>1.4.1</version>
13
  </ShopLogin_ShopLogin>
14
  </modules>
15
 
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <config>
3
  <modules>
4
  <ShopLogin_ShopLogin>
5
+ <version>1.4.6</version>
6
  </ShopLogin_ShopLogin>
7
  </modules>
8
 
app/code/community/ShopLogin/ShopLogin/etc/system.xml CHANGED
@@ -1,11 +1,4 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /*
4
- * Log in with ShopLogin for Magento
5
- * https://www.shoplogin.com/for-merchants/
6
- * v1.4.1 for Magento
7
- */
8
- -->
9
  <config>
10
  <sections>
11
  <shoplogin translate="label">
@@ -24,7 +17,7 @@
24
  <show_in_default>1</show_in_default>
25
  <show_in_website>1</show_in_website>
26
  <show_in_store>1</show_in_store>
27
- <comment><![CDATA[Register your Online Store free of charge in the ShopLogin.com Merchant area (<a href="https://www.shoplogin.com/account/merchant/" target="_blank">Log in</a> or <a href="https://www.shoplogin.com/register/?goto=merchant" target="_blank">Register</a>) and insert your App ID and App Secret here. For more information about the correct integration please visit <a href="https://www.shoplogin.com/integration/" target="_blank">https://www.shoplogin.com/integration/</a> for more details. <iframe src="https://www.shoplogin.com/moduladmin/?pluginref=magentoconnect&version=magento-1.4.1" frameborder=0 width=1 height=1></iframe>]]>
28
  </comment>
29
  <fields>
30
  <clientid translate="label">
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <config>
3
  <sections>
4
  <shoplogin translate="label">
17
  <show_in_default>1</show_in_default>
18
  <show_in_website>1</show_in_website>
19
  <show_in_store>1</show_in_store>
20
+ <comment><![CDATA[Register your Online Store free of charge in the ShopLogin.com Merchant area (<a href="https://www.shoplogin.com/account/merchant/" target="_blank">Log in</a> or <a href="https://www.shoplogin.com/register/?goto=merchant" target="_blank">Register</a>) and insert your App ID and App Secret here. For more information about the correct integration please visit <a href="https://www.shoplogin.com/integration/" target="_blank">https://www.shoplogin.com/integration/</a> for more details. <iframe src="https://www.shoplogin.com/moduladmin/?pluginref=magentoconnect&version=magento-1.4.6" frameborder=0 width=1 height=1></iframe>]]>
21
  </comment>
22
  <fields>
23
  <clientid translate="label">
app/code/community/ShopLogin/ShopLogin/sql/shoplogin_setup/{mysql4-install-1.4.1.php → mysql4-install-1.4.6.php} RENAMED
@@ -1,9 +1,4 @@
1
  <?php
2
- /*
3
- * Log in with ShopLogin for Magento
4
- * https://www.shoplogin.com/for-merchants/
5
- * v1.4.1 for Magento
6
- */
7
 
8
  $installer = $this;
9
  $installer->startSetup();
@@ -19,4 +14,5 @@ UNIQUE KEY `shoplogin_id` (`shoplogin_id`)
19
  ");
20
 
21
  $installer->endSetup();
 
22
  ?>
1
  <?php
 
 
 
 
 
2
 
3
  $installer = $this;
4
  $installer->startSetup();
14
  ");
15
 
16
  $installer->endSetup();
17
+
18
  ?>
app/design/adminhtml/default/default/layout/shoplogin.xml CHANGED
@@ -1,11 +1,4 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <!--
3
- /*
4
- * Log in with ShopLogin for Magento
5
- * https://www.shoplogin.com/for-merchants/
6
- * v1.4.1 for Magento
7
- */
8
- -->
9
  <layout version="0.1.0">
10
  <default>
11
  <reference name="notifications">
1
  <?xml version="1.0" encoding="UTF-8"?>
 
 
 
 
 
 
 
2
  <layout version="0.1.0">
3
  <default>
4
  <reference name="notifications">
app/design/adminhtml/default/default/template/shoplogin/notifications.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php if (!$this->isInitialized()): ?>
2
  <div class="notification-global">
3
- <strong><?php echo $this->helper('shoplogin')->__('Shoplogin has been installed.') ?></strong>
4
  <?php echo $this->helper('shoplogin')->__('Please click <a href="%s">here</a> to add your application id.', $this->getManageUrl()) ?>
5
  </div>
6
  <?php endif ?>
1
  <?php if (!$this->isInitialized()): ?>
2
  <div class="notification-global">
3
+ <strong><?php echo $this->helper('shoplogin')->__('ShopLogin has been installed.') ?></strong>
4
  <?php echo $this->helper('shoplogin')->__('Please click <a href="%s">here</a> to add your application id.', $this->getManageUrl()) ?>
5
  </div>
6
  <?php endif ?>
app/design/frontend/base/default/layout/shoplogin.xml CHANGED
@@ -1,11 +1,4 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /*
4
- * Log in with ShopLogin for Magento
5
- * https://www.shoplogin.com/for-merchants/
6
- * v1.4.1 for Magento
7
- */
8
- -->
9
  <layout version="1.0.6">
10
 
11
  <default translate="label">
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <layout version="1.0.6">
3
 
4
  <default translate="label">
app/etc/modules/ShopLogin_ShopLogin.xml CHANGED
@@ -1,17 +1,10 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /*
4
- * Log in with ShopLogin for Magento
5
- * https://www.shoplogin.com/for-merchants/
6
- * v1.4.1 for Magento
7
- */
8
- -->
9
  <config>
10
  <modules>
11
  <ShopLogin_ShopLogin>
12
  <active>true</active>
13
  <codePool>community</codePool>
14
- <version>1.4.1</version>
15
  </ShopLogin_ShopLogin>
16
  </modules>
17
  </config>
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <config>
3
  <modules>
4
  <ShopLogin_ShopLogin>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
+ <version>1.4.6</version>
8
  </ShopLogin_ShopLogin>
9
  </modules>
10
  </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>ShopLogin_ShopLogin</name>
4
- <version>1.4.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -17,8 +17,8 @@ Visit https://www.shoplogin.com/for-merchants/ for more informations and technic
17
  Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and insert your App-ID and App Secret in the "ShopLogin"-Tab in your Magento configuration panel. After that you can easily activate the ShopLogin-Features.</description>
18
  <notes>Basis Extension for ShopLogin including the Plugins "Log in with ShopLogin" and "ShopLogin global Wish List".</notes>
19
  <authors><author><name>Shoplogin</name><user>ShopLogin</user><email>developers@shoplogin.com</email></author></authors>
20
- <date>2014-12-19</date>
21
- <time>12:00:00</time>
22
  <contents>
23
  <target name="magecommunity">
24
  <dir name="ShopLogin">
@@ -27,25 +27,25 @@ Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and
27
  <dir name="Adminhtml">
28
  <file name="Notifications.php" hash="dfc6140694dfc535892c0457554672ee"/>
29
  </dir>
30
- <file name="Default.php" hash="d5e3dccc81c3fe9e2f322015b0daa42a"/>
31
  </dir>
32
  <dir name="Helper">
33
- <file name="Data.php" hash="44e434cd2b0d3f163a6bea7c932f18cc"/>
34
  </dir>
35
  <dir name="Model">
36
- <file name="Shoplogin.php" hash="a4da88de253044a3d6039f05a00bf651"/>
37
  </dir>
38
  <dir name="controllers">
39
- <file name="CustomerController.php" hash="c2e0723ce5d3ad507a1fa4fa2521fbfe"/>
40
  </dir>
41
  <dir name="etc">
42
- <file name="adminhtml.xml" hash="3e6aa288f687a64c82f91ecc0ff61861"/>
43
- <file name="config.xml" hash="f1f33715e008f9792f2dcf0e0ce3c15f"/>
44
- <file name="system.xml" hash="4678900a4977947d5001efe1a74d4344"/>
45
  </dir>
46
  <dir name="sql">
47
  <dir name="shoplogin_setup">
48
- <file name="mysql4-install-1.4.1.php" hash="2f3485b4aeea4dea01389634c380f756"/>
49
  </dir>
50
  </dir>
51
  </dir>
@@ -53,7 +53,7 @@ Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and
53
  </target>
54
  <target name="mageetc">
55
  <dir name="modules">
56
- <file name="ShopLogin_ShopLogin.xml" hash="ddcd1312cc1f117753d6bc4b2bbbb5a6"/>
57
  </dir>
58
  </target>
59
  <target name="magelocale">
@@ -66,11 +66,11 @@ Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and
66
  <dir name="default">
67
  <dir name="default">
68
  <dir name="layout">
69
- <file name="shoplogin.xml" hash="52fb6b4682e8554c053815466928961f"/>
70
  </dir>
71
  <dir name="template">
72
  <dir name="shoplogin">
73
- <file name="notifications.phtml" hash="f54451ea2855ab80f249c15435ca21ca"/>
74
  </dir>
75
  </dir>
76
  </dir>
@@ -80,7 +80,7 @@ Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and
80
  <dir name="base">
81
  <dir name="default">
82
  <dir name="layout">
83
- <file name="shoplogin.xml" hash="96e0d8e6f62dcc6ca0b3efc40fb6fd2b"/>
84
  </dir>
85
  <dir name="template">
86
  <dir name="shoplogin">
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>ShopLogin_ShopLogin</name>
4
+ <version>1.4.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
17
  Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and insert your App-ID and App Secret in the "ShopLogin"-Tab in your Magento configuration panel. After that you can easily activate the ShopLogin-Features.</description>
18
  <notes>Basis Extension for ShopLogin including the Plugins "Log in with ShopLogin" and "ShopLogin global Wish List".</notes>
19
  <authors><author><name>Shoplogin</name><user>ShopLogin</user><email>developers@shoplogin.com</email></author></authors>
20
+ <date>2015-02-24</date>
21
+ <time>22:39:18</time>
22
  <contents>
23
  <target name="magecommunity">
24
  <dir name="ShopLogin">
27
  <dir name="Adminhtml">
28
  <file name="Notifications.php" hash="dfc6140694dfc535892c0457554672ee"/>
29
  </dir>
30
+ <file name="Default.php" hash="e25ef68850ec94eaf2fd97ca8d68eb75"/>
31
  </dir>
32
  <dir name="Helper">
33
+ <file name="Data.php" hash="d9c0ed509fdb82c6a9601159e9e1a415"/>
34
  </dir>
35
  <dir name="Model">
36
+ <file name="Shoplogin.php" hash="07b8aeb66d14a1f4dca8a53e2bc02182"/>
37
  </dir>
38
  <dir name="controllers">
39
+ <file name="CustomerController.php" hash="dc744cdad4c75d5f6677b76251d429a1"/>
40
  </dir>
41
  <dir name="etc">
42
+ <file name="adminhtml.xml" hash="3fcfe128c0da57a29dfdd47b03172d79"/>
43
+ <file name="config.xml" hash="c87bd19b35b13bce7c73497e2186d04a"/>
44
+ <file name="system.xml" hash="22c2dfd70f011ab1a199aca63d76aaf6"/>
45
  </dir>
46
  <dir name="sql">
47
  <dir name="shoplogin_setup">
48
+ <file name="mysql4-install-1.4.6.php" hash="0a3df1f0d5588d55211f78d322b09962"/>
49
  </dir>
50
  </dir>
51
  </dir>
53
  </target>
54
  <target name="mageetc">
55
  <dir name="modules">
56
+ <file name="ShopLogin_ShopLogin.xml" hash="0f2146f7cca0eab8737a0b4579d64588"/>
57
  </dir>
58
  </target>
59
  <target name="magelocale">
66
  <dir name="default">
67
  <dir name="default">
68
  <dir name="layout">
69
+ <file name="shoplogin.xml" hash="107d3d0019bc23b0f878686447c7e933"/>
70
  </dir>
71
  <dir name="template">
72
  <dir name="shoplogin">
73
+ <file name="notifications.phtml" hash="5d247095fdcda3adc23c2a00aa9d93d5"/>
74
  </dir>
75
  </dir>
76
  </dir>
80
  <dir name="base">
81
  <dir name="default">
82
  <dir name="layout">
83
+ <file name="shoplogin.xml" hash="fc467884ddb85d9043559093a74346b5"/>
84
  </dir>
85
  <dir name="template">
86
  <dir name="shoplogin">
shoplogin.xml CHANGED
@@ -16,7 +16,7 @@ Visit https://www.shoplogin.com/for-merchants/ for more informations and technic
16
  Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and insert your App-ID and App Secret in the &quot;ShopLogin&quot;-Tab in your Magento configuration panel. After that you can easily activate the ShopLogin-Features.</description>
17
  <license>OSL v3.0</license>
18
  <license_uri>http://opensource.org/licenses/osl-3.0.php</license_uri>
19
- <version>1.4.1</version>
20
  <stability>stable</stability>
21
  <notes>Basis Extension for ShopLogin including the Plugins &quot;Log in with ShopLogin&quot; and &quot;ShopLogin global Wish List&quot;.</notes>
22
  <authors>
16
  Register your Online Store (https://www.shoplogin.com/en/account/merchant/) and insert your App-ID and App Secret in the &quot;ShopLogin&quot;-Tab in your Magento configuration panel. After that you can easily activate the ShopLogin-Features.</description>
17
  <license>OSL v3.0</license>
18
  <license_uri>http://opensource.org/licenses/osl-3.0.php</license_uri>
19
+ <version>1.4.6</version>
20
  <stability>stable</stability>
21
  <notes>Basis Extension for ShopLogin including the Plugins &quot;Log in with ShopLogin&quot; and &quot;ShopLogin global Wish List&quot;.</notes>
22
  <authors>