You are here

function views_jqfx_plugin_style_jqfx::options_validate in Views jQFX 7

Validate the options form.

Overrides views_plugin_style::options_validate

File

./views_jqfx_plugin_style_jqfx.inc, line 67
Contains the list style plugin.

Class

views_jqfx_plugin_style_jqfx
Style plugin to render each item of an ordered or unordered list.

Code

function options_validate(&$form, &$form_state) {
  module_load_all_includes('views_jqfx.inc');
  foreach (module_implements('views_jqfx_options_form_validate') as $module) {
    $function = $module . '_views_jqfx_options_form_validate';
    call_user_func_array($function, array(
      &$form,
      &$form_state,
      &$this,
    ));
  }
}