function views_plugin::plugin_title
3.x plugins.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
- includes/
plugins.inc, line 565 - Built in plugins for Views output handling.
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']);
}