You are here

function signature_forum_theme in Signatures for Forums 6

Implementation of hook_theme().

File

./signature_forum.module, line 733
Tweaks signatures in ways inspired by other traditional forum software:

Code

function signature_forum_theme() {
  return array(
    'signature_forum' => array(
      'arguments' => array(
        'signature' => NULL,
      ),
      'template' => 'signature',
    ),
  );
}