You are here

public function AccessPluginBase::summaryTitle in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/access/AccessPluginBase.php \Drupal\views\Plugin\views\access\AccessPluginBase::summaryTitle()
  2. 10 core/modules/views/src/Plugin/views/access/AccessPluginBase.php \Drupal\views\Plugin\views\access\AccessPluginBase::summaryTitle()

Returns the summary of the settings in the display.

Overrides PluginBase::summaryTitle

3 methods override AccessPluginBase::summaryTitle()
None::summaryTitle in core/modules/views/src/Plugin/views/access/None.php
Returns the summary of the settings in the display.
Permission::summaryTitle in core/modules/user/src/Plugin/views/access/Permission.php
Returns the summary of the settings in the display.
Role::summaryTitle in core/modules/user/src/Plugin/views/access/Role.php
Returns the summary of the settings in the display.

File

core/modules/views/src/Plugin/views/access/AccessPluginBase.php, line 51

Class

AccessPluginBase
The base plugin to handle access control.

Namespace

Drupal\views\Plugin\views\access

Code

public function summaryTitle() {
  return $this
    ->t('Unknown');
}