function views_plugin_row::option_definition

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


'option_name' => array(
 - 'default' => default value,
 - 'translatable' => (optional) TRUE/FALSE (wrap in t() on export if true),
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 - 'bool' => (optional) TRUE/FALSE Is the value a boolean value. This will
     change the export format to TRUE/FALSE instead of 1/0.
 - 'export' => (optional) FALSE or a callback for special export handling
     if necessary.
 - 'unpack_translatable' => (optional) callback for special handling for
     translating data within the option, if necessary.
 ),

Return value

array Returns the options of this handler/plugin.

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.

... See full list

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.

... See full list

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;
}