You are here

function getlocations_fields_handler_argument_glid::get_sort_name in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_fields/handlers/getlocations_fields_handler_argument_glid.inc \getlocations_fields_handler_argument_glid::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).

Return value

string The label for the sorter.

Overrides views_handler_argument::get_sort_name

File

modules/getlocations_fields/handlers/getlocations_fields_handler_argument_glid.inc, line 118
getlocations_fields_handler_argument_glid.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_fields_handler_argument_glid
Argument handler to accept glid

Code

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