function views_plugin::summary_title
3.x plugins.inc | views_plugin::summary_title() |
Returns the summary of the settings in the display.
8 methods override views_plugin::summary_title()
- views_plugin_access::summary_title in plugins/
views_plugin_access.inc - Return a string to display as the clickable title for the access control.
- views_plugin_cache::summary_title in plugins/
views_plugin_cache.inc - Return a string to display as the clickable title for the access control.
- views_plugin_pager::summary_title in plugins/
views_plugin_pager.inc - Return a string to display as the clickable title for the pager plugin.
- views_plugin_query::summary_title in plugins/
views_plugin_query.inc - Returns the summary of the settings in the display.
- views_plugin_row_comment_view::summary_title in modules/
comment/ views_plugin_row_comment_view.inc - Returns the summary of the settings in the display.
File
- includes/
plugins.inc, line 557 - Built in plugins for Views output handling.
Class
- views_plugin
- Abstract base class to provide interface common to all plugins.
Code
function summary_title() {
return t('Settings');
}