public function AccessPluginBase::summaryTitle

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

Overrides PluginBase::summaryTitle

3 methods override AccessPluginBase::summaryTitle()
None::summaryTitle in drupal/core/modules/views/lib/Drupal/views/Plugin/views/access/None.php
Return a string to display as the clickable title for the access control.
Permission::summaryTitle in drupal/core/modules/user/lib/Drupal/user/Plugin/views/access/Permission.php
Return a string to display as the clickable title for the access control.
Role::summaryTitle in drupal/core/modules/user/lib/Drupal/user/Plugin/views/access/Role.php
Return a string to display as the clickable title for the access control.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/access/AccessPluginBase.php, line 68
Definition of Drupal\views\Plugin\views\access\AccessPluginBase.

Class

AccessPluginBase
The base plugin to handle access control.

Namespace

Drupal\views\Plugin\views\access

Code

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