You are here

function footable_style_plugin::option_definition in FooTable 7

Provide default options.

Overrides views_plugin_style_table::option_definition

File

views/footable_style_plugin.inc, line 16
Contains the footable style plugin.

Class

footable_style_plugin
Style plugin to render each item as a row in a responsive table.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['footable'] = array(
    'default' => array(),
  );
  return $options;
}