This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/eu-cookie-compliance/theme/eu-cookie-compliance-popup-info.tpl.php

30 lines
926 B
PHP

<?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>