function views_plugin_row_comment_view::option_definition

Overrides views_plugin_row::option_definition

File

modules/comment/views_plugin_row_comment_view.inc, line 43

Class

views_plugin_row_comment_view
Plugin which performs a comment_view on the resulting object.

Code

public function option_definition() {
    $options = parent::option_definition();
    $options['links'] = array(
        'default' => TRUE,
        'bool' => TRUE,
    );
    $options['view_mode'] = array(
        'default' => 'full',
    );
    return $options;
}