function StorageInterface::listAll
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Config/StorageInterface.php \Drupal\Core\Config\StorageInterface::listAll()
- 10 core/lib/Drupal/Core/Config/StorageInterface.php \Drupal\Core\Config\StorageInterface::listAll()
- 11.x core/lib/Drupal/Core/Config/StorageInterface.php \Drupal\Core\Config\StorageInterface::listAll()
Gets configuration object names starting with a given prefix.
Given the following configuration objects:
- node.type.article
- node.type.page
Passing the prefix 'node.type.' will return an array containing the above names.
Parameters
string $prefix: (optional) The prefix to search for. If omitted, all configuration object names that exist are returned.
Return value
array An array containing matching configuration object names.
8 methods override StorageInterface::listAll()
- CachedStorage::listAll in core/
lib/ Drupal/ Core/ Config/ CachedStorage.php - Gets configuration object names starting with a given prefix.
- DatabaseStorage::listAll in core/
lib/ Drupal/ Core/ Config/ DatabaseStorage.php - Gets configuration object names starting with a given prefix.
- FileStorage::listAll in core/
lib/ Drupal/ Core/ Config/ FileStorage.php - Gets configuration object names starting with a given prefix.
- ManagedStorage::listAll in core/
lib/ Drupal/ Core/ Config/ ManagedStorage.php - Gets configuration object names starting with a given prefix.
- MemoryStorage::listAll in core/
lib/ Drupal/ Core/ Config/ MemoryStorage.php - Gets configuration object names starting with a given prefix.
File
-
core/
lib/ Drupal/ Core/ Config/ StorageInterface.php, line 138
Class
- StorageInterface
- Defines an interface for configuration storage.
Namespace
Drupal\Core\ConfigCode
public function listAll($prefix = '');
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.