You are here

public function UserUid::title in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::title()
  2. 9 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::title()

File

core/modules/comment/src/Plugin/views/argument/UserUid.php, line 51

Class

UserUid
Argument handler to accept a user id to check for nodes that user posted or commented on.

Namespace

Drupal\comment\Plugin\views\argument

Code

public 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', [
      ':uid' => $this->argument,
    ])
      ->fetchField();
  }
  if (empty($title)) {
    return $this
      ->t('No user');
  }
  return $title;
}