FileVideoFormatter.php
Same filename and directory in other branches
- 10 core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php
- 9 core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php
- 8.9.x core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php
- main core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php
Namespace
Drupal\file\Plugin\Field\FieldFormatterFile
-
core/
modules/ file/ src/ Plugin/ Field/ FieldFormatter/ FileVideoFormatter.php
View source
<?php
namespace Drupal\file\Plugin\Field\FieldFormatter;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Field\Attribute\FieldFormatter;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Link;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Template\Attribute;
use Drupal\Core\TypedData\TranslatableInterface;
use Drupal\Core\Url;
use Drupal\image\Entity\ImageStyle;
use Drupal\image\ImageDerivativeUtilities;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Plugin implementation of the 'file_video' formatter.
*/
class FileVideoFormatter extends FileMediaFormatterBase {
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings'], $container->get('current_user'), $container->get('entity_type.manager')
->getStorage('image_style'), $container->get('entity_field.manager'));
}
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, protected AccountInterface $currentUser, protected EntityStorageInterface $imageStyleStorage, protected EntityFieldManagerInterface $entityFieldManager) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
}
/**
* {@inheritdoc}
*/
public static function getMediaType() {
return 'video';
}
/**
* {@inheritdoc}
*/
public static function defaultSettings() {
return [
'muted' => FALSE,
'playsinline' => FALSE,
'width' => 640,
'height' => 480,
'poster' => '',
'poster_image_style' => '',
] + parent::defaultSettings();
}
/**
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
$fields = $this->entityFieldManager
->getFieldDefinitions($form['#entity_type'], $form['#bundle']);
// Get all image fields for html5 poster.
$image_fields = [];
foreach ($fields as $field) {
if ($field->getType() == 'image') {
$image_fields[$field->getName()] = $field->getLabel();
}
}
$image_styles = \Drupal::service(ImageDerivativeUtilities::class)->styleOptions();
$image_styles_description_link = Link::fromTextAndUrl($this->t('Configure Image Styles'), Url::fromRoute('entity.image_style.collection'));
return parent::settingsForm($form, $form_state) + [
'muted' => [
'#title' => $this->t('Muted'),
'#type' => 'checkbox',
'#default_value' => $this->getSetting('muted'),
],
'playsinline' => [
'#title' => $this->t('Plays Inline'),
'#type' => 'checkbox',
'#default_value' => $this->getSetting('playsinline'),
],
'width' => [
'#type' => 'number',
'#title' => $this->t('Width'),
'#default_value' => $this->getSetting('width'),
'#size' => 5,
'#maxlength' => 5,
'#field_suffix' => $this->t('pixels'),
// A width of zero pixels would make this video invisible.
'#min' => 1,
],
'height' => [
'#type' => 'number',
'#title' => $this->t('Height'),
'#default_value' => $this->getSetting('height'),
'#size' => 5,
'#maxlength' => 5,
'#field_suffix' => $this->t('pixels'),
// A height of zero pixels would make this video invisible.
'#min' => 1,
],
'poster' => [
'#type' => 'select',
'#title' => $this->t('Poster field'),
'#description' => $this->t('An image field to use as the source of the poster attribute'),
'#default_value' => $this->getSetting('poster'),
'#options' => $image_fields,
'#empty_option' => $this->t('- None -'),
],
'poster_image_style' => [
'#type' => 'select',
'#title' => $this->t('Poster field image style'),
'#default_value' => $this->getSetting('poster_image_style'),
'#options' => $image_styles,
'#empty_option' => $this->t('None (original image)'),
'#description' => $image_styles_description_link->toRenderable() + [
'#access' => $this->currentUser
->hasPermission('administer image styles'),
],
'#states' => [
'visible' => [
':input[name$="[settings][poster]"]' => [
'filled' => TRUE,
],
],
],
],
];
}
/**
* {@inheritdoc}
*/
public function settingsSummary() {
$summary = parent::settingsSummary();
$summary[] = $this->t('Muted: %muted', [
'%muted' => $this->getSetting('muted') ? $this->t('yes') : $this->t('no'),
]);
$summary[] = $this->t('Plays Inline: %playsinline', [
'%playsinline' => $this->getSetting('playsinline') ? $this->t('yes') : $this->t('no'),
]);
$summary[] = $this->t('Size: %width x %height pixels', [
'%width' => $this->getSetting('width'),
'%height' => $this->getSetting('height'),
]);
if (!empty($this->getSetting('poster'))) {
$summary[] = $this->t('Poster field: %poster', [
'%poster' => $this->getSetting('poster'),
]);
$summary[] = $this->t('Poster image style: %poster_image_style', [
'%poster_image_style' => $this->getSetting('poster_image_style') ?: $this->t('None (original image)'),
]);
}
if (!empty($this->getSetting('transcript'))) {
$summary[] = $this->t('Transcript field: %transcript', [
'%transcript' => $this->getSetting('transcript'),
]);
}
if ($width = $this->getSetting('width')) {
$summary[] = $this->t('Width: %width pixels', [
'%width' => $width,
]);
}
if ($height = $this->getSetting('height')) {
$summary[] = $this->t('Height: %height pixels', [
'%height' => $height,
]);
}
return $summary;
}
/**
* {@inheritdoc}
*/
public function viewElements(FieldItemListInterface $items, $langcode) : array {
$elements = parent::viewElements($items, $langcode);
/** @var \Drupal\Core\Entity\FieldableEntityInterface $entity */
$entity = $items->getEntity();
if (!empty($this->getSetting('poster')) && !$entity->get($this->getSetting('poster'))
->isEmpty()) {
$poster_file_item = $entity->get($this->getSetting('poster'))[0];
$poster_file_entity = $poster_file_item->entity;
// Set the entity in the correct language for display.
if ($poster_file_entity instanceof TranslatableInterface && $poster_file_entity->hasTranslation($langcode)) {
$poster_file_entity = $poster_file_entity->getTranslation($langcode);
}
$poster_image_style_id = $this->getSetting('poster_image_style');
if (!empty($poster_image_style_id)) {
// With imagecache selected:
$poster_image_style = $this->imageStyleStorage
->load($poster_image_style_id);
CacheableMetadata::createFromObject($poster_image_style)->applyTo($elements);
$poster_url = $poster_image_style->buildUrl($poster_file_entity->getFileUri());
}
else {
// Without imagecache:
$poster_url = $poster_file_entity->createFileUrl();
}
CacheableMetadata::createFromObject($poster_file_entity)->applyTo($elements);
$poster_attributes = new Attribute();
$poster_attributes->setAttribute('poster', $poster_url);
$elements[0]['#attributes']->merge($poster_attributes);
}
return $elements;
}
/**
* {@inheritdoc}
*/
protected function prepareAttributes(array $additional_attributes = []) {
$attributes = parent::prepareAttributes([
'muted',
'playsinline',
]);
if ($width = $this->getSetting('width')) {
$attributes->setAttribute('width', $width);
}
if ($height = $this->getSetting('height')) {
$attributes->setAttribute('height', $height);
}
return $attributes;
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() : array {
$dependencies = parent::calculateDependencies();
$style_id = $this->getSetting('poster_image_style');
/** @var \Drupal\image\ImageStyleInterface $style */
if ($style_id && $style = ImageStyle::load($style_id)) {
// If this formatter uses a valid image style to display the image, add
// the image style configuration entity as dependency of this formatter.
$dependencies[$style->getConfigDependencyKey()][] = $style->getConfigDependencyName();
}
return $dependencies;
}
/**
* {@inheritdoc}
*/
public function onDependencyRemoval(array $dependencies) : bool {
$changed = parent::onDependencyRemoval($dependencies);
$style_id = $this->getSetting('poster_image_style');
/** @var \Drupal\image\ImageStyleInterface $style */
if ($style_id && $style = ImageStyle::load($style_id)) {
if (!empty($dependencies[$style->getConfigDependencyKey()][$style->getConfigDependencyName()])) {
$replacement_id = $this->imageStyleStorage
->getReplacementId($style_id);
// If a valid replacement has been provided in the storage, replace the
// image style with the replacement and signal that the formatter plugin
// settings were updated.
if (!empty($replacement_id) && ImageStyle::load($replacement_id)) {
$this->setSetting('poster_image_style', $replacement_id);
$changed = TRUE;
}
}
}
return $changed;
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| FileVideoFormatter | Plugin implementation of the 'file_video' formatter. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.