function Numeric::title_query in Views (for Drupal 7) 8.3
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 Numeric::title_query()
- Numeric::title in lib/
Drupal/ views/ Plugin/ views/ argument/ Numeric.php - Get the title this argument will assign the view, given the argument.
8 methods override Numeric::title_query()
- CategoryCid::title_query in lib/
Views/ aggregator/ Plugin/ views/ argument/ CategoryCid.php - Override the behavior of title(). Get the title of the category.
- Fid::title_query in lib/
Views/ file/ Plugin/ views/ argument/ Fid.php - Override the behavior of title_query(). Get the filenames.
- Fid::title_query in lib/
Views/ aggregator/ Plugin/ views/ argument/ Fid.php - Override the behavior of title(). Get the title of the feed.
- Iid::title_query in lib/
Views/ aggregator/ Plugin/ views/ argument/ Iid.php - Override the behavior of title(). Get the title of the category.
- Nid::title_query in lib/
Views/ node/ Plugin/ views/ argument/ Nid.php - Override the behavior of title(). Get the title of the node.
File
- lib/
Drupal/ views/ Plugin/ views/ argument/ Numeric.php, line 95 - Definition of Drupal\views\Plugin\views\argument\Numeric.
Class
- Numeric
- Basic argument handler for arguments that are numeric. Incorporates break_phrase.
Namespace
Drupal\views\Plugin\views\argumentCode
function title_query() {
return $this->value;
}