You are here

function respondjs_menu in Respond.js 7

Implements hook_menu().

Provides admin config pages.

File

./respondjs.module, line 18
Main file for the Respond.js module

Code

function respondjs_menu() {
  $items = array();
  $items['admin/config/media/respondjs'] = array(
    'title' => 'Respond.js',
    'description' => 'Configure respond.js settings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'respondjs_admin',
    ),
    'access arguments' => array(
      'administer respondjs',
    ),
    'file' => 'respondjs.admin.inc',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}