public function None::summaryTitle in Drupal 10
Same name in this branch
- 10 core/modules/views/src/Plugin/views/access/None.php \Drupal\views\Plugin\views\access\None::summaryTitle()
- 10 core/modules/views/src/Plugin/views/cache/None.php \Drupal\views\Plugin\views\cache\None::summaryTitle()
- 10 core/modules/views/src/Plugin/views/pager/None.php \Drupal\views\Plugin\views\pager\None::summaryTitle()
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/cache/None.php \Drupal\views\Plugin\views\cache\None::summaryTitle()
- 9 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\cacheCode
public function summaryTitle() {
return $this
->t('None');
}