You are here

function merci_restrictions_uninstall in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Implements hook_uninstall().

File

merci_restrictions/merci_restrictions.install, line 42

Code

function merci_restrictions_uninstall() {
  variable_del('merci_restrictions_default');

  // Delete any field instance attached to a line item type.
  merci_core_delete_instances('merci_restrictions');

  // Delete any line item reference fields.
  merci_core_delete_fields('merci_restrictions');
}