You are here

interface ConfigFilterInterface in Config Filter 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/ConfigFilterInterface.php \Drupal\config_filter\Plugin\ConfigFilterInterface

Defines an interface for Config filter plugin plugins.

Hierarchy

Expanded class hierarchy of ConfigFilterInterface

All classes that implement ConfigFilterInterface

File

src/Plugin/ConfigFilterInterface.php, line 11

Namespace

Drupal\config_filter\Plugin
View source
interface ConfigFilterInterface extends PluginInspectionInterface, StorageFilterInterface {

}

Members

Namesort descending Modifiers Type Description Overrides
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 4
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
StorageFilterInterface::filterCreateCollection public function Allows the filter to react on creating a collection on the storage.
StorageFilterInterface::filterDelete public function Deletes a configuration object from the storage.
StorageFilterInterface::filterDeleteAll public function Deletes configuration objects whose names start with a given prefix.
StorageFilterInterface::filterExists public function Filters whether a configuration object exists.
StorageFilterInterface::filterGetAllCollectionNames public function Filter getting the existing collections.
StorageFilterInterface::filterGetCollectionName public function Filter the name of the current collection the storage is using.
StorageFilterInterface::filterListAll public function Filters what listAll should return.
StorageFilterInterface::filterRead public function Filters configuration data after it is read from the storage.
StorageFilterInterface::filterReadMultiple public function Filters read configuration data from the storage.
StorageFilterInterface::filterRename public function Filters renaming a configuration object in the storage.
StorageFilterInterface::filterWrite public function Filter configuration data before it is written to the storage.
StorageFilterInterface::filterWriteEmptyIsDelete public function Let the filter decide whether not-writing data should mean delete.
StorageFilterInterface::setFilteredStorage public function Sets the wrapped config storage which is using the filter.
StorageFilterInterface::setSourceStorage public function Sets the source config storage on which the operation is performed.