You are here

flag_clear.install in Flag clear 7

Flag clear module install/schema/update hooks.

File

flag_clear.install
View source
<?php

/**
 * @file
 * Flag clear module install/schema/update hooks.
 */

/**
 * Removes old menu items that may be problematic.
 */
function flag_clear_update_7108() {
  $result = db_query("DELETE FROM {menu_links} WHERE router_path LIKE '%admin/config/content/flag-manager%'");
  return t('Legacy menu items for Flag manager have been removed.');
}

Functions

Namesort descending Description
flag_clear_update_7108 Removes old menu items that may be problematic.