You are here

public function NumericArgument::getSortName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/argument/NumericArgument.php \Drupal\views\Plugin\views\argument\NumericArgument::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/views/src/Plugin/views/argument/NumericArgument.php, line 128
Contains \Drupal\views\Plugin\views\argument\NumericArgument.

Class

NumericArgument
Basic argument handler for arguments that are numeric. Incorporates break_phrase.

Namespace

Drupal\views\Plugin\views\argument

Code

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