public function HandlerBase::adminLabel in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/HandlerBase.php \Drupal\views\Plugin\views\HandlerBase::adminLabel()
Return a string representing this handler's name in the UI.
Overrides ViewsHandlerInterface::adminLabel
7 calls to HandlerBase::adminLabel()
- AreaPluginBase::adminSummary in core/
modules/ views/ src/ Plugin/ views/ area/ AreaPluginBase.php - Provide text for the administrative summary.
- Combine::validate in core/
modules/ views/ src/ Plugin/ views/ filter/ Combine.php - Validate that the plugin is correct and can be saved.
- FieldPluginBase::adminLabel in core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php - Return a string representing this handler's name in the UI.
- GroupByNumeric::adminLabel in core/
modules/ views/ src/ Plugin/ views/ filter/ GroupByNumeric.php - Return a string representing this handler's name in the UI.
- GroupByNumeric::adminLabel in core/
modules/ views/ src/ Plugin/ views/ sort/ GroupByNumeric.php - Return a string representing this handler's name in the UI.
4 methods override HandlerBase::adminLabel()
- FieldPluginBase::adminLabel in core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php - Return a string representing this handler's name in the UI.
- GroupByNumeric::adminLabel in core/
modules/ views/ src/ Plugin/ views/ filter/ GroupByNumeric.php - Return a string representing this handler's name in the UI.
- GroupByNumeric::adminLabel in core/
modules/ views/ src/ Plugin/ views/ sort/ GroupByNumeric.php - Return a string representing this handler's name in the UI.
- GroupByNumeric::adminLabel in core/
modules/ views/ src/ Plugin/ views/ argument/ GroupByNumeric.php - Return a string representing this handler's name in the UI.
File
- core/
modules/ views/ src/ Plugin/ views/ HandlerBase.php, line 182 - Contains \Drupal\views\Plugin\views\HandlerBase.
Class
- HandlerBase
- Base class for Views handler plugins.
Namespace
Drupal\views\Plugin\viewsCode
public function adminLabel($short = FALSE) {
if (!empty($this->options['admin_label'])) {
return $this->options['admin_label'];
}
$title = $short && isset($this->definition['title short']) ? $this->definition['title short'] : $this->definition['title'];
return $this
->t('@group: @title', array(
'@group' => $this->definition['group'],
'@title' => $title,
));
}