1 simpletest_example.module simpletest_example_menu()

Implements hook_menu().

Provides an explanation.

Related topics

File

modules/examples/simpletest_example/simpletest_example.module, line 86
Hook implementations for the SimpleTest Example module.

Code

function simpletest_example_menu() {
  $items['examples/simpletest_example'] = array(
    'title' => 'Simpletest Example',
    'description' => 'Explain the simpletest example and allow the error logic to be executed.',
    'page callback' => '_simpletest_example_explanation',
    'access callback' => TRUE,
  );
  return $items;
}