You are here

function high_contrast_menu in High contrast 7

Same name and namespace in other branches
  1. 6 high_contrast.module \high_contrast_menu()

Implements hook_menu().

File

./high_contrast.module, line 74
High Contrast main module file.

Code

function high_contrast_menu() {
  $items['admin/config/user-interface/high-contrast'] = [
    'title' => 'High Contrast',
    'description' => 'Settings related to High Contrast',
    'page callback' => 'drupal_get_form',
    'page arguments' => [
      'high_contrast_settings_form',
    ],
    'access callback' => 'user_access',
    'access arguments' => [
      'administer site configuration',
    ],
  ];
  return $items;
}