function popup_announcement_theme in Pop-up announcement 7
Implements hook_theme().
File
- ./
popup_announcement.module, line 198 - Primarily Drupal hooks and custom functions for creating block with pop-up announcement.
Code
function popup_announcement_theme() {
return array(
'popup_announcement' => array(
'template' => 'popup-announcement',
'arguments' => array(
'announcement_text' => NULL,
),
),
);
}