You are here

public function views_handler_area_text::options_submit in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_area_text.inc \views_handler_area_text::options_submit()

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 106
Definition of views_handler_area_text.

Class

views_handler_area_text
Views area text handler.

Code

public 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);
}