You are here

public function EntityLink::buildOptionsForm in Drupal 9

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

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

Overrides FieldPluginBase::buildOptionsForm

File

core/modules/comment/src/Plugin/views/field/EntityLink.php, line 37

Class

EntityLink
Handler for showing comment module's entity links.

Namespace

Drupal\comment\Plugin\views\field

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form['teaser'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Show teaser-style link'),
    '#default_value' => $this->options['teaser'],
    '#description' => $this
      ->t('Show the comment link in the form used on standard entity teasers, rather than the full entity form.'),
  ];
  parent::buildOptionsForm($form, $form_state);
}