function ad_text_uninstall in Advertisement 6.2
Same name and namespace in other branches
- 5.2 text/ad_text.install \ad_text_uninstall()
- 5 text/ad_text.install \ad_text_uninstall()
- 6.3 text/ad_text.install \ad_text_uninstall()
- 6 text/ad_text.install \ad_text_uninstall()
- 7 text/ad_text.install \ad_text_uninstall()
Allow complete uninstallation of the ad_text module.
File
- text/
ad_text.install, line 57 - Ad_text module database schema.
Code
function ad_text_uninstall() {
// Delete all ad_text content.
$result = db_query("SELECT aid FROM {ad_text}");
while ($aid = db_result($result)) {
node_delete($aid);
}
// Remove tables.
drupal_uninstall_schema('ad_text');
}