
| Current Path : /var/www/html/strat/web/core/modules/system/src/Plugin/Archiver/ |
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/strat/web/core/modules/system/src/Plugin/Archiver/Tar.php |
<?php
namespace Drupal\system\Plugin\Archiver;
use Drupal\Core\Archiver\Attribute\Archiver;
use Drupal\Core\Archiver\Tar as BaseTar;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines an archiver implementation for .tar files.
*/
#[Archiver(
id: 'Tar',
title: new TranslatableMarkup('Tar'),
description: new TranslatableMarkup('Handles .tar files.'),
extensions: ['tar', 'tgz', 'tar.gz', 'tar.bz2']
)]
class Tar extends BaseTar {
}