You are here

function theme_agreement_page in Agreement 6

Same name and namespace in other branches
  1. 6.2 agreement.module \theme_agreement_page()
  2. 7.2 agreement.module \theme_agreement_page()

Format the agreement page.

1 string reference to 'theme_agreement_page'
agreement_theme in ./agreement.module
Implementation of hook_theme().
1 theme call to theme_agreement_page()
agreement_page in ./agreement.module
Callback for agreement URL

File

./agreement.module, line 334
agreement.module - Agreement module code

Code

function theme_agreement_page($form) {
  $output = $form;
  return $output;
}