function terms_of_use_theme in Terms of Use 7
Same name and namespace in other branches
- 6 terms_of_use.module \terms_of_use_theme()
Implements hook_theme().
File
- ./
terms_of_use.module, line 115 - Main module file of the terms of use module.
Code
function terms_of_use_theme() {
return array(
'terms_of_use' => array(
'variables' => array(
'node' => NULL,
'body' => NULL,
),
),
);
}