FileSize.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/file/src/Plugin/Field/FieldFormatter/FileSize.php
- 8.9.x core/modules/views/src/Plugin/views/field/FileSize.php
- 10 core/modules/file/src/Plugin/Field/FieldFormatter/FileSize.php
- 10 core/modules/views/src/Plugin/views/field/FileSize.php
- 11.x core/modules/file/src/Plugin/Field/FieldFormatter/FileSize.php
- 11.x core/modules/views/src/Plugin/views/field/FileSize.php
Namespace
Drupal\views\Plugin\views\fieldFile
-
core/
modules/ views/ src/ Plugin/ views/ field/ FileSize.php
View source
<?php
namespace Drupal\views\Plugin\views\field;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\ResultRow;
/**
* Render a numeric value as a size.
*
* @ingroup views_field_handlers
*
* @ViewsField("file_size")
*/
class FileSize extends FieldPluginBase {
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['file_size_display'] = [
'default' => 'formatted',
];
return $options;
}
/**
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['file_size_display'] = [
'#title' => $this->t('File size display'),
'#type' => 'select',
'#options' => [
'formatted' => $this->t('Formatted (in KB or MB)'),
'bytes' => $this->t('Raw bytes'),
],
];
}
/**
* {@inheritdoc}
*/
public function render(ResultRow $values) {
$value = $this->getValue($values);
if ($value) {
switch ($this->options['file_size_display']) {
case 'bytes':
return $value;
case 'formatted':
default:
return format_size($value);
}
}
else {
return '';
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FileSize | Render a numeric value as a size. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.