function Fid::titleQuery

Same name in this branch
  1. 9 core/modules/aggregator/src/Plugin/views/argument/Fid.php \Drupal\aggregator\Plugin\views\argument\Fid::titleQuery()
Same name and namespace in other branches
  1. 8.9.x core/modules/file/src/Plugin/views/argument/Fid.php \Drupal\file\Plugin\views\argument\Fid::titleQuery()
  2. 8.9.x core/modules/aggregator/src/Plugin/views/argument/Fid.php \Drupal\aggregator\Plugin\views\argument\Fid::titleQuery()
  3. 10 core/modules/file/src/Plugin/views/argument/Fid.php \Drupal\file\Plugin\views\argument\Fid::titleQuery()

Override the behavior of titleQuery(). Get the filenames.

Overrides NumericArgument::titleQuery

File

core/modules/file/src/Plugin/views/argument/Fid.php, line 58

Class

Fid
Argument handler to accept multiple file ids.

Namespace

Drupal\file\Plugin\views\argument

Code

public function titleQuery() {
    $storage = $this->entityTypeManager
        ->getStorage('file');
    $fids = $storage->getQuery()
        ->accessCheck(FALSE)
        ->condition('fid', $this->value, 'IN')
        ->execute();
    $files = $storage->loadMultiple($fids);
    $titles = [];
    foreach ($files as $file) {
        $titles[] = $file->getFilename();
    }
    return $titles;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.