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
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 Gets the definition of all plugins for this type.
AnnotatedClassDiscoveryAutomatedProviders::prepareAnnotationDefinition function core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php Prepares the annotation definition.
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 Gets the unique ID for this annotated class.
AnnotationBase::getProvider function core/lib/Drupal/Component/Annotation/AnnotationBase.php Gets the name of the provider of the annotated class.
AnnotationBase::setProvider function core/lib/Drupal/Component/Annotation/AnnotationBase.php Sets the name of the provider of the annotated class.
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 Gets the definition of all plugins for this type.
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.
AnnounceFetcherUnitTest::urlProvider function core/modules/announcements_feed/tests/src/Unit/AnnounceFetcherUnitTest.php Data for the testValidateUrl.
AnnounceFetcherUserTest::providerShowAnnouncements function core/modules/announcements_feed/tests/src/Kernel/AnnounceFetcherUserTest.php Data provider for testAllAnnouncements().
AnnounceFetcherUserTest::providerShowUpdatedAnnouncements function core/modules/announcements_feed/tests/src/Kernel/AnnounceFetcherUserTest.php Data provider for testAllAnnouncements().
AnnounceTestHttpClientMiddleware class core/modules/announcements_feed/tests/modules/announce_feed_test/src/AnnounceTestHttpClientMiddleware.php Overrides the requested endpoint when running tests.
AnnounceTestHttpClientMiddleware.php file core/modules/announcements_feed/tests/modules/announce_feed_test/src/AnnounceTestHttpClientMiddleware.php
AnnounceTestHttpClientMiddleware::setAnnounceTestEndpoint function core/modules/announcements_feed/tests/modules/announce_feed_test/src/AnnounceTestHttpClientMiddleware.php Sets the test endpoint for the advisories JSON feed.
AnnounceTestHttpClientMiddleware::__invoke function core/modules/announcements_feed/tests/modules/announce_feed_test/src/AnnounceTestHttpClientMiddleware.php HTTP middleware that replaces request endpoint for a test one.
announce_feed_test.announce_client_middleware service core/modules/announcements_feed/tests/modules/announce_feed_test/announce_feed_test.services.yml Drupal\announce_feed_test\AnnounceTestHttpClientMiddleware
ApcuBackend::$checksumProvider property core/lib/Drupal/Core/Cache/ApcuBackend.php The cache tags checksum provider.

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