public function FieldPluginBase::adminLabel in Views (for Drupal 7) 8.3
Return a string representing this handler's name in the UI.
Overrides HandlerBase::adminLabel
1 method overrides FieldPluginBase::adminLabel()
- Broken::adminLabel in lib/
Drupal/ views/ Plugin/ views/ field/ Broken.php - Return a string representing this handler's name in the UI.
File
- 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\fieldCode
public function adminLabel($short = FALSE) {
return $this
->getField(parent::adminLabel($short));
}