function plugin_test_menu

Implements hook_menu().

File

drupal/core/modules/system/tests/modules/plugin_test/plugin_test.module, line 23
Helper module for the plugin tests.

Code

function plugin_test_menu() {
  $items = array();
  $items['plugin_definition_test'] = array(
    'access callback' => TRUE,
    'page callback' => 'plugin_test_definitions',
  );
  return $items;
}