You are here

function views_rss_plugin_style_fields::options_submit in Views RSS 7.2

Same name and namespace in other branches
  1. 6.2 views/views_rss_plugin_style_fields.inc \views_rss_plugin_style_fields::options_submit()

Allow other modules to perform any necessary changes to options form values prior to storage.

Overrides views_plugin::options_submit

File

views/views_rss_plugin_style_fields.inc, line 331
Extends the view_plugin_style class to provide new RSS view style.

Class

views_rss_plugin_style_fields
@file Extends the view_plugin_style class to provide new RSS view style.

Code

function options_submit(&$form, &$form_state) {
  foreach (module_implements('views_rss_options_form_submit') as $module) {
    $function = $module . '_views_rss_options_form_submit';
    $function($form, $form_state);
  }
}