1 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

File

core/modules/views/handlers/views_handler_area_text.inc, line 83
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);
}