function disclaimer_theme in Disclaimer 7
Implements hook_theme().
File
- ./
disclaimer.module, line 394 - Create and show disclaimer for your site.
Code
function disclaimer_theme() {
return array(
'disclaimer' => array(
'variables' => array(
'hidden' => NULL,
'enter_link' => NULL,
'exit_link' => NULL,
'content' => NULL,
'footer' => NULL,
'age_form' => NULL,
),
'template' => 'disclaimer',
),
);
}