You are here

twitter_profile_widget.install in Twitter Profile Widget 7

Uninstall function for the twitter profile widget module.

File

twitter_profile_widget.install
View source
<?php

/**
 * @file
 * Uninstall function for the twitter profile widget module.
 */

/**
 * Implements hook_uninstall().
 */
function twitter_profile_widget_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'twitter_profile_widget_%'");
  cache_clear_all('variables', 'cache');
}

Functions