You are here

protected function EntityListTrait::postProcessSettingsForm in Formatter Suite 8

Post-processes the settings form after it has been built.

This may be used by formatters that use this trait to adjust the form after it has been updated with list features.

Parameters

array $elements: The form's elements.

1 call to EntityListTrait::postProcessSettingsForm()
EntityListTrait::settingsForm in src/Plugin/Field/FieldFormatter/EntityListTrait.php
3 methods override EntityListTrait::postProcessSettingsForm()
DateTimeCustomListFormatter::postProcessSettingsForm in src/Plugin/Field/FieldFormatter/DateTimeCustomListFormatter.php
Post-processes the settings form after it has been built.
DateTimeTimeAgoListFormatter::postProcessSettingsForm in src/Plugin/Field/FieldFormatter/DateTimeTimeAgoListFormatter.php
Post-processes the settings form after it has been built.
TimestampTimeAgoListFormatter::postProcessSettingsForm in src/Plugin/Field/FieldFormatter/TimestampTimeAgoListFormatter.php
Post-processes the settings form after it has been built.

File

src/Plugin/Field/FieldFormatter/EntityListTrait.php, line 110

Class

EntityListTrait
Formats multiple fields as a list.

Namespace

Drupal\formatter_suite\Plugin\Field\FieldFormatter

Code

protected function postProcessSettingsForm(array $elements) {
  return $elements;
}