You are here

function views_slideshow_plugin_style_slideshow::options_validate in Views Slideshow 6.3

Same name and namespace in other branches
  1. 6.2 views_slideshow_plugin_style_slideshow.inc \views_slideshow_plugin_style_slideshow::options_validate()
  2. 7.3 views_slideshow_plugin_style_slideshow.inc \views_slideshow_plugin_style_slideshow::options_validate()

File

./views_slideshow_plugin_style_slideshow.inc, line 224
Contains the list style plugin.

Class

views_slideshow_plugin_style_slideshow
Style plugin to render each item in a slideshow of an ordered or unordered list.

Code

function options_validate(&$form, &$form_state) {
  module_load_all_includes('views_slideshow.inc');
  $arguments = array(
    &$form,
    &$form_state,
    &$this,
  );

  // Call all modules that use hook_views_slideshow_options_form_validate
  foreach (module_implements('views_slideshow_options_form_validate') as $module) {
    $function = $module . '_views_slideshow_options_form_validate';
    call_user_func_array($function, $arguments);
  }
}