Version Notes
Fixed an error in packaging the extension where the template files were not found/linked up properly.
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | creareeucookielaw |
| Version | 1.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.2 to 1.0.3
app/code/community/Creare/Eucookielaw/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Creare_Eucookielaw>
|
| 5 |
-
<version>1.0.
|
| 6 |
</Creare_Eucookielaw>
|
| 7 |
</modules>
|
| 8 |
<frontend>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Creare_Eucookielaw>
|
| 5 |
+
<version>1.0.3</version>
|
| 6 |
</Creare_Eucookielaw>
|
| 7 |
</modules>
|
| 8 |
<frontend>
|
app/design/frontend/base/default/template/eucookielaw/js.phtml
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Magento
|
| 4 |
+
*
|
| 5 |
+
* NOTICE OF LICENSE
|
| 6 |
+
*
|
| 7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
| 8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
| 9 |
+
* It is also available through the world-wide-web at this URL:
|
| 10 |
+
* http://opensource.org/licenses/afl-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 license@magentocommerce.com so we can send you a copy immediately.
|
| 14 |
+
*
|
| 15 |
+
* DISCLAIMER
|
| 16 |
+
*
|
| 17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
| 18 |
+
* versions in the future. If you wish to customize Magento for your
|
| 19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
| 20 |
+
*
|
| 21 |
+
* @category design
|
| 22 |
+
* @package base_default
|
| 23 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 24 |
+
*/
|
| 25 |
+
?>
|
| 26 |
+
<?php if (Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/show_banner')) : ?>
|
| 27 |
+
<script type="text/javascript">
|
| 28 |
+
<?php if (Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/developer_mode')) : ?>
|
| 29 |
+
var devMode = true;
|
| 30 |
+
<?php else : ?>
|
| 31 |
+
var devMode = false;
|
| 32 |
+
<?php endif ?>
|
| 33 |
+
var dropCookie = true;
|
| 34 |
+
var cookieDuration = <?php echo Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/cookie_lifetime') ?>;
|
| 35 |
+
var cookieName = 'complianceCookie';
|
| 36 |
+
var cookieValue = 'on';
|
| 37 |
+
var css = '<?php echo preg_replace( "/\r|\n/", "", Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/css')) ?>';
|
| 38 |
+
var privacyUrl = '<?php echo $this->getUrl(Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/privacy_url')) ?>';
|
| 39 |
+
var privacyMessage = '<?php echo Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/privacy_message') ?>';
|
| 40 |
+
var privacyLinkText = '<?php echo Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/privacy_url_text') ?>';
|
| 41 |
+
var fadeOutTime = <?php echo Mage::getStoreConfig('eu_cookie_law/cookie_banner_settings/fadeout') ?>;
|
| 42 |
+
|
| 43 |
+
window.onload = function(){
|
| 44 |
+
if(checkCookie(window.cookieName) != window.cookieValue){
|
| 45 |
+
createDiv();
|
| 46 |
+
} else
|
| 47 |
+
{
|
| 48 |
+
if (devMode)
|
| 49 |
+
createDiv();
|
| 50 |
+
}
|
| 51 |
+
}
|
| 52 |
+
</script>
|
| 53 |
+
<?php endif ?>
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>creareeucookielaw</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license/>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>A simple, effective EU Cookie Law banner with a link to your privacy policy page.</summary>
|
| 10 |
<description>A simple, effective EU Cookie Law banner with a link to your privacy policy page.</description>
|
| 11 |
-
<notes>Fixed
|
| 12 |
<authors><author><name>Adam Moss</name><user>auto-converted</user><email>adam@creare.co.uk</email></author></authors>
|
| 13 |
-
<date>2014-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Creare"><dir name="Eucookielaw"><dir name="etc"><file name="adminhtml.xml" hash="0986fee5af8fe7c96b1541dacfc814ab"/><file name="config.xml" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies/>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>creareeucookielaw</name>
|
| 4 |
+
<version>1.0.3</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license/>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>A simple, effective EU Cookie Law banner with a link to your privacy policy page.</summary>
|
| 10 |
<description>A simple, effective EU Cookie Law banner with a link to your privacy policy page.</description>
|
| 11 |
+
<notes>Fixed an error in packaging the extension where the template files were not found/linked up properly.</notes>
|
| 12 |
<authors><author><name>Adam Moss</name><user>auto-converted</user><email>adam@creare.co.uk</email></author></authors>
|
| 13 |
+
<date>2014-03-05</date>
|
| 14 |
+
<time>13:46:15</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Creare"><dir name="Eucookielaw"><dir name="etc"><file name="adminhtml.xml" hash="0986fee5af8fe7c96b1541dacfc814ab"/><file name="config.xml" hash="d54ef2e20fe479b0e671e461cb0dc61a"/><file name="system.xml" hash="9fd9938aec46d12f6c50642c45917d51"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creare_Eucookielaw.xml" hash="10a0821ea406101e473f73ed011c7ab8"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="eucookielaw.xml" hash="10585a1bbaab692922d417a1caa16849"/></dir><dir name="template"><dir name="eucookielaw"><file name="js.phtml" hash="fd4920ac050f2e9640c749da2a7340b6"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><file name="eucookielaw.js" hash="e9d6845f820d52cb93551a51b571c51f"/></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies/>
|
| 18 |
</package>
|
