function views_handler_argument::title

3.x views_handler_argument.inc views_handler_argument::title()
2.x views_handler_argument.inc views_handler_argument::title()

Get the title this argument will assign the view, given the argument.

This usually needs to be overridden to provide a proper title.

1 call to views_handler_argument::title()
views_handler_argument::get_title in handlers/views_handler_argument.inc
Called by the view object to get the title. This may be set by a validator so we don't necessarily call through to title().
17 methods override views_handler_argument::title()
views_handler_argument_comment_user_uid::title in modules/comment/views_handler_argument_comment_user_uid.inc
Get the title this argument will assign the view, given the argument.
views_handler_argument_file_fid::title in modules/system/views_handler_argument_file_fid.inc
Override the behavior of title(). Get the title of the file.
views_handler_argument_locale_group::title in modules/locale/views_handler_argument_locale_group.inc
Override the behavior of title(). Get the user friendly version of the language.
views_handler_argument_locale_language::title in modules/locale/views_handler_argument_locale_language.inc
Override the behavior of title(). Get the user friendly version of the language.
views_handler_argument_many_to_one::title in handlers/views_handler_argument_many_to_one.inc
Get the title this argument will assign the view, given the argument.

... See full list

File

handlers/views_handler_argument.inc, line 609

Class

views_handler_argument
Base class for arguments.

Code

function title() {
  return check_plain($this->argument);
}