You are here

function button_field_menu in Button Field 6

Implementation of hook_menu().

Return value

array

File

./button_field.module, line 13
Defines a field, widget and formatter for the button field type.

Code

function button_field_menu() {
  $items['button_field/callback'] = array(
    'description' => 'Callback used when a button field is clicked on',
    'page callback' => 'button_field_callback',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );

  // end $items
  return $items;
}