Fid.php in Views (for Drupal 7) 8.3
Same filename in this branch
Definition of Views\file\Plugin\views\argument\Fid.
Namespace
Views\file\Plugin\views\argumentFile
lib/Views/file/Plugin/views/argument/Fid.phpView source
<?php
/**
* @file
* Definition of Views\file\Plugin\views\argument\Fid.
*/
namespace Views\file\Plugin\views\argument;
use Drupal\Core\Annotation\Plugin;
use Drupal\views\Plugin\views\argument\Numeric;
/**
* Argument handler to accept multiple file ids.
*
* @ingroup views_argument_handlers
*
* @Plugin(
* id = "file_fid",
* module = "file"
* )
*/
class Fid extends Numeric {
/**
* Override the behavior of title_query(). Get the filenames.
*/
function title_query() {
$titles = db_select('file_managed', 'f')
->fields('f', array(
'filename',
))
->condition('fid', $this->value)
->execute()
->fetchCol();
foreach ($titles as &$title) {
$title = check_plain($title);
}
return $titles;
}
}