You are here

function flag_actions_theme in Flag 6.2

Same name and namespace in other branches
  1. 6 flag_actions.module \flag_actions_theme()
  2. 7.3 flag_actions.module \flag_actions_theme()
  3. 7.2 flag_actions.module \flag_actions_theme()

Implements hook_theme().

File

./flag_actions.module, line 59
Actions support for the Flag module.

Code

function flag_actions_theme() {
  return array(
    'flag_actions_page' => array(
      'arguments' => array(
        'actions' => NULL,
        'form' => NULL,
      ),
    ),
    'flag_actions_add_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'flag_actions_flag_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}