public function Numeric::titleQuery

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::titleQuery()
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::titleQuery()
Fid::titleQuery in drupal/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php
Override the behavior of titleQuery(). Get the filenames.
Nid::titleQuery 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::titleQuery 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::titleQuery 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 93
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

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