function 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 578

Class

views_plugin
Abstract base class to provide interface common to all plugins.

Code

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