public function EntityReferenceLabelFormatter::settingsForm

Returns a form to configure settings for the formatter.

Invoked from \Drupal\field_ui\Form\FieldInstanceEditForm to allow administrators to configure the formatter. The field_ui module takes care of handling submitted form values.

Parameters

array $form: The form where the settings form is being included in.

array $form_state: An associative array containing the current state of the form.

Return value

array The form elements for the formatter settings.

Overrides FormatterBase::settingsForm

File

drupal/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/field/formatter/EntityReferenceLabelFormatter.php, line 36
Contains \Drupal\entity_reference\Plugin\field\formatter\EntityReferenceLabelFormatter.

Class

EntityReferenceLabelFormatter
Plugin implementation of the 'entity reference label' formatter.

Namespace

Drupal\entity_reference\Plugin\field\formatter

Code

public function settingsForm(array $form, array &$form_state) {
  $elements['link'] = array(
    '#title' => t('Link label to the referenced entity'),
    '#type' => 'checkbox',
    '#default_value' => $this
      ->getSetting('link'),
  );
  return $elements;
}