1 views_handler_argument.inc views_handler_argument::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).

File

core/modules/views/handlers/views_handler_argument.inc, line 1166
@todo.

Class

views_handler_argument
Base class for arguments.

Code

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