You are here

function views_plugin::options_submit in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 includes/plugins.inc \views_plugin::options_submit()
  2. 7.3 includes/plugins.inc \views_plugin::options_submit()

Handle any special handling on the validate form.

3 methods override views_plugin::options_submit()
views_plugin_access::options_submit in plugins/views_plugin_access.inc
Provide the default form form for submitting options
views_plugin_display::options_submit in plugins/views_plugin_display.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_plugin_row::options_submit in plugins/views_plugin_row.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

includes/plugins.inc, line 371
plugins.inc Built in plugins for Views output handling.

Class

views_plugin
Abstract base class to provide interface common to all plugins.

Code

function options_submit(&$form, &$form_state) {
}