You are here

function bootstrap_site_alert_menu in Bootstrap Site Alert 7

Implements hook_menu().

File

./bootstrap_site_alert.module, line 27
The bootstrap_site_alert module file.

Code

function bootstrap_site_alert_menu() {
  $items = array();
  $items['admin/config/system/bootstrap-site-alert'] = array(
    'title' => 'Bootstrap Site Alert Configuration',
    'description' => 'Configure the Bootstrap Site Wide Alert Settings',
    'type' => MENU_NORMAL_ITEM,
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'bootstrap_site_alert_admin',
    ),
    'access arguments' => array(
      'administer bootstrap site alerts',
    ),
    'file' => 'includes/bootstrap_site_alert.admin.inc',
  );
  return $items;
}