You are here

function flagactivity_uninstall in Activity 5.4

Same name and namespace in other branches
  1. 6 contrib/flagactivity/flagactivity.install \flagactivity_uninstall()

Implementation of hook_uninstall().

File

contrib/flagactivity/flagactivity.install, line 17

Code

function flagactivity_uninstall() {

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

  // 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 'flagactivity_%'");

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