queue_menu

Versions
4.6
queue_menu($may_cache)

Implementation of hook_menu().

Code

modules/queue.module, line 42

<?php
function queue_menu($may_cache) {
  $items = array();

  if ($may_cache) {
    $items[] = array('path' => 'queue', 'title' => t('submission queue'),
      'callback' => 'queue_page',
      'access' => user_access('access submission queue'),
      'weight' => 1);
  }

  return $items;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.