function UserUid::title in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::title()
Get the title this argument will assign the view, given the argument.
This usually needs to be overridden to provide a proper title.
Overrides ArgumentPluginBase::title
File
- core/
modules/ comment/ src/ Plugin/ views/ argument/ UserUid.php, line 56 - Contains \Drupal\comment\Plugin\views\argument\UserUid.
Class
- UserUid
- Argument handler to accept a user id to check for nodes that user posted or commented on.
Namespace
Drupal\comment\Plugin\views\argumentCode
function title() {
if (!$this->argument) {
$title = \Drupal::config('user.settings')
->get('anonymous');
}
else {
$title = $this->database
->query('SELECT name FROM {users_field_data} WHERE uid = :uid AND default_langcode = 1', array(
':uid' => $this->argument,
))
->fetchField();
}
if (empty($title)) {
return $this
->t('No user');
}
return $title;
}