| 1.20.x plugin.inc | views_plugin::plugin_title() | 
Return the human readable name of the display.
This appears on the ui beside each plugin and beside the settings link.
File
- modules/views/ includes/ plugin.inc, line 104 
Class
- views_plugin
- Abstract base class to provide interface common to all plugins.
Code
function plugin_title() {
  if (isset($this->definition['short title'])) {
    return check_plain($this->definition['short title']);
  }
  return check_plain($this->definition['title']);
}