You are here

function context_breakpoint_menu in Context Breakpoint 7

Implements hook_menu().

File

./context_breakpoint.module, line 24
context_screenresolution.module Main module file.

Code

function context_breakpoint_menu() {
  $items = array();
  $items['admin/config/media/context-breakpoint'] = array(
    'title' => 'Context Breakpoint',
    'description' => 'Global settings for breakpoint-aware context.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'context_breakpoint_admin_settings_form',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}