You are here

function classified_notifications_uninstall in Classified Ads 7.3

Implements hook_uninstall().

  • Delete queue.

File

modules/classified_notifications/classified_notifications.install, line 29
Installer for Optional notification features for classified module.

Code

function classified_notifications_uninstall() {
  $queue = DrupalQueue::get('classified_notifications', TRUE);
  $queue
    ->deleteQueue();
}