You are here

public function views_plugin_access::summary_title in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_access.inc \views_plugin_access::summary_title()
  2. 6.2 plugins/views_plugin_access.inc \views_plugin_access::summary_title()

Return a string to display as the clickable title for the access control.

Overrides views_plugin::summary_title

3 methods override views_plugin_access::summary_title()
views_plugin_access_none::summary_title in plugins/views_plugin_access_none.inc
Return a string to display as the clickable title for the access control.
views_plugin_access_perm::summary_title in plugins/views_plugin_access_perm.inc
Return a string to display as the clickable title for the access control.
views_plugin_access_role::summary_title in plugins/views_plugin_access_role.inc
Return a string to display as the clickable title for the access control.

File

plugins/views_plugin_access.inc, line 68
Definition of views_plugin_access.

Class

views_plugin_access
The base plugin to handle access control.

Code

public function summary_title() {
  return t('Unknown');
}