function views_plugin_row::option_definition
Overrides views_object::option_definition
9 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_rss::option_definition in modules/
comment/ views_plugin_row_comment_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.
9 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_rss::option_definition in modules/
comment/ views_plugin_row_comment_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.
File
-
plugins/
views_plugin_row.inc, line 46
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
public function option_definition() {
$options = parent::option_definition();
if (isset($this->base_table)) {
$options['relationship'] = array(
'default' => 'none',
);
}
return $options;
}