You are here

public function views_handler_argument_numeric::title_query in Views (for Drupal 7) 7.3

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

Override for specific title lookups.

Return value

array Returns all titles, if it's just one title it's an array with one entry.

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.
8 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_file_fid::title_query in modules/system/views_handler_argument_file_fid.inc
Override the behavior of title_query(). Get the filenames.
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.

... See full list

File

handlers/views_handler_argument_numeric.inc, line 98
Definition of views_handler_argument_numeric.

Class

views_handler_argument_numeric
Basic argument handler for arguments that are numeric.

Code

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