You are here

function twitter_post_uninstall in Twitter 6.5

Same name and namespace in other branches
  1. 7.6 twitter_post/twitter_post.install \twitter_post_uninstall()
  2. 7.5 twitter_post/twitter_post.install \twitter_post_uninstall()

Implements hook_uninstall().

File

twitter_post/twitter_post.install, line 11
Install, update and uninstall functions for the twitter module.

Code

function twitter_post_uninstall() {
  variable_del('twitter_post_types');
  variable_del('twitter_post_default_format');
  variable_del('twitter_post_default_value');
  variable_del('twitter_post_on_update');
}