
| 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/Zip.php |
<?php
namespace Drupal\system\Plugin\Archiver;
use Drupal\Core\Archiver\Attribute\Archiver;
use Drupal\Core\Archiver\Zip as BaseZip;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines an archiver implementation for .zip files.
*
* @link http://php.net/zip
*/
#[Archiver(
id: 'Zip',
title: new TranslatableMarkup('Zip'),
description: new TranslatableMarkup('Handles zip files.'),
extensions: ['zip']
)]
class Zip extends BaseZip {
}