public function views_plugin_cache::summary_title in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 plugins/views_plugin_cache.inc \views_plugin_cache::summary_title()
- 6.2 plugins/views_plugin_cache.inc \views_plugin_cache::summary_title()
Return a string to display as the clickable title for the access control.
Overrides views_plugin::summary_title
2 methods override views_plugin_cache::summary_title()
- views_plugin_cache_none::summary_title in plugins/
views_plugin_cache_none.inc - Return a string to display as the clickable title for the access control.
- views_plugin_cache_time::summary_title in plugins/
views_plugin_cache_time.inc - Return a string to display as the clickable title for the access control.
File
- plugins/
views_plugin_cache.inc, line 54 - Definition of views_plugin_cache.
Class
- views_plugin_cache
- The base plugin to handle caching.
Code
public function summary_title() {
return t('Unknown');
}