You are here

function views_handler_argument_numeric::title_query in Views (for Drupal 7) 6.2

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

Override for specific title lookups.

1 call to views_handler_argument_numeric::title_query()
views_handler_argument_numeric::title in handlers/views_handler_argument_numeric.inc
Get the title this argument will assign the view, given the argument.
7 methods override views_handler_argument_numeric::title_query()
views_handler_argument_aggregator_category_cid::title_query in modules/aggregator/views_handler_argument_aggregator_category_cid.inc
Override the behavior of title(). Get the title of the category.
views_handler_argument_aggregator_fid::title_query in modules/aggregator/views_handler_argument_aggregator_fid.inc
Override the behavior of title(). Get the title of the feed.
views_handler_argument_aggregator_iid::title_query in modules/aggregator/views_handler_argument_aggregator_iid.inc
Override the behavior of title(). Get the title of the category.
views_handler_argument_node_nid::title_query in modules/node/views_handler_argument_node_nid.inc
Override the behavior of title(). Get the title of the node.
views_handler_argument_node_tnid::title_query in modules/translation/views_handler_argument_node_tnid.inc
Override the behavior of title(). Get the title of the node.

... See full list

File

handlers/views_handler_argument_numeric.inc, line 69
Contains the numeric argument handler.

Class

views_handler_argument_numeric
Basic argument handler for arguments that are numeric. Incorporates break_phrase.

Code

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