You are here

function hansel_action_add_single_link_info in Hansel breadcrumbs 8

Same name and namespace in other branches
  1. 7 hansel.actions.inc \hansel_action_add_single_link_info()

Callback for the "add single link" breadcrumb action to generate the info line.

Parameters

array $arguments:

Return value

string

2 string references to 'hansel_action_add_single_link_info'
hansel_hansel_action_types in ./hansel.module
Implements hook_hansel_action_types().
hook_hansel_action_types in ./hansel.hooks.inc
Define action types.

File

./hansel.actions.inc, line 47
Hansel breadcrumb actions

Code

function hansel_action_add_single_link_info($arguments) {
  return t('add link %title', array(
    '%title' => $arguments['title'],
  ));
}