Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/StorageInterface.php \Drupal\Core\Config\StorageInterface::listAll()
  2. 9 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.

... See full list

File

core/lib/Drupal/Core/Config/StorageInterface.php, line 143

Class

StorageInterface
Defines an interface for configuration storage.

Namespace

Drupal\Core\Config

Code

public function listAll($prefix = '');