function nodeactivity_uninstall in Activity 6
Same name and namespace in other branches
- 5.4 contrib/nodeactivity/nodeactivity.install \nodeactivity_uninstall()
- 5.3 contrib/nodeactivity/nodeactivity.install \nodeactivity_uninstall()
Implementation of hook_uninstall().
File
- contrib/
nodeactivity/ nodeactivity.install, line 17
Code
function nodeactivity_uninstall() {
// Remove any activity entries from the nodeactivity module
if (module_exists('activityhistory')) {
db_query("DELETE FROM {activity_history} WHERE aid IN (SELECT aid FROM {activity} WHERE module = '%s')", 'nodeactivity');
}
db_query("DELETE FROM {activity_targets} WHERE aid IN (SELECT aid FROM {activity} WHERE module = '%s')", 'nodeactivity');
db_query("DELETE FROM {activity_comments} WHERE aid IN (SELECT aid FROM {activity} WHERE module = '%s')", 'nodeactivity');
db_query("DELETE FROM {activity} WHERE module = '%s'", 'nodeactivity');
// 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 'nodeactivity_%'");
// Instead we use the API, because API's can change!
while ($row = db_fetch_object($result)) {
variable_del($row->name);
}
}