Search for id

  1. Search 7.x for id
  2. Search 9.5.x for id
  3. Search 8.9.x for id
  4. Search 10.3.x for id
  5. Other projects
Title Object type File name Summary
AllowedValuesConstraintValidatorTest::testValidationCallback function core/tests/Drupal/KernelTests/Core/TypedData/AllowedValuesConstraintValidatorTest.php Tests the AllowedValuesConstraintValidator with callbacks.
AllowedValuesConstraintValidatorTest::testValidationCallbackException function core/tests/Drupal/KernelTests/Core/TypedData/AllowedValuesConstraintValidatorTest.php Tests the AllowedValuesConstraintValidator with an invalid callback.
AllowToolbarPathTest::providerTestAllowToolbarPath function core/modules/toolbar/tests/src/Unit/PageCache/AllowToolbarPathTest.php Provides data and expected results for the test method.
AlterContentMiddleware class core/modules/system/tests/modules/http_middleware_test/src/StackMiddleware/AlterContentMiddleware.php Alters the response before content length is calculated.
AlterContentMiddleware.php file core/modules/system/tests/modules/http_middleware_test/src/StackMiddleware/AlterContentMiddleware.php
AlterContentMiddleware::handle function core/modules/system/tests/modules/http_middleware_test/src/StackMiddleware/AlterContentMiddleware.php
AlterContentMiddleware::__construct function core/modules/system/tests/modules/http_middleware_test/src/StackMiddleware/AlterContentMiddleware.php
Analyze::getFormId function core/modules/views_ui/src/Form/Ajax/Analyze.php
AnnotatedClassDiscovery::getProviderFromNamespace function core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php Extracts the provider name from a Drupal namespace.
AnnotatedClassDiscoveryAutomatedProviders class core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php Determines providers based on a class's and its parent's namespaces.
AnnotatedClassDiscoveryAutomatedProviders.php file core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
AnnotatedClassDiscoveryAutomatedProviders::$finder property core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php A utility object that can use active autoloaders to find files for classes.
AnnotatedClassDiscoveryAutomatedProviders::getDefinitions function core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
AnnotatedClassDiscoveryAutomatedProviders::prepareAnnotationDefinition function core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
AnnotatedClassDiscoveryAutomatedProviders::__construct function core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php Constructs an AnnotatedClassDiscoveryAutomatedProviders object.
AnnotatedClassDiscoveryTest::provideBadAnnotations function core/tests/Drupal/Tests/Component/Plugin/Discovery/AnnotatedClassDiscoveryTest.php All the Drupal documentation standards tags.
AnnotationBase::$id property core/lib/Drupal/Component/Annotation/AnnotationBase.php The annotated class ID.
AnnotationBase::$provider property core/lib/Drupal/Component/Annotation/AnnotationBase.php The provider of the annotated class.
AnnotationBase::getId function core/lib/Drupal/Component/Annotation/AnnotationBase.php
AnnotationBase::getProvider function core/lib/Drupal/Component/Annotation/AnnotationBase.php
AnnotationBase::setProvider function core/lib/Drupal/Component/Annotation/AnnotationBase.php
AnnotationBaseTest::testGetId function core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php @covers ::getId
AnnotationBaseTest::testSetProvider function core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php @covers ::getProvider
@covers ::setProvider
AnnotationBridgeDecorator class core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php Ensures that all definitions are run through the annotation process.
AnnotationBridgeDecorator.php file core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php
AnnotationBridgeDecorator::$decorated property core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php The decorated plugin discovery.
AnnotationBridgeDecorator::$pluginDefinitionAnnotationName property core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php The name of the annotation that contains the plugin definition.
AnnotationBridgeDecorator::getDefinitions function core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php
AnnotationBridgeDecorator::__call function core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php Passes through all unknown calls onto the decorated object.
AnnotationBridgeDecorator::__construct function core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecorator.php ObjectDefinitionDiscoveryDecorator constructor.
AnnotationBridgeDecoratorTest class core/tests/Drupal/Tests/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecoratorTest.php @coversDefaultClass \Drupal\Component\Annotation\Plugin\Discovery\AnnotationBridgeDecorator
@group Plugin
AnnotationBridgeDecoratorTest.php file core/tests/Drupal/Tests/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecoratorTest.php
AnnotationBridgeDecoratorTest::testGetDefinitions function core/tests/Drupal/Tests/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecoratorTest.php @covers ::getDefinitions
AnnotationEnumInvalid class core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumInvalid.php Plugin annotation
@Target("ALL");
AnnotationEnumInvalid.php file core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumInvalid.php
AnnotationEnumInvalid::$value property core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumInvalid.php Plugin annotation

@Enum({1, 2, "foo", "bar", {"foo":"bar"}})
AnnotationEnumLiteralInvalid class core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumLiteralInvalid.php Plugin annotation
@Target("ALL");
AnnotationEnumLiteralInvalid.php file core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumLiteralInvalid.php
AnnotationEnumLiteralInvalid::$value property core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumLiteralInvalid.php Plugin annotation

@Enum(
value = {
1,
2
},
literal = {
1 : "AnnotationEnumLiteral::ONE",
2 : "AnnotationEnumLiteral::TWO",
3 : "AnnotationEnumLiteral::THREE"
}
)
AnnotationEnumLiteralInvalid::ONE constant core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumLiteralInvalid.php
AnnotationEnumLiteralInvalid::THREE constant core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumLiteralInvalid.php
AnnotationEnumLiteralInvalid::TWO constant core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/AnnotationEnumLiteralInvalid.php
AnnotationInterface::getId function core/lib/Drupal/Component/Annotation/AnnotationInterface.php Gets the unique ID for this annotated class.
AnnotationInterface::getProvider function core/lib/Drupal/Component/Annotation/AnnotationInterface.php Gets the name of the provider of the annotated class.
AnnotationInterface::setProvider function core/lib/Drupal/Component/Annotation/AnnotationInterface.php Sets the name of the provider of the annotated class.
AnnotationWithInvalidTargetDeclaration class core/tests/Drupal/Tests/Component/Annotation/Doctrine/DocParserTest.php Plugin annotation
@Target("Foo");
AnnounceFetcher::fetchIds function core/modules/announcements_feed/src/AnnounceFetcher.php Fetch ids of announcements.
AnnounceFetcher::validateUrl function core/modules/announcements_feed/src/AnnounceFetcher.php Check whether a link is controlled by D.O.
AnnounceFetcherTest::providerShowAnnouncements function core/modules/announcements_feed/tests/src/Kernel/AnnounceFetcherTest.php Data provider for testShowAnnouncements().
AnnounceFetcherUnitTest::testValidateUrl function core/modules/announcements_feed/tests/src/Unit/AnnounceFetcherUnitTest.php Test the ValidateUrl() method.

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