You are here

function buddylistactivity_uninstall in Activity 5.3

Same name and namespace in other branches
  1. 5.4 contrib/buddylistactivity/buddylistactivity.install \buddylistactivity_uninstall()

Implementation of hook_uninstall().

File

contrib/buddylistactivity/buddylistactivity.install, line 6

Code

function buddylistactivity_uninstall() {

  // Remove any activity entries from the buddylistactivity module
  if (module_exists('activityhistory')) {
    db_query("DELETE FROM {activity_history} WHERE aid IN (SELECT aid FROM {activity} WHERE module = '%s')", 'buddylistactivity');
  }
  db_query("DELETE FROM {activity_targets} WHERE aid IN (SELECT aid FROM {activity} WHERE module = '%s')", 'buddylistactivity');
  db_query("DELETE FROM {activity} WHERE module = '%s'", 'buddylistactivity');

  // Delete any variables that have been set.
  // We don't just DELETE FROM {variable}, even though we could.
  $result = db_query("SELECT name FROM {variable} WHERE name LIKE 'buddylistactivity_%'");

  // Instead we use the API, because API's can change!
  while ($row = db_fetch_object($result)) {
    variable_del($row->name);
  }
}