删除菜单和菜单项

时间:2014-08-21 08:15:54

标签: drupal-7 drupal-modules

我希望在联合国安装期间删除菜单及其链接。我怎么做。我添加了这样的菜单,

my_custom_menu.install

function my_custom_menu_install() {
  $t = get_t();
  $menu = array(
    'menu_name' => 'custom-menu',
    'title' => $t('My custom menu'),
    'description' => $t('The <em>Custom</em> menu contains links for testing only.'),
  );
  menu_save($menu);
}
function my_custom_menu_uninstall() {
    // i want to delete menu from here during uninstall.
}

有人帮我吗?

1 个答案:

答案 0 :(得分:1)

要删除自定义菜单及其所有链接,请使用menu_delete

function my_custom_menu_uninstall() {
    menu_delete(menu_load('custom-menu'));
}