You are here

21 calls to ArchiveTar::_error() in Zircon Profile 8.0

ArchiveTar::addModify in core/lib/Drupal/Core/Archiver/ArchiveTar.php
This method add the files / directories listed in $p_filelist at the end of the existing archive. If the archive does not yet exists it is created. The $p_filelist parameter can be an array of string, each string representing a filename or a directory…
ArchiveTar::createModify in core/lib/Drupal/Core/Archiver/ArchiveTar.php
This method creates the archive file and add the files / directories that are listed in $p_filelist. If the file already exists and is writable, it is replaced by the new tar. It is a create and not an add. If the file exists and is read-only or is a…
ArchiveTar::extractList in core/lib/Drupal/Core/Archiver/ArchiveTar.php
This method extract from the archive only the files indicated in the $p_filelist. These files are extracted in the current directory or in the directory indicated by the optional $p_path parameter. If indicated the $p_remove_path can be used in the…
ArchiveTar::setAttribute in core/lib/Drupal/Core/Archiver/ArchiveTar.php
This method set specific attributes of the archive. It uses a variable list of parameters, in the format attribute code + attribute values : $arch->setAttribute(ARCHIVE_TAR_ATT_SEPARATOR, ',');
ArchiveTar::_addFile in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_addList in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_addString in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_close in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_dirCheck in core/lib/Drupal/Core/Archiver/ArchiveTar.php
Check if a directory exists and create it (including parent dirs) if not.
ArchiveTar::_extractInString in core/lib/Drupal/Core/Archiver/ArchiveTar.php
This method extract from the archive one file identified by $p_filename. The return value is a string with the file content, or null on error.
ArchiveTar::_extractList in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_jumpBlock in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_openAppend in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_openRead in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_openReadWrite in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_openWrite in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_readBlock in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_readHeader in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_readLongHeader in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::_writeBlock in core/lib/Drupal/Core/Archiver/ArchiveTar.php
ArchiveTar::__construct in core/lib/Drupal/Core/Archiver/ArchiveTar.php
Archive_Tar Class constructor. This flavour of the constructor only declare a new Archive_Tar object, identifying it by the name of the tar file. If the compress argument is set the tar will be read or created as a gzip or bz2 compressed TAR file.