You are here

function addanother_theme in Add Another 7.2

Implements hook_theme().

Concept borrowed from 6.x Submit Again.

File

./addanother.module, line 249
The main file for the addanother module.

Code

function addanother_theme() {
  return array(
    'addanother_message_message' => array(
      'variables' => array(
        'node' => NULL,
      ),
    ),
    'addanother_button_message' => array(
      'variables' => array(
        'nid' => NULL,
      ),
    ),
  );
}