1 views_handler_argument_comment_user_uid.inc | views_handler_argument_comment_user_uid::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/ comment/ views/ views_handler_argument_comment_user_uid.inc, line 57 - Definition of views_handler_argument_comment_user_uid.
Class
- views_handler_argument_comment_user_uid
- Argument handler to accept a user id to check for nodes that user posted or commented on.
Code
function get_sort_name() {
return t('Numerical', array(), array('context' => 'Sort order'));
}