You are here

function ogactivity_uninstall in Activity 6

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

Implementation of hook_uninstall().

File

contrib/ogactivity/ogactivity.install, line 17

Code

function ogactivity_uninstall() {

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

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

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