You are here

function views_handler_argument::title in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 handlers/views_handler_argument.inc \views_handler_argument::title()
  2. 7.3 handlers/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().
13 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_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.
views_handler_argument_node_created_day::title in modules/node/views_handler_argument_dates_various.inc
Provide a link to the next level of the view

... See full list

File

handlers/views_handler_argument.inc, line 694

Class

views_handler_argument
Base class for arguments.

Code

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