public function PluginBase::pluginTitle in Views (for Drupal 7) 8.3
Return the human readable name of the display.
This appears on the ui beside each plugin and beside the settings link.
File
- lib/
Drupal/ views/ Plugin/ views/ PluginBase.php, line 216 - Definition of Drupal\views\Plugin\views\PluginBase.
Class
Namespace
Drupal\views\Plugin\viewsCode
public function pluginTitle() {
if (isset($this->definition['short_title'])) {
return check_plain($this->definition['short_title']);
}
return check_plain($this->definition['title']);
}