function dynamic_banner_theme in Dynamic Banner 7.2
Same name and namespace in other branches
- 8 dynamic_banner.module \dynamic_banner_theme()
- 6 dynamic_banner.module \dynamic_banner_theme()
- 7 dynamic_banner.module \dynamic_banner_theme()
- 8.x dynamic_banner.module \dynamic_banner_theme()
Implements hook_theme(). Theme template used in module.
File
- ./
dynamic_banner.module, line 129 - Distributed under GNU GPL version 3
Code
function dynamic_banner_theme() {
$theme = array(
'banner_output' => array(
'variables' => array(
'url' => NULL,
'text' => NULL,
'link' => NULL,
'display_setting' => NULL,
'display_errors' => NULL,
),
'template' => 'banner_output',
),
);
return $theme;
}