function views_handler_field_comment::options_form

Same name in other branches
  1. 7.x-3.x modules/comment/views_handler_field_comment.inc \views_handler_field_comment::options_form()

Provide link-to-comment option

Overrides views_handler_field::options_form

File

modules/comment/views_handler_field_comment.inc, line 28

Class

views_handler_field_comment
Field handler to allow linking to a comment.

Code

function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['link_to_comment'] = array(
        '#title' => t('Link this field to its comment'),
        '#description' => t('This will override any other link you have set.'),
        '#type' => 'checkbox',
        '#default_value' => $this->options['link_to_comment'],
    );
}