You are here

public function StorageFilterInterface::filterExists in Config Filter 8.2

Same name and namespace in other branches
  1. 8 src/Config/StorageFilterInterface.php \Drupal\config_filter\Config\StorageFilterInterface::filterExists()

Filters whether a configuration object exists.

Parameters

string $name: The name of a configuration object to test.

bool $exists: The previous result to alter.

Return value

bool TRUE if the configuration object exists, FALSE otherwise.

File

src/Config/StorageFilterInterface.php, line 96

Class

StorageFilterInterface
Interface StorageFilterInterface.

Namespace

Drupal\config_filter\Config

Code

public function filterExists($name, $exists);