public function FieldPluginBase::adminLabel

Return a string representing this handler's name in the UI.

Overrides HandlerBase::adminLabel

1 method overrides FieldPluginBase::adminLabel()
Broken::adminLabel in drupal/core/modules/views/lib/Drupal/views/Plugin/views/field/Broken.php
Return a string representing this handler's name in the UI.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php, line 1619
Definition of Drupal\views\Plugin\views\field\FieldPluginBase.

Class

FieldPluginBase
Base field handler that has no options and renders an unformatted field.

Namespace

Drupal\views\Plugin\views\field

Code

public function adminLabel($short = FALSE) {
  return $this
    ->getField(parent::adminLabel($short));
}