You are here

function upgrade_status_update_7000 in Upgrade Status 7

Create a queue to store tasks for requests to fetch available update data.

File

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

Code

function upgrade_status_update_7000() {
  module_load_include('inc', 'system', 'system.queue');
  $queue = DrupalQueue::get('upgrade_status_fetch_tasks');
  $queue
    ->createQueue();
}