You are here

function defaultcontent_alter_identifier in Default Content 7.2

Same name and namespace in other branches
  1. 7 defaultcontent.module \defaultcontent_alter_identifier()
4 calls to defaultcontent_alter_identifier()
content_menu_links_features_export_options in ./defaultcontent.features.inc
Implements hook_features_export_options().
content_menu_links_features_export_render in ./defaultcontent.features.inc
Implements hook_features_export_render().
defaultcontent_import_menu_link in ./defaultcontent.module
imports a new menu item
menu_item_export_alter in plugins/menu_item.inc
Handles the exporting of menu links attached to nodes

File

./defaultcontent.module, line 597
Module file for the Default content module which allow export and import of default content in a Drupal site.

Code

function defaultcontent_alter_identifier($identifier, $to_name = TRUE) {
  list($menu, $path) = explode(':', $identifier);
  $identifier = $menu . ':' . defaultcontent_alter_path($path, $to_name);
  return $identifier;
}