1 link_field_custom_form_test.module link_field_custom_form_test_menu()

Implements hook_menu().

File

core/modules/link/tests/modules/link_field_custom_form_test/link_field_custom_form_test.module, line 10
Helper module for testing link fields with custom forms.

Code

function link_field_custom_form_test_menu() {
  $items['link-field-custom-form'] = array(
    'title' => "Custom Form to test link field",
    'page callback' => 'backdrop_get_form',
    'page arguments' => array('link_field_custom_form_test_form'),
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );

  return $items;
}