Skip to content

Instantly share code, notes, and snippets.

@mtrojanowski
Created April 22, 2013 18:18
Show Gist options
  • Save mtrojanowski/5437243 to your computer and use it in GitHub Desktop.
Save mtrojanowski/5437243 to your computer and use it in GitHub Desktop.
Cookie information for webpages in Poland
<?php if (empty($_COOKIE['cookies_accepted'])): ?>
<div id="cookies">
<div id="cookies_txt">
Informujemy, że nasza strona aby poprawnie działać korzysta z mechanizmu "cookies".
Nie wykorzystujemy plików "cookies" dla celów reklamowych.<br/>
Korzystając ze strony wyrażasz zgodę na używanie plików "cookies", zgodnie z aktualnymi ustawieniami przeglądarki.
<a href="" id="cookie_accept">Zamknij</a>
</div>
</div>
<?php endif; ?>
<script>
$(document).ready(function() {
$('#cookie_accept').click(function(e) {
e.preventDefault();
$(this).parent().parent().slideUp('slow');
document.cookie = 'cookies_accepted=true;expires=Thu, 31 Dec 2099 12:34:23 GMT';
});
});
</script>
<style>
#cookies {
padding: 15px;
background: #eeeeee;
text-align: center;
}
#cookies_txt {
width: 930px;
text-align: justify;
margin: auto;
}
#cookies_txt a {
color: #dd2222;
float: right;
}
#cookies_txt a:hover {
color: #ff4444;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment