You are here

function onlyone_uninstall in Allow a content type only once (Only One) 7

Implements hook_uninstall().

File

./onlyone.install, line 20
Install and uninstall functions for the Only One module.

Code

function onlyone_uninstall() {

  // Deleting the module's variables.
  variable_del('onlyone_node_types');
  variable_del('onlyone_new_menu_entry');
}