New module EU Cookie Compliance

This commit is contained in:
Manuel Cillero 2017-10-04 22:29:52 +02:00
parent 37c335e3cc
commit 262f0b730b
12 changed files with 1112 additions and 0 deletions

View file

@ -0,0 +1,30 @@
<?php
/**
* @file
* This is a template file for a pop-up informing a user that he has already
* agreed to cookies.
*
* When overriding this template it is important to note that jQuery will use
* the following classes to assign actions to buttons:
*
* hide-popup-button - destroy the pop-up
* find-more-button - link to an information page
*
* Variables available:
* - $message: Contains the text that will be display whithin the pop-up
* - $hide_button: Contains hide butlon title
* - $find_more_button: Contains find more button title
*/
?>
<div>
<div class ="popup-content agreed">
<div id="popup-text">
<?php print $message ?>
</div>
<div id="popup-buttons">
<button type="button" class="hide-popup-button"><?php print $hide_button; ?> </button>
<button type="button" class="find-more-button" ><?php print $find_more_button; ?></button>
</div>
</div>
</div>