You are here

function drupalauth4ssp_menu in DrupalAuth for SimpleSAMLphp 7

Implements hook_menu().

File

./drupalauth4ssp.module, line 12
DrupalAuth For simpleSAMLphp module.

Code

function drupalauth4ssp_menu() {
  $items = array();
  $items['admin/config/people/drupalauth4ssp'] = array(
    'title' => 'Drupalauth for SimpleSAMLphp Settings',
    'description' => 'Control the various settings of the drupalauth4ssp module',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'drupalauth4ssp_settings',
    ),
    'access arguments' => array(
      'administer drupalauth4ssp',
    ),
    'file' => 'drupalauth4ssp.admin.inc',
    'type' => MENU_LOCAL_TASK | MENU_NORMAL_ITEM,
  );
  return $items;
}