Zip.php

Same filename in this branch
  1. 8.9.x core/lib/Drupal/Core/Archiver/Zip.php
Same filename in other branches
  1. 9 core/modules/system/src/Plugin/Archiver/Zip.php
  2. 9 core/lib/Drupal/Core/Archiver/Zip.php
  3. 10 core/modules/system/src/Plugin/Archiver/Zip.php
  4. 10 core/lib/Drupal/Core/Archiver/Zip.php
  5. 11.x core/modules/system/src/Plugin/Archiver/Zip.php
  6. 11.x core/lib/Drupal/Core/Archiver/Zip.php

Namespace

Drupal\system\Plugin\Archiver

File

core/modules/system/src/Plugin/Archiver/Zip.php

View 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 {

}

Classes

Title Deprecated Summary
Zip Defines an archiver implementation for .zip files.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.