You are here

public function IgnoreFilter::filterGetAllCollectionNames in Config Ignore 8.2

File

src/Plugin/ConfigFilter/IgnoreFilter.php, line 237

Class

IgnoreFilter
Provides a ignore filter that reads partly from the active storage.

Namespace

Drupal\config_ignore\Plugin\ConfigFilter

Code

public function filterGetAllCollectionNames(array $collections) {

  // Add active collection names as there could be ignored config in them.
  return array_merge($collections, $this->active
    ->getAllCollectionNames());
}