You are here

public function NodeNewComments::buildOptionsForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Plugin/views/field/NodeNewComments.php \Drupal\comment\Plugin\views\field\NodeNewComments::buildOptionsForm()
  2. 10 core/modules/comment/src/Plugin/views/field/NodeNewComments.php \Drupal\comment\Plugin\views\field\NodeNewComments::buildOptionsForm()

Default options form that provides the label widget that all fields should have.

Overrides NumericField::buildOptionsForm

File

core/modules/comment/src/Plugin/views/field/NodeNewComments.php, line 116

Class

NodeNewComments
Field handler to display the number of new comments.

Namespace

Drupal\comment\Plugin\views\field

Code

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);
}