You are here

function classified_notifications_install in Classified Ads 7.3

Implements hook_install().

  • Create a queue.

File

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

Code

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