function shortcut_uninstall

Implements hook_uninstall().

File

drupal/core/modules/shortcut/shortcut.install, line 13
Install, update and uninstall functions for the shortcut module.

Code

function shortcut_uninstall() {

  // Delete the menu links associated with each shortcut set.
  // @todo find a way to clean-up associated menu links.

  /*foreach (entity_load_multiple('shortcut') as $shortcut_set) {
      menu_delete_links('shortcut-' . $shortcut_set->id());
    }*/
}