public function EntityLink::buildOptionsForm in Drupal 10
Same name in this branch
- 10 core/modules/views/src/Plugin/views/field/EntityLink.php \Drupal\views\Plugin\views\field\EntityLink::buildOptionsForm()
- 10 core/modules/comment/src/Plugin/views/field/EntityLink.php \Drupal\comment\Plugin\views\field\EntityLink::buildOptionsForm()
Same name and namespace in other branches
- 8 core/modules/comment/src/Plugin/views/field/EntityLink.php \Drupal\comment\Plugin\views\field\EntityLink::buildOptionsForm()
- 9 core/modules/comment/src/Plugin/views/field/EntityLink.php \Drupal\comment\Plugin\views\field\EntityLink::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\fieldCode
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);
}