You are here

public function HandlerBase::submitGroupByForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/HandlerBase.php \Drupal\views\Plugin\views\HandlerBase::submitGroupByForm()

Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.

1 call to HandlerBase::submitGroupByForm()
EntityField::submitGroupByForm in core/modules/views/src/Plugin/views/field/EntityField.php
Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.
1 method overrides HandlerBase::submitGroupByForm()
EntityField::submitGroupByForm in core/modules/views/src/Plugin/views/field/EntityField.php
Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.

File

core/modules/views/src/Plugin/views/HandlerBase.php, line 352

Class

HandlerBase
Base class for Views handler plugins.

Namespace

Drupal\views\Plugin\views

Code

public function submitGroupByForm(&$form, FormStateInterface $form_state) {
  $form_state
    ->get('handler')->options['group_type'] = $form_state
    ->getValue([
    'options',
    'group_type',
  ]);
}