function views_plugin_style::option_definition

3.x views_plugin_style.inc views_plugin_style::option_definition()
2.x views_plugin_style.inc views_plugin_style::option_definition()

Information about options for all kinds of purposes will be held here.

'option_name' => array(
 - 'default' => default value,
 - 'translatable' => TRUE/FALSE (wrap in t() on export if true),
 - 'contains' => array of items this contains, with its own defaults, etc.
     If contains is set, the default will be ignored and assumed to
     be array()

 ),
 

Each option may have any of the following functions:

  • export_option_OPTIONNAME -- Special export handling if necessary.
  • translate_option_OPTIONNAME -- Special handling for translating data within the option, if necessary.

Overrides views_object::option_definition

7 calls to views_plugin_style::option_definition()
views_plugin_style_grid::option_definition in plugins/views_plugin_style_grid.inc
Set default options
views_plugin_style_jump_menu::option_definition in plugins/views_plugin_style_jump_menu.inc
Information about options for all kinds of purposes will be held here.
views_plugin_style_list::option_definition in plugins/views_plugin_style_list.inc
Set default options
views_plugin_style_rss::option_definition in plugins/views_plugin_style_rss.inc
Information about options for all kinds of purposes will be held here.
views_plugin_style_summary::option_definition in plugins/views_plugin_style_summary.inc
Information about options for all kinds of purposes will be held here.

... See full list

7 methods override views_plugin_style::option_definition()
views_plugin_style_grid::option_definition in plugins/views_plugin_style_grid.inc
Set default options
views_plugin_style_jump_menu::option_definition in plugins/views_plugin_style_jump_menu.inc
Information about options for all kinds of purposes will be held here.
views_plugin_style_list::option_definition in plugins/views_plugin_style_list.inc
Set default options
views_plugin_style_rss::option_definition in plugins/views_plugin_style_rss.inc
Information about options for all kinds of purposes will be held here.
views_plugin_style_summary::option_definition in plugins/views_plugin_style_summary.inc
Information about options for all kinds of purposes will be held here.

... See full list

File

plugins/views_plugin_style.inc, line 78

Class

views_plugin_style
Base class to define a style plugin handler.

Code

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