function views_handler_area_text::options_submit

3.x views_handler_area_text.inc views_handler_area_text::options_submit(&$form, &$form_state)

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

Overrides views_handler::options_submit

1 method overrides views_handler_area_text::options_submit()
views_handler_area_text_custom::options_submit in handlers/views_handler_area_text_custom.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

handlers/views_handler_area_text.inc, line 85
Definition of views_handler_area_text.

Class

views_handler_area_text
Views area text handler.

Code

function options_submit(&$form, &$form_state) {
  $form_state['values']['options']['format'] = $form_state['values']['options']['content']['format'];
  $form_state['values']['options']['content'] = $form_state['values']['options']['content']['value'];
  parent::options_submit($form, $form_state);
}