function views_plugin_row_comment_rss::option_definition

Overrides views_plugin_row::option_definition

File

modules/comment/views_plugin_row_comment_rss.inc, line 26

Class

views_plugin_row_comment_rss
Plugin which formats the comments as RSS items.

Code

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