function views_handler::groupby_form_submit

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 views_handler::groupby_form_submit()
views_handler_field_field::groupby_form_submit in modules/field/views_handler_field_field.inc
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 views_handler::groupby_form_submit()
views_handler_field_field::groupby_form_submit in modules/field/views_handler_field_field.inc
Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.

File

includes/handlers.inc, line 483

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

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