function ad_html_theme in Advertisement 7
Same name and namespace in other branches
- 6.3 html/ad_html.module \ad_html_theme()
- 6 html/ad_html.module \ad_html_theme()
- 6.2 html/ad_html.module \ad_html_theme()
Implementation of hook_theme().
File
- html/
ad_html.module, line 42 - Enhances the ad module to support html ads.
Code
function ad_html_theme() {
return array(
'ad_html_ad' => array(
'file' => 'ad_html.module',
'variables' => array(
'ad' => NULL,
),
),
);
}