public function ArgumentPluginBase::getTitle in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php \Drupal\views\Plugin\views\argument\ArgumentPluginBase::getTitle()
Called by the view object to get the title. This may be set by a validator so we don't necessarily call through to title().
1 call to ArgumentPluginBase::getTitle()
- ArgumentPluginBase::exceptionTitle in core/
modules/ views/ src/ Plugin/ views/ argument/ ArgumentPluginBase.php
File
- core/
modules/ views/ src/ Plugin/ views/ argument/ ArgumentPluginBase.php, line 976 - Contains \Drupal\views\Plugin\views\argument\ArgumentPluginBase.
Class
- ArgumentPluginBase
- Base class for argument (contextual filter) handler plugins.
Namespace
Drupal\views\Plugin\views\argumentCode
public function getTitle() {
if (isset($this->validated_title)) {
return $this->validated_title;
}
else {
return $this
->title();
}
}