function views_plugin_row_comment_view::options_form

3.x views_plugin_row_comment_view.inc views_plugin_row_comment_view::options_form(&$form, &$form_state)
2.x views_plugin_row_comment_view.inc views_plugin_row_comment_view::options_form(&$form, &$form_state)

Provide a form for setting options.

Overrides views_plugin_row::options_form

File

modules/comment/views_plugin_row_comment_view.inc, line 17
Contains the node RSS row style plugin.

Class

views_plugin_row_comment_view
Plugin which performs a comment_view on the resulting object.

Code

function options_form(&$form, &$form_state) {
  $form['links'] = array(
    '#type' => 'checkbox',
    '#title' => t('Display links'),
    '#default_value' => $this->options['links'],
  );
}