1 installer_test.module installer_test_menu()

Implements hook_menu().

File

core/modules/installer/tests/installer_test/installer_test.module, line 20

Code

function installer_test_menu() {
  $items['core/modules/installer/tests/installer_test_xml/%/%'] = array(
    'title' => 'XML feed page',
    'description' => "Deliver release info as an XML file.",
    'page callback' => 'installer_test_xml',
    'page arguments' => array(5, 6),
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  $items['installer_test/query/%/%'] = array(
    'title' => 'Test Query page',
    'description' => "Tests the ability to fetch and display projects, and filter them appropriately.",
    'page callback' => 'installer_test_query',
    'page arguments' => array(1, 2, 3),
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  return $items;
}