Zip.php in Drupal 8
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\system\Plugin\ArchiverFile
core/modules/system/src/Plugin/Archiver/Zip.phpView source
<?php
namespace Drupal\system\Plugin\Archiver;
use Drupal\Core\Archiver\Zip as BaseZip;
/**
* Defines an archiver implementation for .zip files.
*
* @link http://php.net/zip
*
* @Archiver(
* id = "Zip",
* title = @Translation("Zip"),
* description = @Translation("Handles zip files."),
* extensions = {"zip"}
* )
*/
class Zip extends BaseZip {
}