Search for all

  1. Search 7.x for all
  2. Search 9.5.x for all
  3. Search 10.3.x for all
  4. Search 11.x for all
  5. Other projects
Title Object type File name Summary
BackendChain::garbageCollection function core/lib/Drupal/Core/Cache/BackendChain.php Performs garbage collection on a cache bin.
BackendChain::get function core/lib/Drupal/Core/Cache/BackendChain.php Returns data from the persistent cache.
BackendChain::getMultiple function core/lib/Drupal/Core/Cache/BackendChain.php Returns data from the persistent cache when given an array of cache IDs.
BackendChain::invalidate function core/lib/Drupal/Core/Cache/BackendChain.php Marks a cache item as invalid.
BackendChain::invalidateAll function core/lib/Drupal/Core/Cache/BackendChain.php Marks all cache items as invalid.
BackendChain::invalidateMultiple function core/lib/Drupal/Core/Cache/BackendChain.php Marks cache items as invalid.
BackendChain::invalidateTags function core/lib/Drupal/Core/Cache/BackendChain.php Marks cache items with any of the specified tags as invalid.
BackendChain::prependBackend function core/lib/Drupal/Core/Cache/BackendChain.php Prepends a cache backend to the cache chain.
BackendChain::removeBin function core/lib/Drupal/Core/Cache/BackendChain.php Remove a cache bin.
BackendChain::set function core/lib/Drupal/Core/Cache/BackendChain.php Stores data in the persistent cache.
BackendChain::setMultiple function core/lib/Drupal/Core/Cache/BackendChain.php Store multiple items in the persistent cache.
BackendChain::__construct function core/lib/Drupal/Core/Cache/BackendChain.php Constructs a new backend chain service instance.
BackendChainImplementationUnitTest class core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Unit test of backend chain implementation specifics.
BackendChainImplementationUnitTest.php file core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php
BackendChainImplementationUnitTest::$chain property core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Chain that will be heavily tested.
BackendChainImplementationUnitTest::$firstBackend property core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php First backend in the chain.
BackendChainImplementationUnitTest::$secondBackend property core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Second backend in the chain.
BackendChainImplementationUnitTest::$thirdBackend property core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Third backend in the chain.
BackendChainImplementationUnitTest::setUp function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php
BackendChainImplementationUnitTest::testConstructorParameterDeprecation function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Tests deprecation of the constructor parameter.
BackendChainImplementationUnitTest::testDelete function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test that delete will propagate.
BackendChainImplementationUnitTest::testDeleteAllPropagation function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test that the delete all operation is propagated to all backends in the chain.
BackendChainImplementationUnitTest::testDeleteTagsPropagation function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test that the delete tags operation is propagated to all backends
in the chain.
BackendChainImplementationUnitTest::testGet function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test the get feature.
BackendChainImplementationUnitTest::testGetHasPropagated function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Ensure get values propagation to previous backends.
BackendChainImplementationUnitTest::testGetMultiple function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test the get multiple feature.
BackendChainImplementationUnitTest::testGetMultipleHasPropagated function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Ensure get multiple values propagation to previous backends.
BackendChainImplementationUnitTest::testRemoveBin function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test that removing bin propagates to all backends.
BackendChainImplementationUnitTest::testSet function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Test that set will propagate.
BackendChainTest class core/tests/Drupal/KernelTests/Core/Cache/BackendChainTest.php Unit test of the backend chain using the generic cache unit test base.
BackendChainTest.php file core/tests/Drupal/KernelTests/Core/Cache/BackendChainTest.php
BackendChainTest::createCacheBackend function core/tests/Drupal/KernelTests/Core/Cache/BackendChainTest.php Creates a cache backend to test.
BackendCompilerPass class core/lib/Drupal/Core/DependencyInjection/Compiler/BackendCompilerPass.php Defines a compiler pass to allow automatic override per backend.
BackendCompilerPass.php file core/lib/Drupal/Core/DependencyInjection/Compiler/BackendCompilerPass.php
BackendCompilerPass::process function core/lib/Drupal/Core/DependencyInjection/Compiler/BackendCompilerPass.php
BackendCompilerPassTest class core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php @coversDefaultClass \Drupal\Core\DependencyInjection\Compiler\BackendCompilerPass
@group DependencyInjection
BackendCompilerPassTest.php file core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php Contains \Drupal\Tests\Core\DependencyInjection\Compiler\BackendCompilerPassTest.
BackendCompilerPassTest::$backendPass property core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php The tested backend compiler pass.
BackendCompilerPassTest::getMysqlContainer function core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php Creates a container with a mysql database service definition in it.
BackendCompilerPassTest::getSqliteContainer function core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php Creates a container with a sqlite database service in it.
BackendCompilerPassTest::providerTestProcess function core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php Provides test data for testProcess().
BackendCompilerPassTest::setUp function core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php
BackendCompilerPassTest::testProcess function core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/BackendCompilerPassTest.php Tests the process method.
BackwardCompatibilityTest class core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php Tests the compatibility of the ajax.es6.js file.
BackwardCompatibilityTest.php file core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php
BackwardCompatibilityTest::$defaultTheme property core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php The theme to install as the default for testing.
BackwardCompatibilityTest::$modules property core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php Modules to enable.
BackwardCompatibilityTest::testAjaxBackwardCompatibility function core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php Ensures Drupal.Ajax.element_settings BC layer.
BadPluginDefinitionException class core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php Defines a class for bad plugin definition exceptions.
BadPluginDefinitionException.php file core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php

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