You are here

public function PluginBase::summaryTitle in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::summaryTitle()
  2. 9 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::summaryTitle()
3 methods override PluginBase::summaryTitle()
AccessPluginBase::summaryTitle in core/modules/views/src/Plugin/views/access/AccessPluginBase.php
Returns the summary of the settings in the display.
CachePluginBase::summaryTitle in core/modules/views/src/Plugin/views/cache/CachePluginBase.php
Return a string to display as the clickable title for the access control.
PagerPluginBase::summaryTitle in core/modules/views/src/Plugin/views/pager/PagerPluginBase.php
Return a string to display as the clickable title for the pager plugin.

File

core/modules/views/src/Plugin/views/PluginBase.php, line 312

Class

PluginBase

Namespace

Drupal\views\Plugin\views

Code

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