Search for %s

  1. Search 7.x for %s
  2. Search 9.5.x for %s
  3. Search 8.9.x for %s
  4. Search 10.3.x for %s
  5. Search main for %s
  6. Other projects
Title Object type File name Summary
AutowiredInstanceTrait::createInstanceAutowired function core/lib/Drupal/Core/DependencyInjection/AutowiredInstanceTrait.php Instantiates a new instance of the implementing class using autowiring.
AutowiredInstanceTrait::getAutowireArguments function core/lib/Drupal/Core/DependencyInjection/AutowiredInstanceTrait.php Resolves arguments for a method using autowiring.
AutowiredInstanceTraitTest class core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Tests \Drupal\Core\DependencyInjection\AutowiredInstanceTrait.
AutowiredInstanceTraitTest.php file core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php
AutowiredInstanceTraitTest::testAutowire function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Tests autowiring services and parameters.
AutowiredInstanceTraitTest::testAutowireMissingRequiredParameter function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Tests exception for missing required parameter.
AutowiredInstanceTraitTest::testAutowireMissingRequiredService function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Tests exception for missing required service.
AutowireErrorBlock::__construct function core/modules/system/tests/modules/autowire_test/src/Plugin/Block/AutowireErrorBlock.php
AutowireRequiredParameterTestClass class core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Test class for autowiring a required parameter.
AutowireRequiredParameterTestClass::__construct function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php
AutowireRequiredServiceTestClass class core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Test class for autowiring a required service.
AutowireRequiredServiceTestClass::__construct function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php
AutowireTest class core/tests/Drupal/KernelTests/Core/DependencyInjection/AutowireTest.php Tests auto-wiring services.
AutowireTest.php file core/tests/Drupal/KernelTests/Core/DependencyInjection/AutowireTest.php
AutowireTest::$modules property core/tests/Drupal/KernelTests/Core/DependencyInjection/AutowireTest.php Modules to install.
AutowireTest::testAutowire function core/tests/Drupal/KernelTests/Core/DependencyInjection/AutowireTest.php Tests that 'autowire_test.service' has its dependencies injected.
AutowireTest::testCoreControllerAutowiring function core/tests/Drupal/KernelTests/Core/DependencyInjection/AutowireTest.php Tests that core controllers are autowired where possible.
AutowireTest::testCoreServiceAliases function core/tests/Drupal/KernelTests/Core/DependencyInjection/AutowireTest.php Tests that core services have aliases correctly defined where possible.
AutowireTestClass class core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php Test class covering service and parameter autowiring scenarios.
AutowireTestClass::$setterNamedService property core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php An injected service.
AutowireTestClass::$setterParameter property core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php An injected parameter.
AutowireTestClass::$setterTypedService property core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php An injected service.
AutowireTestClass::setNamedService function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php #[Required]
AutowireTestClass::setParameter function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php #[Required]
AutowireTestClass::setTypedService function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php #[Required]
AutowireTestClass::__construct function core/tests/Drupal/Tests/Core/DependencyInjection/AutowiredInstanceTraitTest.php
autowire_test.info.yml file core/modules/system/tests/modules/autowire_test/autowire_test.info.yml core/modules/system/tests/modules/autowire_test/autowire_test.info.yml
autowire_test.services.yml file core/modules/system/tests/modules/autowire_test/autowire_test.services.yml core/modules/system/tests/modules/autowire_test/autowire_test.services.yml
Autowiring::__construct function core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/Operation/test/Autowiring.php Constructs an image toolkit operation plugin.
AvifImageEffect::getDerivativeExtension function core/modules/image/src/Plugin/ImageEffect/AvifImageEffect.php Returns the extension of the derivative after applying this image effect.
AvifImageEffect::isAvifSupported function core/modules/image/src/Plugin/ImageEffect/AvifImageEffect.php Is AVIF supported by the image toolkit.
a_module_update_dependencies function core/tests/fixtures/test_update_ordering/test_update_ordering.php Implements hook_update_dependencies().
BackendChain::$backends property core/lib/Drupal/Core/Cache/BackendChain.php Ordered list of CacheBackendInterface instances.
BackendChain::invalidateTags function core/lib/Drupal/Core/Cache/BackendChain.php Marks cache items with any of the specified tags as invalid.
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.
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::testDelete function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Tests that delete will propagate.
BackendChainImplementationUnitTest::testDeleteAllPropagation function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Tests that the delete all operation is propagated to all chained backends.
BackendChainImplementationUnitTest::testDeleteTagsPropagation function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Tests that the delete tags operation is propagated to all chained backends.
BackendChainImplementationUnitTest::testGet function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Tests 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 Tests the get multiple feature.
BackendChainImplementationUnitTest::testGetMultipleHasPropagated function core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php Ensure get multiple values propagation to previous backends.

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