You are here

function upgrade_status_install in Upgrade Status 7

Implements hook_install().

File

./upgrade_status.install, line 11
Install, update, and uninstall functions for the Upgrade Status module.

Code

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