You are here

function feedapi_node_uninstall in FeedAPI 6

Same name and namespace in other branches
  1. 5 feedapi_node/feedapi_node.install \feedapi_node_uninstall()

Implementation of hook_uninstall().

File

feedapi_node/feedapi_node.install, line 91
Install file for FeedAPI Node module.

Code

function feedapi_node_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('feedapi_node');

  // node_type_delete('feed');
  variable_del('feedapi_settings_feed');
  menu_rebuild();
}