You are here

function views_jqfx_plugin_style_jqfx::option_definition in Views jQFX 7

Set default options.

Overrides views_plugin_style_list::option_definition

File

./views_jqfx_plugin_style_jqfx.inc, line 14
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 option_definition() {
  $options = parent::option_definition();

  // Load all include files from views jqfx addons.
  module_load_all_includes('views_jqfx.inc');

  // call every module using hook_views_jqfx_option_definition and merge
  // it's return value with the other default options.
  return array_merge($options, module_invoke_all('views_jqfx_option_definition'));
}