public function GroupByNumeric::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

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/GroupByNumeric.php, line 36
Definition of Drupal\views\Plugin\views\argument\GroupByNumeric.

Class

GroupByNumeric
Simple handler for arguments using group by.

Namespace

Drupal\views\Plugin\views\argument

Code

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