You are here

fb_social_comments.install in Facebook social plugins integration 6

File

modules/fb_social_comments/fb_social_comments.install
View source
<?php

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

Functions