You are here

function jscrollpane_menu in JScrollPane 6.2

Implementation of hook_menu().

File

./jscrollpane.module, line 11
JavaScript based scrollable containers

Code

function jscrollpane_menu() {
  $items['admin/settings/jscrollpane'] = array(
    'title' => 'jScrollPane',
    'description' => 'Administration settings for the jScollPane module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'jscrollpane_settings_form',
    ),
    'access arguments' => array(
      'administer jscrollpane',
    ),
    'file' => 'includes/jscrollpane.admin.inc',
  );
  return $items;
}