You are here

function views_plugin_row_comment_view::options_form in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 modules/comment/views_plugin_row_comment_view.inc \views_plugin_row_comment_view::options_form()
  2. 7.3 modules/comment/views_plugin_row_comment_view.inc \views_plugin_row_comment_view::options_form()

Provide a form for setting options.

Overrides views_plugin_row::options_form

File

modules/comment/views_plugin_row_comment_view.inc, line 20
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'],
  );
}