Vhaldecode_CookieLaw - Version 1.4.1

Version Notes

Multistore functionality.
Small fixes.

Download this release

Release Info

Developer Valdecode
Extension Vhaldecode_CookieLaw
Version 1.4.1
Comparing to
See all releases


Code changes from version 1.1.14 to 1.4.1

Files changed (28) hide show
  1. app/code/community/Valdecode/CookieLaw/Helper/Data.php +6 -14
  2. app/code/community/Valdecode/CookieLaw/LICENSE.txt +1 -3
  3. app/code/community/Valdecode/CookieLaw/Model/Config/Bar/Position.php +3 -13
  4. app/code/community/Valdecode/CookieLaw/Model/Config/Behaviour.php +3 -13
  5. app/code/community/Valdecode/CookieLaw/Model/Config/Box/Position.php +3 -13
  6. app/code/community/Valdecode/CookieLaw/Model/Config/Message.php +3 -13
  7. app/code/community/Valdecode/CookieLaw/Model/Config/Skin.php +3 -13
  8. app/code/community/Valdecode/CookieLaw/Model/Config/Type.php +3 -13
  9. app/code/community/Valdecode/CookieLaw/README.md +28 -0
  10. app/code/community/Valdecode/CookieLaw/etc/config.xml +4 -14
  11. app/code/community/Valdecode/CookieLaw/etc/system.xml +3 -13
  12. app/design/adminhtml/default/default/layout/cookielaw.xml +3 -13
  13. app/design/frontend/base/default/layout/cookielaw.xml +3 -13
  14. app/design/frontend/base/default/template/cookielaw/after_body_start.phtml +3 -13
  15. app/design/frontend/base/default/template/cookielaw/before_body_end.phtml +3 -13
  16. app/design/frontend/base/default/template/cookielaw/widget.phtml +3 -13
  17. app/etc/modules/Valdecode_CookieLaw.xml +3 -13
  18. app/locale/de_DE/Valdecode_CookieLaw.csv +2 -2
  19. app/locale/el_GR/Valdecode_CookieLaw.csv +3 -0
  20. app/locale/en_US/Valdecode_CookieLaw.csv +2 -2
  21. app/locale/es_ES/Valdecode_CookieLaw.csv +2 -2
  22. app/locale/fr_FR/Valdecode_CookieLaw.csv +2 -2
  23. app/locale/hu_HU/Valdecode_CookieLaw.csv +2 -2
  24. app/locale/nl_NL/Valdecode_CookieLaw.csv +2 -2
  25. app/locale/ro_RO/Valdecode_CookieLaw.csv +2 -2
  26. package.xml +8 -7
  27. skin/adminhtml/default/default/valdecode/cookielaw/css/cookielaw.css +3 -13
  28. skin/frontend/base/default/valdecode/cookielaw/css/cookielaw.css +3 -13
app/code/community/Valdecode/CookieLaw/Helper/Data.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Helper_Data extends Mage_Core_Helper_Abstract
19
  {
@@ -54,7 +44,9 @@ class Valdecode_CookieLaw_Helper_Data extends Mage_Core_Helper_Abstract
54
 
55
  public function getCmsPage()
56
  {
57
- return Mage::getUrl(Mage::getStoreConfig('cookielaw/content/cms_page'));
 
 
58
  }
59
 
60
  public function getShow()
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Helper_Data extends Mage_Core_Helper_Abstract
9
  {
44
 
45
  public function getCmsPage()
46
  {
47
+ $pageId = Mage::getStoreConfig('cookielaw/content/cms_page');
48
+
49
+ return Mage::helper('cms/page')->getPageUrl($pageId);
50
  }
51
 
52
  public function getShow()
app/code/community/Valdecode/CookieLaw/LICENSE.txt CHANGED
@@ -1,6 +1,4 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2014 Valdecode
4
 
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
  of this software and associated documentation files (the "Software"), to deal
1
+ Copyright (c) 2016 The Valdecode Cookie Law Compliance Authors
 
 
2
 
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
  of this software and associated documentation files (the "Software"), to deal
app/code/community/Valdecode/CookieLaw/Model/Config/Bar/Position.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Model_Config_Bar_Position
19
  {
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Model_Config_Bar_Position
9
  {
app/code/community/Valdecode/CookieLaw/Model/Config/Behaviour.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Model_Config_Behaviour
19
  {
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Model_Config_Behaviour
9
  {
app/code/community/Valdecode/CookieLaw/Model/Config/Box/Position.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Model_Config_Box_Position
19
  {
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Model_Config_Box_Position
9
  {
app/code/community/Valdecode/CookieLaw/Model/Config/Message.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Model_Config_Message
19
  {
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Model_Config_Message
9
  {
app/code/community/Valdecode/CookieLaw/Model/Config/Skin.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Model_Config_Skin
19
  {
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Model_Config_Skin
9
  {
app/code/community/Valdecode/CookieLaw/Model/Config/Type.php CHANGED
@@ -1,19 +1,9 @@
1
  <?php
2
 
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  class Valdecode_CookieLaw_Model_Config_Type
19
  {
1
  <?php
2
 
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  class Valdecode_CookieLaw_Model_Config_Type
9
  {
app/code/community/Valdecode/CookieLaw/README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Valdecode
2
+ ## Cookie Law Compliance
3
+
4
+ Another EU Cookie Law Compliance extension. This extension adds a notice telling your visitors that the site uses cookies. The notice shows up when a visitor enters the site.
5
+
6
+ ### Features
7
+
8
+ * Liquid responsive and elegant design.
9
+ * Top position does not overlap the content. Display as box also available.
10
+ * Optional autohide after some seconds.
11
+ * Translated in 7 languages. You can also put a custom message.
12
+ * Works with Full Page Cache and Varnish.
13
+
14
+ ### Installation
15
+
16
+ * Install EU Cookie Law Compliance with Magento Connect Manager.
17
+ * Recompile and refresh the cache.
18
+ * Logout from your admin panel and then login again to configure the extension.
19
+
20
+ ### Configuration
21
+
22
+ * Go to System / Configuration / General / Cookie Law Compliance to configure the extension.
23
+ * Refresh the cache after changing the configuration.
24
+ * To disable the extension in a Store View, go to System / Configuration / Advanced and disable the module output.
25
+
26
+ ### To developers
27
+
28
+ * If you want push any fixes or improvements. I will be glad to check them!
app/code/community/Valdecode/CookieLaw/etc/config.xml CHANGED
@@ -1,25 +1,15 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  -->
19
  <config>
20
  <modules>
21
  <Valdecode_CookieLaw>
22
- <version>1.1.14</version>
23
  </Valdecode_CookieLaw>
24
  </modules>
25
  <global>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  -->
9
  <config>
10
  <modules>
11
  <Valdecode_CookieLaw>
12
+ <version>1.2</version>
13
  </Valdecode_CookieLaw>
14
  </modules>
15
  <global>
app/code/community/Valdecode/CookieLaw/etc/system.xml CHANGED
@@ -1,19 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  -->
19
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  -->
9
  <config>
app/design/adminhtml/default/default/layout/cookielaw.xml CHANGED
@@ -1,19 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  -->
19
  <layout>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  -->
9
  <layout>
app/design/frontend/base/default/layout/cookielaw.xml CHANGED
@@ -1,19 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  -->
19
  <layout version="0.1.0">
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  -->
9
  <layout version="0.1.0">
app/design/frontend/base/default/template/cookielaw/after_body_start.phtml CHANGED
@@ -1,18 +1,8 @@
1
  <?php
2
  /**
3
- * Valdecode - Cookie Law Compliance
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the The MIT License (MIT)
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://www.valdecode.com/license/cookielaw/license.txt
11
- *
12
- * @category Valdecode
13
- * @package Valdecode_CookieLaw
14
- * @copyright Copyright (c) 2014 Valdecode
15
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
16
  */
17
  ?>
18
  <?php $_helper = Mage::helper('cookielaw'); ?>
1
  <?php
2
  /**
3
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
4
+ * Use of this source code is governed by a MIT-style
5
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
6
  */
7
  ?>
8
  <?php $_helper = Mage::helper('cookielaw'); ?>
app/design/frontend/base/default/template/cookielaw/before_body_end.phtml CHANGED
@@ -1,18 +1,8 @@
1
  <?php
2
  /**
3
- * Valdecode - Cookie Law Compliance
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the The MIT License (MIT)
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://www.valdecode.com/license/cookielaw/license.txt
11
- *
12
- * @category Valdecode
13
- * @package Valdecode_CookieLaw
14
- * @copyright Copyright (c) 2014 Valdecode
15
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
16
  */
17
  ?>
18
  <?php $_helper = Mage::helper('cookielaw'); ?>
1
  <?php
2
  /**
3
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
4
+ * Use of this source code is governed by a MIT-style
5
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
6
  */
7
  ?>
8
  <?php $_helper = Mage::helper('cookielaw'); ?>
app/design/frontend/base/default/template/cookielaw/widget.phtml CHANGED
@@ -1,18 +1,8 @@
1
  <?php
2
  /**
3
- * Valdecode - Cookie Law Compliance
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the The MIT License (MIT)
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://www.valdecode.com/license/cookielaw/license.txt
11
- *
12
- * @category Valdecode
13
- * @package Valdecode_CookieLaw
14
- * @copyright Copyright (c) 2014 Valdecode
15
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
16
  */
17
  ?>
18
  <?php $_helper = Mage::helper('cookielaw'); ?>
1
  <?php
2
  /**
3
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
4
+ * Use of this source code is governed by a MIT-style
5
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
6
  */
7
  ?>
8
  <?php $_helper = Mage::helper('cookielaw'); ?>
app/etc/modules/Valdecode_CookieLaw.xml CHANGED
@@ -1,19 +1,9 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Valdecode - Cookie Law Compliance
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the The MIT License (MIT)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.valdecode.com/license/cookielaw/license.txt
12
- *
13
- * @category Valdecode
14
- * @package Valdecode_CookieLaw
15
- * @copyright Copyright (c) 2014 Valdecode
16
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
17
  */
18
  -->
19
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
5
+ * Use of this source code is governed by a MIT-style
6
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
7
  */
8
  -->
9
  <config>
app/locale/de_DE/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","Weitere Informationen"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Cookies helfen uns bei der Bereitstellung unserer Dienste. Durch die Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies setzen."
3
- "Accept","Akzeptieren"
1
+ "More information","Weitere Informationen"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Cookies helfen uns bei der Bereitstellung unserer Dienste. Durch die Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies setzen."
3
+ "Accept","Akzeptieren"
app/locale/el_GR/Valdecode_CookieLaw.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ "More information","Περισσότερες πληροφορίες"
2
+ "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Αυτή η ιστοσελίδα χρησιμοποιεί cookies. Συνεχίζοντας την περιήγησή σας στην ιστοσελίδα συμφωνείτε με τη χρήση τους."
3
+ "Accept","Αποδοχή"
app/locale/en_US/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","cookie policy"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies."
3
- "Accept","Accept"
1
+ "More information","cookie policy"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies."
3
+ "Accept","Accept"
app/locale/es_ES/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","política de cookies"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Esta web usa cookies. Si continuas navegando estás consintiendo nuestro uso de cookies."
3
- "Accept","Aceptar"
1
+ "More information","política de cookies"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Esta web usa cookies. Si continuas navegando estás consintiendo nuestro uso de cookies."
3
+ "Accept","Aceptar"
app/locale/fr_FR/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","En savoir plus"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Les cookies assurent le bon fonctionnement de nos services. En utilisant ces derniers, vous acceptez l'utilisation des cookies."
3
- "Accept","Accepter"
1
+ "More information","En savoir plus"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Les cookies assurent le bon fonctionnement de nos services. En utilisant ces derniers, vous acceptez l'utilisation des cookies."
3
+ "Accept","Accepter"
app/locale/hu_HU/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","További információ"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","A cookie-k segítenek szolgáltatásaink biztosításában. Szolgáltatásaink igénybe vételével Ön beleegyezik a cookie-k használatába."
3
- "Accept","Elfogad"
1
+ "More information","További információ"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","A cookie-k segítenek szolgáltatásaink biztosításában. Szolgáltatásaink igénybe vételével Ön beleegyezik a cookie-k használatába."
3
+ "Accept","Elfogad"
app/locale/nl_NL/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","Meer informatie"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Cookies helpen ons bij het leveren van onze diensten. Door gebruik te maken van onze diensten, gaat u akkoord met ons gebruik van cookies."
3
- "Accept","Accepteren"
1
+ "More information","Meer informatie"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Cookies helpen ons bij het leveren van onze diensten. Door gebruik te maken van onze diensten, gaat u akkoord met ons gebruik van cookies."
3
+ "Accept","Accepteren"
app/locale/ro_RO/Valdecode_CookieLaw.csv CHANGED
@@ -1,3 +1,3 @@
1
- "cookie policy","Aflați mai multe"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Cookie-urile ne ajută să oferim serviciile noastre. Utilizând aceste servicii, acceptați modul în care utilizăm cookie-urile."
3
- "Accept","Accepta"
1
+ "More information","Aflați mai multe"
2
  "This websites use cookies. By continuing to browse the site you are agreeing to our use of cookies.","Cookie-urile ne ajută să oferim serviciile noastre. Utilizând aceste servicii, acceptați modul în care utilizăm cookie-urile."
3
+ "Accept","Accepta"
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Vhaldecode_CookieLaw</name>
4
- <version>1.1.14</version>
5
  <stability>stable</stability>
6
- <license uri="http://www.valdecode.com/license/cookielaw/license.txt">MIT</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>With EU Cookie Law Compliance your website complies with the EU Cookie Law. Elegant and responsive.</summary>
10
  <description>With EU Cookie Law Compliance your website complies with the EU Cookie Law. Elegant and responsive.</description>
11
- <notes>Frontend Improvements</notes>
12
- <authors><author><name>Valdecode</name><user>Valdecode</user><email>info@valdecode.com</email></author></authors>
13
- <date>2015-02-15</date>
14
- <time>17:15:32</time>
15
- <contents><target name="magecommunity"><dir name="Valdecode"><dir name="CookieLaw"><dir><dir name="Helper"><file name="Data.php" hash="4cd6d0b433b2fe866b70a5ca2e243c73"/></dir><dir name="Model"><dir name="Config"><dir name="Bar"><file name="Position.php" hash="2e60a80e597789b717bc36f84b1e4377"/></dir><file name="Behaviour.php" hash="743013d311611109d8ffab0c41389bc9"/><dir name="Box"><file name="Position.php" hash="ef3ad00ae2ac6a06c9a99ec18efc749e"/></dir><file name="Message.php" hash="0e6bfe84b2580ce354552acc035d092c"/><file name="Skin.php" hash="e34c31f5d43fadaa223ff0b6dec99c06"/><file name="Type.php" hash="fc52cb69e4ee80af86cf2c601cf3b86e"/></dir></dir><dir name="etc"><file name="config.xml" hash="52bb845b09c20144a131c10b05a95d1a"/><file name="system.xml" hash="f2207932d8602d2e2533c63605a586d0"/></dir></dir><file name="LICENSE.txt" hash="26b380479366863e061c42923b543b37"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Valdecode_CookieLaw.xml" hash="e7adaa88b42c61d001b26986e5f01729"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cookielaw.xml" hash="36125de2ff1fcb020f697b723c00104d"/></dir><dir name="template"><dir name="cookielaw"><file name="after_body_start.phtml" hash="9624ba5a3a2b0ff4831d7138c2181bd6"/><file name="before_body_end.phtml" hash="ae1a7a717f0e0f5620c7a5872f15be51"/><file name="widget.phtml" hash="8b6cf8386aa4d4d6f507c43cd50e65b9"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="cookielaw.xml" hash="2664396eb94ee9806237b8866ed96cb1"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="valdecode"><dir name="cookielaw"><dir><dir name="css"><file name="cookielaw.css" hash="0e5a3495f74b569a1702f26148e96607"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="valdecode"><dir name="cookielaw"><dir><dir name="css"><file name="cookielaw.css" hash="0b8631bcc4176af10d7983ed01eede18"/></dir><dir name="images"><file name="icon.png" hash="04424030d978ef131b7daafe920f23ea"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Valdecode_CookieLaw.csv" hash="8c0b438b3b881493196292433da834c0"/></dir><dir name="en_US"><file name="Valdecode_CookieLaw.csv" hash="e20c908d1e19e81e03591209c68b24a4"/></dir><dir name="es_ES"><file name="Valdecode_CookieLaw.csv" hash="a2cbbfa531bf83a7aa242e712994a632"/></dir><dir name="fr_FR"><file name="Valdecode_CookieLaw.csv" hash="a8bac4e60747368d50ae1938237e157d"/></dir><dir name="hu_HU"><file name="Valdecode_CookieLaw.csv" hash="707e25c44bd8ab7c0295f5c3a387292f"/></dir><dir name="nl_NL"><file name="Valdecode_CookieLaw.csv" hash="cd6b304edd0eacbc8cbd188d0375f43b"/></dir><dir name="ro_RO"><file name="Valdecode_CookieLaw.csv" hash="43f1b85b04ac02b1c1f873fb82df76db"/></dir></target></contents>
 
16
  <compatible/>
17
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Vhaldecode_CookieLaw</name>
4
+ <version>1.4.1</version>
5
  <stability>stable</stability>
6
+ <license>MIT</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>With EU Cookie Law Compliance your website complies with the EU Cookie Law. Elegant and responsive.</summary>
10
  <description>With EU Cookie Law Compliance your website complies with the EU Cookie Law. Elegant and responsive.</description>
11
+ <notes>Multistore functionality.&#xD;
12
+ Small fixes.</notes>
13
+ <authors><author><name>Valdecode</name><user>valdecode</user><email>info@valdecode.com</email></author></authors>
14
+ <date>2016-09-03</date>
15
+ <time>14:14:52</time>
16
+ <contents><target name="magecommunity"><dir name="Valdecode"><dir name="CookieLaw"><dir name="Helper"><file name="Data.php" hash="c9c2779967390e3b31cb4d71bb3aa0c4"/></dir><file name="LICENSE.txt" hash="eee26ca511a51b352d4c11cbb7c67487"/><dir name="Model"><dir name="Config"><dir name="Bar"><file name="Position.php" hash="ef03a80997706808c57267c00494ec69"/></dir><file name="Behaviour.php" hash="64e662b24e6b275bed507cb41d637251"/><dir name="Box"><file name="Position.php" hash="9d19332c7c4f8ba809d29184207a997c"/></dir><file name="Message.php" hash="bc23a02caba5159af6b6444ea3d4d5d4"/><file name="Skin.php" hash="3d87af28bb50861442eb3c0ead48a079"/><file name="Type.php" hash="5dc9ba1329c6e984088c6e7e474e2d49"/></dir></dir><file name="README.md" hash="feaf373372d3f766f4662da9a181e8ca"/><dir name="etc"><file name="config.xml" hash="4824a236c29f89072bd7c06eedaa6345"/><file name="system.xml" hash="e86f20c7e2247c9591f2bf4afcd00d3a"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Valdecode_CookieLaw.xml" hash="f91a33ea2bd59f9bda74be435106e1c6"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cookielaw.xml" hash="8a2f423d48efb4a32f1645929c93c533"/></dir><dir name="template"><dir name="cookielaw"><file name="after_body_start.phtml" hash="ff68863804080997379c3eb0a26940c8"/><file name="before_body_end.phtml" hash="0d9df1bfc6314e25711bbe79e2ef4e06"/><file name="widget.phtml" hash="a84d21526a90729723854dcdf5fb795a"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="cookielaw.xml" hash="77f56eb0d16042804f6421848934713a"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="valdecode"><dir name="cookielaw"><dir name="css"><file name="cookielaw.css" hash="d6aca5e2dd2f70125dfc7f99d4fde5b6"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="valdecode"><dir name="cookielaw"><dir name="css"><file name="cookielaw.css" hash="b860e76fadde541668a739b64dada667"/></dir><dir name="images"><file name="icon.png" hash="04424030d978ef131b7daafe920f23ea"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Valdecode_CookieLaw.csv" hash="d95d01c5b85ea20585fa38901da0e531"/></dir><dir name="el_GR"><file name="Valdecode_CookieLaw.csv" hash="43089d67bfd6355de960c4225e909c0f"/></dir><dir name="en_US"><file name="Valdecode_CookieLaw.csv" hash="4a4cec9d6957a8159331fbe21d9facb8"/></dir><dir name="es_ES"><file name="Valdecode_CookieLaw.csv" hash="ce84186129292ed9d1301162511f25d7"/></dir><dir name="fr_FR"><file name="Valdecode_CookieLaw.csv" hash="229526a238adecf647acaa984eb15b1a"/></dir><dir name="hu_HU"><file name="Valdecode_CookieLaw.csv" hash="625cd84d0bc7a83872c1b8bb27a204a2"/></dir><dir name="nl_NL"><file name="Valdecode_CookieLaw.csv" hash="c5b52ab6a6954e0bdcb691467f74b13f"/></dir><dir name="ro_RO"><file name="Valdecode_CookieLaw.csv" hash="0fd3c11ab1fe00317a2fe1bdb189508c"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>
skin/adminhtml/default/default/valdecode/cookielaw/css/cookielaw.css CHANGED
@@ -1,17 +1,7 @@
1
  /**
2
- * Valdecode - Cookie Law Compliance
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the The MIT License (MIT)
7
- * that is bundled with this package in the file LICENSE.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://www.valdecode.com/license/cookielaw/license.txt
10
- *
11
- * @category Valdecode
12
- * @package Valdecode_CookieLaw
13
- * @copyright Copyright (c) 2014 Valdecode
14
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
15
  */
16
  ul.tabs.config-tabs a.v-cookielaw-section span { background: url(../images/icon.png) no-repeat 187px 3px; }
17
  ul.tabs.config-tabs a.v-cookielaw-section.active span { background: #fff url(../images/icon.png) no-repeat 187px 3px; }
1
  /**
2
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
3
+ * Use of this source code is governed by a MIT-style
4
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
5
  */
6
  ul.tabs.config-tabs a.v-cookielaw-section span { background: url(../images/icon.png) no-repeat 187px 3px; }
7
  ul.tabs.config-tabs a.v-cookielaw-section.active span { background: #fff url(../images/icon.png) no-repeat 187px 3px; }
skin/frontend/base/default/valdecode/cookielaw/css/cookielaw.css CHANGED
@@ -1,17 +1,7 @@
1
  /**
2
- * Valdecode - Cookie Law Compliance
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the The MIT License (MIT)
7
- * that is bundled with this package in the file LICENSE.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://www.valdecode.com/license/cookielaw/license.txt
10
- *
11
- * @category Valdecode
12
- * @package Valdecode_CookieLaw
13
- * @copyright Copyright (c) 2014 Valdecode
14
- * @license http://www.valdecode.com/license/cookielaw/license.txt The MIT License (MIT)
15
  */
16
  #v-cookielaw { overflow: hidden; background: #fff; color: #444; z-index: 9999; font-size: 13px; }
17
  #v-cookielaw .v-message { padding: 5px 10px; text-align: left; }
1
  /**
2
+ * Copyright 2016 The Valdecode Cookie Law Compliance Authors. All rights reserved.
3
+ * Use of this source code is governed by a MIT-style
4
+ * license that can be found in the LICENSE.txt file.
 
 
 
 
 
 
 
 
 
 
5
  */
6
  #v-cookielaw { overflow: hidden; background: #fff; color: #444; z-index: 9999; font-size: 13px; }
7
  #v-cookielaw .v-message { padding: 5px 10px; text-align: left; }