You are here

function select_with_style_menu in Select with Style 7

Implements hook_menu().

File

select_with_style/select_with_style.module, line 537
select_with_style.module

Code

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

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