throttle_menu

Versions
5
throttle_menu($may_cache)
6
throttle_menu()

Code

modules/throttle/throttle.module, line 8

<?php
function throttle_menu() {
  $items['admin/settings/throttle'] = array(
    'title' => 'Throttle',
    'description' => 'Control how your site cuts out content during heavy load.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('throttle_admin_settings'),
    'access arguments' => array('administer site configuration'),
    'file' => 'throttle.admin.inc',
  );
  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.