You are here

function hansel_hansel_action_types in Hansel breadcrumbs 7

Same name and namespace in other branches
  1. 8 hansel.module \hansel_hansel_action_types()

Implements hook_hansel_action_types().

See also

_hansel_get_action_types()

File

./hansel.module, line 108
Hansel module

Code

function hansel_hansel_action_types() {
  return array(
    'add single link' => array(
      'get crumbs' => 'hansel_action_add_single_link_get_crumbs',
      'info' => 'hansel_action_add_single_link_info',
      'config form' => 'hansel_ui_action_add_single_link_config_form',
      'file' => 'hansel.actions.inc',
      'show token list' => TRUE,
    ),
    'add link to node' => array(
      'get crumbs' => 'hansel_action_add_link_to_node_get_crumbs',
      'file' => 'hansel.actions.inc',
    ),
    'add link to nodetype' => array(
      'get crumbs' => 'hansel_action_add_link_to_nodetype_get_crumbs',
      'config form' => 'hansel_ui_action_add_link_to_nodetype_config_form',
      'file' => 'hansel.actions.inc',
    ),
    'add link to user' => array(
      'get crumbs' => 'hansel_action_add_link_to_user_get_crumbs',
      'config form' => 'hansel_ui_action_add_link_to_user_config_form',
      'file' => 'hansel.actions.inc',
    ),
    'add link to current page' => array(
      'get crumbs' => 'hansel_action_add_link_to_current_page_get_crumbs',
      'file' => 'hansel.actions.inc',
    ),
    'add parents' => array(
      'get crumbs' => 'hansel_action_add_parents_get_crumbs',
      'config form' => 'hansel_action_add_parents_config_form',
      'file' => 'hansel.actions.inc',
    ),
  );
}