You are here

function fb_social_send_uninstall in Facebook social plugins integration 6

File

modules/fb_social_send/fb_social_send.install, line 4

Code

function fb_social_send_uninstall() {
  $vars = db_query("SELECT * FROM {variable} WHERE name LIKE 'fb_social_send_%'");
  while ($var = db_fetch_object($vars)) {
    variable_del($var->name);
  }
}