popup-announcement.tpl.php in Pop-up announcement 7
Template file for the theming Popup announcement overlay
Available variables:
- $announcement_text: A string containing the announcement text.
1 theme call to popup-announcement.tpl.php
- popup_announcement_create_block in ./
popup_announcement.module - Create block. Logic.
File
popup-announcement.tpl.phpView source
<?php
/**
* @file
* Template file for the theming Popup announcement overlay
*
* Available variables:
* - $announcement_text: A string containing the announcement text.
*/
?>
<div style="display:none" id="popup-announcement-overlay"></div>
<div style="display:none" id="popup-announcement-wrap">
<div id="popup-announcement">
<?php
print $announcement_text;
?>
</div>
<div id="popup-announcement-close"></div>
</div>