You are here

ArchiveWriterInterface.php in Backup and Migrate 8.4

File

lib/backup_migrate_core/src/Service/ArchiveWriterInterface.php
View source
<?php

namespace BackupMigrate\Core\Service;

use BackupMigrate\Core\File\BackupFileWritableInterface;

/**
 * Interface ArchiveReaderInterface.
 *
 * @package BackupMigrate\Core\Service
 */
interface ArchiveWriterInterface {

  /**
   * Get the file extension for this archiver. For a tarball writer this would
   * be 'tar'. For a Zip file writer this would be 'zip'.
   *
   * @return string
   */
  public function getFileExt();

  /**
   * @param \BackupMigrate\Core\File\BackupFileWritableInterface $out
   */
  public function setArchive(BackupFileWritableInterface $out);

  /**
   * @param string $real_path
   *  The real path to the file. Can be a stream URI.
   * @param string $new_path
   *  The path that the file should have in the archive. Leave blank to use the original path.
   * @return
   */
  public function addFile($real_path, $new_path = '');

  /**
   * This will be called when all files have been added. It gives the implementation
   * a chance to clean up and commit the changes if needed.
   *
   * @return mixed
   */
  public function closeArchive();

}

Interfaces

Namesort descending Description
ArchiveWriterInterface Interface ArchiveReaderInterface.