You are here

function social_content_facebook_uninstall in Social Content 7

Implements hook_node_uninstall().

TODO: Make this delete the content type properly.

File

modules/facebook/social_content_facebook.install, line 56
Install/uninstall code for Social Content: Facebook.

Code

function social_content_facebook_uninstall() {
  variable_del('social_content_facebook');
  node_type_delete('facebook');
  menu_rebuild();
}