public function views_handler::options_submit in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 includes/handlers.inc \views_handler::options_submit()
- 6.2 includes/handlers.inc \views_handler::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.
1 call to views_handler::options_submit()
- views_handler_area_text::options_submit in handlers/
views_handler_area_text.inc - Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.
5 methods override views_handler::options_submit()
- views_handler_area_text::options_submit in handlers/
views_handler_area_text.inc - Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.
- views_handler_argument::options_submit in handlers/
views_handler_argument.inc - Perform any necessary changes to the form values prior to storage. There is no need for this function to actually store the data.
- views_handler_field::options_submit in handlers/
views_handler_field.inc - Performs some cleanup tasks on the options array before saving it.
- views_handler_filter::options_submit in handlers/
views_handler_filter.inc - Simple submit handler.
- views_handler_sort::options_submit in handlers/
views_handler_sort.inc - Simple submit handler.
File
- includes/
handlers.inc, line 434 - Defines the various handler objects to help build and display views.
Class
- views_handler
- Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.
Code
public function options_submit(&$form, &$form_state) {
}