Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EntityLink.php

function EntityLink::buildOptionsForm

Same name in this branch
  1. 11.1.x core/modules/views/src/Plugin/views/field/EntityLink.php \Drupal\views\Plugin\views\field\EntityLink::buildOptionsForm()

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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal