function views_handler_argument::title
Same name in other branches
- 6.x-3.x 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.
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.
File
-
handlers/
views_handler_argument.inc, line 1030
Class
- views_handler_argument
- Base class for arguments.
Code
public function title() {
return check_plain($this->argument);
}