Search for config

  1. Search 7.x for config
  2. Search 9.5.x for config
  3. Search 8.9.x for config
  4. Search 10.3.x for config
  5. Other projects

Exact matches

These are exact matches according to your search
Title Object type File name Summary
Config class composer/Plugin/VendorHardening/Config.php Determine configuration.
Config class core/modules/migrate_drupal/src/Plugin/migrate/source/d8/Config.php Drupal 8+ configuration source from database.
Config class core/modules/migrate/src/Plugin/migrate/destination/Config.php Provides Configuration Management destination plugin.
Config class core/lib/Drupal/Core/Config/Config.php Defines the default configuration object.

All search results

Title Object type File name Summary
Query::$configFactory property core/lib/Drupal/Core/Config/Entity/Query/Query.php The config factory used by the config entity query.
Query::getConfigKeyStore function core/lib/Drupal/Core/Config/Entity/Query/Query.php Gets the key value store used to store fast lookups.
QueryFactory::$configFactory property core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php The config factory used by the config entity query.
QueryFactory::$configManager property core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php The configuration manager.
QueryFactory::CONFIG_LOOKUP_PREFIX constant core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php The prefix for the key value collection for fast lookups.
QueryFactory::deleteConfigKeyStore function core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php Deletes lookup data.
QueryFactory::getConfigKeyStore function core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php Gets the key value store used to store fast lookups.
QueryFactory::onConfigDelete function core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php Removes configuration entity from key store.
QueryFactory::onConfigSave function core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php Updates configuration entity in the key store.
QueryFactory::updateConfigKeyStore function core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php Updates or adds lookup data.
QueryFactoryTest::getConfigObject function core/tests/Drupal/Tests/Core/Config/Entity/Query/QueryFactoryTest.php Gets a test configuration object.
QuickStartCommand::configure function core/lib/Drupal/Core/Command/QuickStartCommand.php
ReadOnlyStorageTest::setRandomFixtureConfig function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php Generate random config in the memory storage.
Recipe::validateConfigActions function core/lib/Drupal/Core/Recipe/Recipe.php Validates that the corresponding extension is enabled for a config action.
RecipeCommand::configure function core/lib/Drupal/Core/Recipe/RecipeCommand.php
RecipeCommandTest::$strictConfigSchema property core/tests/Drupal/FunctionalTests/Core/Recipe/RecipeCommandTest.php Disable strict config schema because this test explicitly makes the
recipe system save invalid config, to prove that it validates it after
the fact and raises an error.
RecipeCommandTest::testDefaultInputValueFromConfig function core/tests/Drupal/FunctionalTests/Core/Recipe/RecipeCommandTest.php
RecipeConfigInstaller class core/lib/Drupal/Core/Recipe/RecipeConfigInstaller.php Extends the ConfigInstaller service for recipes.
RecipeConfigInstaller.php file core/lib/Drupal/Core/Recipe/RecipeConfigInstaller.php
RecipeConfigInstaller::installRecipeConfig function core/lib/Drupal/Core/Recipe/RecipeConfigInstaller.php
RecipeConfigStorageWrapper class core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Merges two storages together.
RecipeConfigStorageWrapper.php file core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php
RecipeConfigStorageWrapper::createCollection function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Creates a collection on the storage.
RecipeConfigStorageWrapper::createStorageFromArray function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Creates a single config storage for an array of storages.
RecipeConfigStorageWrapper::decode function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Decodes configuration data from the storage-specific format.
RecipeConfigStorageWrapper::delete function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Deletes a configuration object from the storage.
RecipeConfigStorageWrapper::deleteAll function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Deletes configuration objects whose names start with a given prefix.
RecipeConfigStorageWrapper::encode function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Encodes configuration data into the storage-specific format.
RecipeConfigStorageWrapper::exists function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Returns whether a configuration object exists.
RecipeConfigStorageWrapper::getAllCollectionNames function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Gets the existing collections.
RecipeConfigStorageWrapper::getCollectionName function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Gets the name of the current collection the storage is using.
RecipeConfigStorageWrapper::listAll function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Gets configuration object names starting with a given prefix.
RecipeConfigStorageWrapper::read function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Reads configuration data from the storage.
RecipeConfigStorageWrapper::readMultiple function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Reads configuration data from the storage.
RecipeConfigStorageWrapper::rename function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Renames a configuration object in the storage.
RecipeConfigStorageWrapper::write function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Writes configuration data to the storage.
RecipeConfigStorageWrapper::__construct function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php
RecipeConfigStorageWrapperTest class core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php @coversDefaultClass \Drupal\Core\Recipe\RecipeConfigStorageWrapper
@group Recipe
RecipeConfigStorageWrapperTest.php file core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php
RecipeConfigStorageWrapperTest::generateStorages function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Generate two storages where the second storage should return a value.
RecipeConfigStorageWrapperTest::testCreateCollection function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test creating a collection passes the name through to the child storages.
RecipeConfigStorageWrapperTest::testDecode function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that we only use storage A's decode method.
RecipeConfigStorageWrapperTest::testEncode function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that we only use storage A's encode method.
RecipeConfigStorageWrapperTest::testGetAllCollectionNames function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that we merge and return only unique collection names.
RecipeConfigStorageWrapperTest::testGetCollection function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test the collection name is stored properly.
RecipeConfigStorageWrapperTest::testLeftSideExists function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that the first storage checks existence first.
RecipeConfigStorageWrapperTest::testListAll function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that list all merges values and makes them unique.
RecipeConfigStorageWrapperTest::testMultipleStorages function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that multiple storages return underlying values correctly.
RecipeConfigStorageWrapperTest::testNotExists function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate FALSE when neither storage contains a key.
RecipeConfigStorageWrapperTest::testNullStorage function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that an empty set of storage backends returns null storage.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.