function fb_social_comments_uninstall in Facebook social plugins integration 6
File
- modules/
fb_social_comments/ fb_social_comments.install, line 4
Code
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);
}
}