You are here

public function UserUid::getSortName in Zircon Profile 8

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

Return a description of how the argument would normally be sorted.

Subclasses should override this to specify what the default sort order of their argument is (e.g. alphabetical, numeric, date).

Overrides ArgumentPluginBase::getSortName

File

core/modules/comment/src/Plugin/views/argument/UserUid.php, line 109
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\argument

Code

public function getSortName() {
  return $this
    ->t('Numerical', array(), array(
    'context' => 'Sort order',
  ));
}