function NodeNewComments::buildOptionsForm
Overrides NumericField::buildOptionsForm
File
- 
              core/modules/ comment/ src/ Plugin/ views/ field/ NodeNewComments.php, line 124 
Class
- NodeNewComments
- Field handler to display the number of new comments.
Namespace
Drupal\comment\Plugin\views\fieldCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form['link_to_comment'] = [
    '#title' => $this->t('Link this field to new comments'),
    '#description' => $this->t("Enable to override this field's links."),
    '#type' => 'checkbox',
    '#default_value' => $this->options['link_to_comment'],
  ];
  parent::buildOptionsForm($form, $form_state);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
