function 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 125  
Class
- NumericArgument
 - Basic argument handler for arguments that are numeric.
 
Namespace
Drupal\views\Plugin\views\argumentCode
public function getSortName() {
  return $this->t('Numerical', [], [
    'context' => 'Sort order',
  ]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.