1 menu.tokens.inc | menu_token_info() |
Implements hook_token_info().
File
- core/
modules/ menu/ menu.tokens.inc, line 10 - Builds placeholder replacement tokens for menu-related data.
Code
function menu_token_info() {
// Menu tokens.
$info['types']['menu'] = array(
'name' => t('Menus'),
'description' => t('Tokens related to menus.'),
'needs-data' => 'menu',
);
$info['types']['menu-link'] = array(
'name' => t('Menu links'),
'description' => t('Tokens related to menu links.'),
'needs-data' => 'menu-link',
);
$info['tokens']['menu']['name'] = array(
'name' => t('Name'),
'description' => t("The name of the menu."),
);
$info['tokens']['menu']['machine-name'] = array(
'name' => t('Machine-readable name'),
'description' => t("The unique machine-readable name of the menu."),
);
$info['tokens']['menu']['description'] = array(
'name' => t('Description'),
'description' => t('The optional description of the menu.'),
);
$info['tokens']['menu']['menu-link-count'] = array(
'name' => t('Menu link count'),
'description' => t('The number of menu links belonging to the menu.'),
);
$info['tokens']['menu']['edit-url'] = array(
'name' => t('Edit URL'),
'description' => t("The URL of the menu's edit page."),
);
$info['tokens']['menu-link']['menu'] = array(
'name' => t('Menu'),
'description' => t('The menu of the menu link.'),
'type' => 'menu',
);
$info['tokens']['menu-link']['edit-url'] = array(
'name' => t('Edit URL'),
'description' => t("The URL of the menu link's edit page."),
);
$info['tokens']['node']['menu-link'] = array(
'name' => t('Menu link'),
'description' => t("The menu link for this node."),
'type' => 'menu-link',
);
return $info;
}