You are here

function admin_uninstall in Admin 6.2

Same name and namespace in other branches
  1. 7.2 admin.install \admin_uninstall()

Implementation of hook_uninstall().

File

./admin.install, line 16

Code

function admin_uninstall() {
  if (db_table_exists('menu_custom')) {
    db_query("DELETE FROM {menu_custom} WHERE menu_name = 'admin'");
  }
  variable_del('admin_toolbar');
}