public function StringArgument::getSortName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/argument/StringArgument.php \Drupal\views\Plugin\views\argument\StringArgument::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/ StringArgument.php, line 281 - Contains \Drupal\views\Plugin\views\argument\StringArgument.
Class
- StringArgument
- Basic argument handler to implement string arguments that may have length limits.
Namespace
Drupal\views\Plugin\views\argumentCode
public function getSortName() {
return $this
->t('Alphabetical', array(), array(
'context' => 'Sort order',
));
}