Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. UserUid.php

function UserUid::title

Overrides ArgumentPluginBase::title

File

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

Class

UserUid
The views user ID argument handler.

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;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal