You are here

function responsive_background_menu in Responsive Background Images 7

Implements hook_menu().

File

./responsive_background.module, line 52

Code

function responsive_background_menu() {
  $items = array();
  $items['admin/config/media/responsive_background'] = array(
    'title' => 'Responsive Background Images',
    'page callback' => 'drupal_get_form',
    'access callback' => 'user_access',
    'access arguments' => array(
      'administer responsive_background',
    ),
    'page arguments' => array(
      'responsive_background_admin',
      NULL,
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'responsive_background.admin.inc',
    'description' => 'Configure Responsive Background Images',
  );
  return $items;
}