1 views_handler_argument_string.inc | views_handler_argument_string::get_sort_name() |
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 views_handler_argument::get_sort_name
File
- core/
modules/ views/ handlers/ views_handler_argument_string.inc, line 221 - Definition of views_handler_argument_string.
Class
- views_handler_argument_string
- Basic argument handler to implement string arguments that may have length limits.
Code
function get_sort_name() {
return t('Alphabetical', array(), array('context' => 'Sort order'));
}