You are here

public function PluginBase::summaryTitle in Drupal 8

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

Returns the summary of the settings in the display.

Overrides ViewsPluginInterface::summaryTitle

6 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.
EntityRow::summaryTitle in core/modules/views/src/Plugin/views/row/EntityRow.php
Returns the summary of the settings in the display.
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.
QueryPluginBase::summaryTitle in core/modules/views/src/Plugin/views/query/QueryPluginBase.php
Returns the summary of the settings in the display.

... See full list

File

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

Class

PluginBase
Base class for any views plugin types.

Namespace

Drupal\views\Plugin\views

Code

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