comparison core/modules/system/src/Plugin/Archiver/Zip.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
1 <?php
2
3 namespace Drupal\system\Plugin\Archiver;
4
5 use Drupal\Core\Archiver\Zip as BaseZip;
6
7 /**
8 * Defines an archiver implementation for .zip files.
9 *
10 * @link http://php.net/zip
11 *
12 * @Archiver(
13 * id = "Zip",
14 * title = @Translation("Zip"),
15 * description = @Translation("Handles zip files."),
16 * extensions = {"zip"}
17 * )
18 */
19 class Zip extends BaseZip {
20 }