You are here

ReplicationSettingsInterface.php in Replication 8.2

Same filename and directory in other branches
  1. 8 src/Entity/ReplicationSettingsInterface.php

File

src/Entity/ReplicationSettingsInterface.php
View source
<?php

namespace Drupal\replication\Entity;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for replication settings entities.
 */
interface ReplicationSettingsInterface extends ConfigEntityInterface {

  /**
   * Get the plugin ID of the replication filter to use.
   *
   * @return string
   */
  public function getFilterId();

  /**
   * Get the replication filter parameters.
   *
   * @return array
   */
  public function getParameters();

}

Interfaces

Namesort descending Description
ReplicationSettingsInterface Provides an interface for replication settings entities.