You are here

function relation_endpoint_form_field_ui_field_overview_form_alter in Relation 7

Implements hook_form_field_ui_field_overview_form_alter().

File

./relation_endpoint.module, line 331
Relation endpoints field.

Code

function relation_endpoint_form_field_ui_field_overview_form_alter(&$form, $form_state) {

  // Deleting endpoints would make the module useless.
  if ($form['#entity_type'] == 'relation') {
    $form['fields']['endpoints']['delete'] = array(
      '#type' => 'markup',
      '#markup' => ' ',
    );
  }
}