You are here

function hosting_queued_menu in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 queued/hosting_queued.module \hosting_queued_menu()
  2. 7.3 queued/hosting_queued.module \hosting_queued_menu()

Implementation of hook_menu

File

queued/hosting_queued.module, line 6

Code

function hosting_queued_menu() {
  $items['admin/hosting/queued'] = array(
    'title' => 'Queue daemon',
    'description' => 'Configure the daemonized tasks queue daemon.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'hosting_queued_settings_form',
    ),
    'access arguments' => array(
      'administer hosting queues',
    ),
    'type' => MENU_LOCAL_TASK,
    'file' => 'hosting_queued.admin.inc',
  );
  return $items;
}