You are here

fb_social_likebox.install in Facebook social plugins integration 6

File

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

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

//change page_id to href
function fb_social_likebox_update_6000() {
  $ret = array();
  variable_del('fb_social_likebox_pageid');
  return $ret;
}