public function PluginBase::pluginTitle

Return the human readable name of the display.

This appears on the ui beside each plugin and beside the settings link.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php, line 216
Definition of Drupal\views\Plugin\views\PluginBase.

Class

PluginBase

Namespace

Drupal\views\Plugin\views

Code

public function pluginTitle() {
  if (isset($this->definition['short_title'])) {
    return check_plain($this->definition['short_title']);
  }
  return check_plain($this->definition['title']);
}