function views_handler_area_text::options_submit
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
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);
}