You are here

function fb_social_like_uninstall in Facebook social plugins integration 6

File

modules/fb_social_like/fb_social_like.install, line 4

Code

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