ReplicationSettingsInterface.php in Replication 8
Same filename and directory in other branches
Namespace
Drupal\replication\EntityFile
src/Entity/ReplicationSettingsInterface.phpView 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
Name | Description |
---|---|
ReplicationSettingsInterface | Provides an interface for replication settings entities. |