You are here

function brb_menu in Browser Bouncer (brb) 7

Implementation of hook_menu().

File

./brb.module, line 59
Display a message to let the user knows his/her browser is not supported. This message also offer to the user different browsers that can be used instead.

Code

function brb_menu() {
  $items = array();
  $items['admin/config/brb'] = array(
    'title' => 'Browser Bouncer',
    'description' => 'Modify this settings for a better fit with your design. Remember you can also style the module by CSS.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'brb_admin_settings',
    ),
    'access arguments' => array(
      'administer brb',
    ),
    'file' => 'brb.admin.inc',
  );
  return $items;
}