You are here

function terms_of_use_theme in Terms of Use 6

Same name and namespace in other branches
  1. 7 terms_of_use.module \terms_of_use_theme()

Implementation of hook_theme().

File

./terms_of_use.module, line 224
Adds Terms of Use to the 'user_register' form.

Code

function terms_of_use_theme() {
  return array(
    'terms_of_use' => array(
      'arguments' => array(
        'terms' => NULL,
        'node' => NULL,
      ),
    ),
  );
}