Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 29 |
TableFormatter | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 29 |
viewElements | |
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 29 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\file\Plugin\Field\FieldFormatter\TableFormatter. | |
*/ | |
namespace Drupal\file\Plugin\Field\FieldFormatter; | |
use Drupal\Core\Field\FieldItemListInterface; | |
/** | |
* Plugin implementation of the 'file_table' formatter. | |
* | |
* @FieldFormatter( | |
* id = "file_table", | |
* label = @Translation("Table of files"), | |
* field_types = { | |
* "file" | |
* } | |
* ) | |
*/ | |
class TableFormatter extends FileFormatterBase { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function viewElements(FieldItemListInterface $items, $langcode) { | |
$elements = array(); | |
if ($files = $this->getEntitiesToView($items, $langcode)) { | |
$header = array(t('Attachment'), t('Size')); | |
$rows = array(); | |
foreach ($files as $delta => $file) { | |
$rows[] = array( | |
array( | |
'data' => array( | |
'#theme' => 'file_link', | |
'#file' => $file, | |
'#cache' => array( | |
'tags' => $file->getCacheTags(), | |
), | |
), | |
), | |
array('data' => format_size($file->getSize())), | |
); | |
} | |
$elements[0] = array(); | |
if (!empty($rows)) { | |
$elements[0] = array( | |
'#theme' => 'table__file_formatter_table', | |
'#header' => $header, | |
'#rows' => $rows, | |
); | |
} | |
} | |
return $elements; | |
} | |
} |