You are here

function slide_with_style_menu in Select with Style 7

Implements hook_menu().

File

slide_with_style/slide_with_style.module, line 26
Defines a slider RANGE widget to create filters for numeric and list fields.

Code

function slide_with_style_menu() {
  $items = array();

  // Put the administrative settings under System on the Configuration page.
  $items['admin/config/system/slide_with_style'] = array(
    'title' => 'Slide with Style',
    'description' => 'Configure Slide with Style module.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'slide_with_style_admin_configure',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'slide_with_style.admin.inc',
  );
  return $items;
}