You are here

function lhtest_menu in Login History 7

Implements hook_menu().

File

tests/lhtest/lhtest.module, line 6

Code

function lhtest_menu() {
  $items['lhtest/delete-cookies'] = array(
    'title' => 'Delete all the cookies',
    'page callback' => '_lhtest_delete_all_cookies',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}