You are here

function views_handler_argument_many_to_one::title_query in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 handlers/views_handler_argument_many_to_one.inc \views_handler_argument_many_to_one::title_query()
  2. 7.3 handlers/views_handler_argument_many_to_one.inc \views_handler_argument_many_to_one::title_query()

Override for specific title lookups.

1 call to views_handler_argument_many_to_one::title_query()
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.
2 methods override views_handler_argument_many_to_one::title_query()
views_handler_argument_term_node_tid::title_query in modules/taxonomy/views_handler_argument_term_node_tid.inc
Override for specific title lookups.
views_handler_argument_users_roles_rid::title_query in modules/user/views_handler_argument_users_roles_rid.inc
Override for specific title lookups.

File

handlers/views_handler_argument_many_to_one.inc, line 166

Class

views_handler_argument_many_to_one
An argument handler for use in fields that have a many to one relationship with the table(s) to the left. This adds a bunch of options that are reasonably common with this type of relationship. Definition terms:

Code

function title_query() {
  return $this->value;
}