You are here

function views_handler_area_text::options_submit in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.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

File

handlers/views_handler_area_text.inc, line 83
Contains views_handler_area_text handler.

Class

views_handler_area_text
Views area text handler.

Code

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