function views_plugin_row::option_definition

3.x views_plugin_row.inc views_plugin_row::option_definition()
2.x views_plugin_row.inc views_plugin_row::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

6 calls to views_plugin_row::option_definition()
views_plugin_row_aggregator_rss::option_definition in modules/aggregator/views_plugin_row_aggregator_rss.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_comment_view::option_definition in modules/comment/views_plugin_row_comment_view.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_fields::option_definition in plugins/views_plugin_row_fields.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_node_rss::option_definition in modules/node/views_plugin_row_node_rss.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_node_view::option_definition in modules/node/views_plugin_row_node_view.inc
Information about options for all kinds of purposes will be held here.

... See full list

6 methods override views_plugin_row::option_definition()
views_plugin_row_aggregator_rss::option_definition in modules/aggregator/views_plugin_row_aggregator_rss.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_comment_view::option_definition in modules/comment/views_plugin_row_comment_view.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_fields::option_definition in plugins/views_plugin_row_fields.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_node_rss::option_definition in modules/node/views_plugin_row_node_rss.inc
Information about options for all kinds of purposes will be held here.
views_plugin_row_node_view::option_definition in modules/node/views_plugin_row_node_view.inc
Information about options for all kinds of purposes will be held here.

... See full list

File

plugins/views_plugin_row.inc, line 41
Contains the base row style plugin.

Class

views_plugin_row
Default plugin to view a single row of a table. This is really just a wrapper around a theme function.

Code

function option_definition() {
  $options = parent::option_definition();
  if (isset($this->base_table)) {
    $options['relationship'] = array('default' => 'none');
  }

  return $options;
}