You are here

function session_api_test_menu in Session API 7

Implementation of hook_menu().

File

tests/session_api_test.module, line 12
Helper module for Session API tests.

Code

function session_api_test_menu() {
  $items['session-api-test'] = array(
    'page callback' => 'session_api_test_page',
    'access arguments' => array(
      'access content',
    ),
    'title' => 'Session API test module page',
    'type' => MENU_CALLBACK,
  );
  return $items;
}