You are here

public function ConfigFilterManagerInterface::getFiltersForStorages in Config Filter 8

Same name and namespace in other branches
  1. 8.2 src/ConfigFilterManagerInterface.php \Drupal\config_filter\ConfigFilterManagerInterface::getFiltersForStorages()

Get the applicable filters for given storage names.

Parameters

string[] $storage_names: The names of the storage plugins apply to.

string[] $excluded: The ids of filters to exclude.

Return value

\Drupal\config_filter\Config\StorageFilterInterface[] The configured filter instances, keyed by filter id.

1 method overrides ConfigFilterManagerInterface::getFiltersForStorages()
ConfigFilterPluginManager::getFiltersForStorages in src/Plugin/ConfigFilterPluginManager.php
Get the applicable filters for given storage names.

File

src/ConfigFilterManagerInterface.php, line 21

Class

ConfigFilterManagerInterface
Interface for a ConfigFilterManager.

Namespace

Drupal\config_filter

Code

public function getFiltersForStorages(array $storage_names, array $excluded = []);