You are here

public function UserUid::getSortName 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::getSortName()
  2. 9 core/modules/comment/src/Plugin/views/argument/UserUid.php \Drupal\comment\Plugin\views\argument\UserUid::getSortName()

File

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

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 getSortName() {
  return $this
    ->t('Numerical', [], [
    'context' => 'Sort order',
  ]);
}