Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ArchiverInterface.php

interface ArchiverInterface

Same name in this branch
  1. 11.1.x vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php \Composer\Package\Archiver\ArchiverInterface

Defines the common interface for all Archiver classes.

Hierarchy

  • interface \Drupal\Core\Archiver\ArchiverInterface

Expanded class hierarchy of ArchiverInterface

All classes that implement ArchiverInterface

See also

\Drupal\Core\Archiver\ArchiverManager

\Drupal\Core\Archiver\Attribute\Archiver

Plugin API

File

core/lib/Drupal/Core/Archiver/ArchiverInterface.php, line 12

Namespace

Drupal\Core\Archiver
View source
interface ArchiverInterface {
    
    /**
     * Adds the specified file or directory to the archive.
     *
     * @param string $file_path
     *   The full system path of the file or directory to add. Only local files
     *   and directories are supported.
     *
     * @return $this
     *   The called object.
     */
    public function add($file_path);
    
    /**
     * Removes the specified file from the archive.
     *
     * @param string $path
     *   The file name relative to the root of the archive to remove.
     *
     * @return $this
     *   The called object.
     */
    public function remove($path);
    
    /**
     * Extracts multiple files in the archive to the specified path.
     *
     * @param string $path
     *   A full system path of the directory to which to extract files.
     * @param array $files
     *   Optionally specify a list of files to be extracted. Files are
     *   relative to the root of the archive. If not specified, all files
     *   in the archive will be extracted.
     *
     * @return $this
     *   The called object.
     */
    public function extract($path, array $files = []);
    
    /**
     * Lists all files in the archive.
     *
     * @return array
     *   An array of file names relative to the root of the archive.
     */
    public function listContents();

}

Members

Title Sort descending Modifiers Object type Summary Overrides
ArchiverInterface::add public function Adds the specified file or directory to the archive. 2
ArchiverInterface::extract public function Extracts multiple files in the archive to the specified path. 2
ArchiverInterface::listContents public function Lists all files in the archive. 2
ArchiverInterface::remove public function Removes the specified file from the archive. 2

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal