You are here

function menu_links_configuration_identifier in Configuration Management 7

Callback for generating the menu link exportable identifier.

2 calls to menu_links_configuration_identifier()
menu_links_configuration_export_options in includes/configuration.menu.inc
Implements hook_configuration_export_options().
menu_links_configuration_rebuild_ordered in includes/configuration.menu.inc
Generate a depth tree of all menu links.
1 string reference to 'menu_links_configuration_identifier'
menu_links_configuration_export in includes/configuration.menu.inc
Implements hook_configuration_export().

File

includes/configuration.menu.inc, line 155

Code

function menu_links_configuration_identifier($link) {
  return isset($link['menu_name'], $link['link_path']) ? "{$link['menu_name']}:{$link['link_path']}" : FALSE;
}