function 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 Numeric::title_query()
Numeric::title in drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php
Get the title this argument will assign the view, given the argument.
4 methods override Numeric::title_query()
Fid::title_query in drupal/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php
Override the behavior of title_query(). Get the filenames.
Nid::title_query in drupal/core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php
Override the behavior of title(). Get the title of the node.
Uid::title_query in drupal/core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php
Override the behavior of title(). Get the name of the user.
Vid::title_query in drupal/core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php
Override the behavior of title(). Get the title of the revision.

File

drupal/core/modules/views/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\argument

Code

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