You are here

public function CmisFieldBrowser::settingsForm in CMIS API 8.2

Same name and namespace in other branches
  1. 3.0.x src/Plugin/Field/FieldFormatter/CmisFieldBrowser.php \Drupal\cmis\Plugin\Field\FieldFormatter\CmisFieldBrowser::settingsForm()

Returns a form to configure settings for the formatter.

Invoked from \Drupal\field_ui\Form\EntityDisplayFormBase 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.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form elements for the formatter settings.

Overrides FormatterBase::settingsForm

File

src/Plugin/Field/FieldFormatter/CmisFieldBrowser.php, line 39

Class

CmisFieldBrowser
Plugin implementation of the 'cmis_field_link' formatter.

Namespace

Drupal\cmis\Plugin\Field\FieldFormatter

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
  $form = parent::settingsForm($form, $form_state);
  $form['show_breadcrumb'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Show breadcrumb'),
    '#description' => $this
      ->t('This option will affect only the first display. When navigating into folders the breadcrumb will be displayed.'),
    '#default_value' => $this
      ->getSetting('show_breadcrumb'),
  ];
  return $form;
}