You are here

BackupMigrateInterface.php in Backup and Migrate 5.0.x

File

src/Core/Main/BackupMigrateInterface.php
View source
<?php

namespace Drupal\backup_migrate\Core\Main;

use Drupal\backup_migrate\Core\Plugin\PluginManagerInterface;
use Drupal\backup_migrate\Core\Plugin\PluginCallerInterface;
use Drupal\backup_migrate\Core\Service\ServiceManager;

/**
 * The core Backup and Migrate service.
 */
interface BackupMigrateInterface extends PluginCallerInterface {

  /**
   * Backup and Migrate constructor.
   */
  public function __construct();

  /**
   * Perform the backup from a given source, save it to the given destination.
   *
   * @param string $source_id
   *   The id of the source to backup.
   * @param string $destination_id
   *   The id of the destination to save the backup to.
   *
   * @return
   */
  public function backup($source_id, $destination_id);

  /**
   * Perform the restore to a given source.
   *
   * @param string $source_id
   *   The id of the source to restore.
   * @param string $destination_id
   *   The id of the destination to read the backup from.
   * @param string $file
   *   The ID of the file to be restored. Only optional when the destination
   *   does not store multiple files (like browser upload)
   */
  public function restore($source_id, $destination_id, $file = NULL);

  /**
   * Get the list of available destinations.
   *
   * @return \Drupal\backup_migrate\Core\Plugin\PluginManagerInterface
   */
  public function destinations();

  /**
   * Set the destinations plugin manager.
   *
   * @param \Drupal\backup_migrate\Core\Plugin\PluginManagerInterface $destinations
   */
  public function setDestinationManager(PluginManagerInterface $destinations);

  /**
   * Get the list of sources.
   *
   * @return \Drupal\backup_migrate\Core\Plugin\PluginManagerInterface
   */
  public function sources();

  /**
   * Set the sources plugin manager.
   *
   * @param \Drupal\backup_migrate\Core\Plugin\PluginManagerInterface $sources
   */
  public function setSourceManager(PluginManagerInterface $sources);

  /**
   * Get the service locator.
   *
   * @return \Drupal\backup_migrate\Core\Service\ServiceManager
   */
  public function services();

  /**
   * Set the service locator.
   *
   * @param \Drupal\backup_migrate\Core\Service\ServiceManager $services
   */
  public function setServiceManager(ServiceManager $services);

}

Interfaces

Namesort descending Description
BackupMigrateInterface The core Backup and Migrate service.