public function 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()
Field::submitGroupByForm in drupal/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.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()
Field::submitGroupByForm in drupal/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.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

drupal/core/modules/views/lib/Drupal/views/Plugin/views/HandlerBase.php, line 343
Definition of Drupal\views\Plugin\views\HandlerBase.

Class

HandlerBase

Namespace

Drupal\views\Plugin\views

Code

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