
| Current Path : /var/www/html/c12park/web/core/modules/file/src/Plugin/Field/FieldFormatter/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/c12park/web/core/modules/file/src/Plugin/Field/FieldFormatter/FileAudioFormatter.php |
<?php
namespace Drupal\file\Plugin\Field\FieldFormatter;
use Drupal\Core\Field\Attribute\FieldFormatter;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Plugin implementation of the 'file_audio' formatter.
*/
#[FieldFormatter(
id: 'file_audio',
label: new TranslatableMarkup('Audio'),
description: new TranslatableMarkup('Display the file using an HTML5 audio tag.'),
field_types: [
'file',
],
)]
class FileAudioFormatter extends FileMediaFormatterBase {
/**
* {@inheritdoc}
*/
public static function getMediaType() {
return 'audio';
}
}