New module EU Cookie Compliance
This commit is contained in:
parent
37c335e3cc
commit
262f0b730b
12 changed files with 1112 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* @file
|
||||
* This is a template file for a pop-up prompting user to give their consent for
|
||||
* the website to set cookies.
|
||||
*
|
||||
* When overriding this template it is important to note that jQuery will use
|
||||
* the following classes to assign actions to buttons:
|
||||
*
|
||||
* agree-button - agree to setting cookies
|
||||
* find-more-button - link to an information page
|
||||
*
|
||||
* Variables available:
|
||||
* - $message: Contains the text that will be display whithin the pop-up
|
||||
* - $agree_button: Contains agree button title
|
||||
* - $disagree_button: Contains disagree button title
|
||||
*/
|
||||
?>
|
||||
|
||||
<div>
|
||||
<div class ="popup-content info">
|
||||
<div id="popup-text">
|
||||
<?php print $message ?>
|
||||
</div>
|
||||
<div id="popup-buttons">
|
||||
<button type="button" class="agree-button"><?php print $agree_button; ?></button>
|
||||
<button type="button" class="find-more-button"><?php print $disagree_button; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in a new issue