Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 23 |
| Fid | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
20 | |
0.00% |
0 / 23 |
| __construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
| create | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 8 |
|||
| titleQuery | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 11 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\file\Plugin\views\argument\Fid. | |
| */ | |
| namespace Drupal\file\Plugin\views\argument; | |
| use Drupal\Core\Entity\EntityManagerInterface; | |
| use Drupal\Core\Entity\Query\QueryFactory; | |
| use Drupal\views\Plugin\views\argument\NumericArgument; | |
| use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
| use Symfony\Component\DependencyInjection\ContainerInterface; | |
| /** | |
| * Argument handler to accept multiple file ids. | |
| * | |
| * @ingroup views_argument_handlers | |
| * | |
| * @ViewsArgument("file_fid") | |
| */ | |
| class Fid extends NumericArgument implements ContainerFactoryPluginInterface { | |
| /** | |
| * The entity manager service | |
| * | |
| * @var \Drupal\Core\Entity\EntityManagerInterface | |
| */ | |
| protected $entityManager; | |
| /** | |
| * The entity query factory service. | |
| * | |
| * @var \Drupal\Core\Entity\Query\QueryFactory | |
| */ | |
| protected $entityQuery; | |
| /** | |
| * Constructs a Drupal\file\Plugin\views\argument\Fid object. | |
| * | |
| * @param array $configuration | |
| * A configuration array containing information about the plugin instance. | |
| * @param string $plugin_id | |
| * The plugin_id for the plugin instance. | |
| * @param mixed $plugin_definition | |
| * The plugin implementation definition. | |
| * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager | |
| * The entity manager. | |
| * @param \Drupal\Core\Entity\Query\QueryFactory $entity_query | |
| * The entity query factory. | |
| */ | |
| public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityManagerInterface $entity_manager, QueryFactory $entity_query) { | |
| parent::__construct($configuration, $plugin_id, $plugin_definition); | |
| $this->entityManager = $entity_manager; | |
| $this->entityQuery = $entity_query; | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { | |
| return new static( | |
| $configuration, | |
| $plugin_id, | |
| $plugin_definition, | |
| $container->get('entity.manager'), | |
| $container->get('entity.query') | |
| ); | |
| } | |
| /** | |
| * Override the behavior of titleQuery(). Get the filenames. | |
| */ | |
| public function titleQuery() { | |
| $fids = $this->entityQuery->get('file') | |
| ->condition('fid', $this->value, 'IN') | |
| ->execute(); | |
| $controller = $this->entityManager->getStorage('file'); | |
| $files = $controller->loadMultiple($fids); | |
| $titles = array(); | |
| foreach ($files as $file) { | |
| $titles[] = $file->getFilename(); | |
| } | |
| return $titles; | |
| } | |
| } |