function 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 100

Class

views_handler_argument_numeric
Basic argument handler for arguments that are numeric.

Code

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