function views_plugin_display_attachment::options_submit
3.x views_plugin_display_attachment.inc | views_plugin_display_attachment::options_submit(&$form, &$form_state) |
2.x views_plugin_display_attachment.inc | views_plugin_display_attachment::options_submit(&$form, &$form_state) |
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_plugin_display::options_submit
File
- plugins/
views_plugin_display_attachment.inc, line 194 - Contains the attachment display plugin.
Class
- views_plugin_display_attachment
- The plugin that handles an attachment display.
Code
function options_submit(&$form, &$form_state) {
// It is very important to call the parent function here:
parent::options_submit($form, $form_state);
switch ($form_state['section']) {
case 'inherit_arguments':
case 'inherit_pager':
case 'render_pager':
case 'inherit_exposed_filters':
case 'attachment_position':
case 'displays':
$this->set_option($form_state['section'], $form_state['values'][$form_state['section']]);
break;
}
}