Add $form and $form_state parameters to formatter plugins' settingsForm method

Created on 20 December 2024, 3 months ago

Problem/Motivation

The \Drupal\field_group\FieldGroupFormatterInterface::settingsForm() methods are called in two different contexts:

  1. when creating the field group, by the \Drupal\field_group\Form\FieldGroupAddForm form
  2. when editing an existing field group, by the field_group_format_settings_form() function called within the field_group_field_ui_display_form_alter() hook implementation

In the edition context, $form and $form_state are passed to the settingsForm method, which is not a problem for PHP that accepts more arguments than defined in method calls.
In the creation context, these arguments are not passed to the settingsForm method.

As the \Drupal\field_group\FieldGroupFormatterInterface::settingsForm() method description does not include these parameters, one specific implementation cannot declare them without throwing a fatal error.

In some specific contrib cases (like UI Patterns Field Group or SDC Display modules implementations), having these parameters declared would be a good thing, even if your core formatters don't use them.

Proposed resolution

Add these parameters in \Drupal\field_group\FieldGroupFormatterInterface::settingsForm() method description and all field_group implementations.

Remaining tasks

Code and documentation.

API changes

New parameters on \Drupal\field_group\FieldGroupFormatterInterface::settingsForm().
Interface changes might break existing contrib/custom field group formatters.
This might be the appropriate time to do this before beta1!

Feature request
Status

Active

Version

4.0

Component

Miscellaneous

Created by

🇫🇷France duaelfr Montpellier, France

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024