You are here

public function None::summaryTitle in Drupal 9

Same name in this branch
  1. 9 core/modules/views/src/Plugin/views/access/None.php \Drupal\views\Plugin\views\access\None::summaryTitle()
  2. 9 core/modules/views/src/Plugin/views/cache/None.php \Drupal\views\Plugin\views\cache\None::summaryTitle()
  3. 9 core/modules/views/src/Plugin/views/pager/None.php \Drupal\views\Plugin\views\pager\None::summaryTitle()
Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/cache/None.php \Drupal\views\Plugin\views\cache\None::summaryTitle()

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

Overrides CachePluginBase::summaryTitle

File

core/modules/views/src/Plugin/views/cache/None.php, line 18

Class

None
Caching plugin that provides no caching at all.

Namespace

Drupal\views\Plugin\views\cache

Code

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