Classes, traits, and interfaces - 11.x - drupal
Introduction to classes
A lot of the PHP code in Drupal is object oriented (OO), making use of PHP classes, interfaces, and traits. See the Objected-oriented programming conventions for more information.
See also
Objected-oriented programming conventions
File
-
core/
core.api.php, line 1518
Name | Deprecated | Object type | Namespace | File name | Summary | Direct uses | Use statements | Strings |
---|---|---|---|---|---|---|---|---|
ContainerFactoryPluginInterface | interface | Drupal\Core\Plugin | core/ |
Defines an interface for pulling plugin dependencies from the container. | 148 | 151 | ||
ContainerForm | class | Drupal\forum\Form | core/ |
Base form for container term edit forms. | ||||
ContainerInjectionInterface | interface | Drupal\Core\DependencyInjection | core/ |
Defines a common interface for dependency container injection. | 108 | 108 | ||
ContainerInterface | interface | Drupal\Component\DependencyInjection | core/ |
The interface for Drupal service container classes. | 2 | 3 | ||
ContainerNotInitializedException | class | Drupal\Core\DependencyInjection | core/ |
Exception, thrown when a method is called on a non-initialized container. | 2 | |||
ContainerRebuildTestServiceProvider | class | Drupal\container_rebuild_test | core/ |
|||||
ContainerRebuildWebTest | class | Drupal\Tests\system\Functional\DrupalKernel | core/ |
Ensures that the container rebuild works as expected. | ||||
ContainerResetWebTest | class | Drupal\Tests\system\Functional\DrupalKernel | core/ |
Ensures that the container rebuild works as expected. | ||||
ContainerTest | class | Drupal\Tests\Core\DependencyInjection | core/ |
@coversDefaultClass \Drupal\Core\DependencyInjection\Container @group DependencyInjection | ||||
ContainerTest | class | Drupal\Tests\Component\DependencyInjection | core/ |
@coversDefaultClass \Drupal\Component\DependencyInjection\Container @group DependencyInjection | 1 | |||
ContentDispositionFilenameParser | final class | Drupal\file\Upload | core/ |
Parses the content-disposition header to extract the client filename. | 4 | |||
ContentDispositionFilenameParserTest | class | Drupal\Tests\file\Unit\Upload | core/ |
Tests the ContentDispositionFilenameParser class. | ||||
ContentEntity | class | Drupal\migrate_drupal\Plugin\migrate\source | core/ |
Source plugin to get content entities from the current version of Drupal. | 1 | |||
ContentEntityBase | abstract class | Drupal\Core\Entity | core/ |
Implements Entity Field API specific enhancements to the Entity class. | 17 | 15 | ||
ContentEntityBaseMockableClass | class | Drupal\Tests\Core\Entity | core/ |
A class extending ContentEntityBase for mocking purposes. | 6 | |||
ContentEntityBaseUnitTest | class | Drupal\Tests\Core\Entity | core/ |
@coversDefaultClass \Drupal\Core\Entity\ContentEntityBase @group Entity @group Access | ||||
ContentEntityChangedTest | class | Drupal\KernelTests\Core\Entity | core/ |
Tests basic EntityChangedInterface functionality. | ||||
ContentEntityCloneTest | class | Drupal\KernelTests\Core\Entity | core/ |
Tests proper cloning of content entities. | ||||
ContentEntityConfirmFormBase | abstract class | Drupal\Core\Entity | core/ |
Provides a generic base class for an entity-based confirmation form. | 2 | 1 | ||
ContentEntityConstructorTest | class | Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source | core/ |
Tests the constructor of the entity content source plugin. | ||||
ContentEntityDeleteForm | class | Drupal\Core\Entity | core/ |
Provides a generic base class for a content entity deletion form. | 9 | 13 | ||
ContentEntityDenormalizer | final class | Drupal\jsonapi\Normalizer | core/ |
Converts a JSON:API array structure into a Drupal entity object. | 2 | |||
ContentEntityDeriver | class | Drupal\migrate_drupal\Plugin\migrate\source | core/ |
Deriver for content entity source plugins. | ||||
ContentEntityFieldMethodInvocationOrderTest | class | Drupal\KernelTests\Core\Entity | core/ |
Tests correct field method invocation order. | ||||
ContentEntityForm | class | Drupal\Core\Entity | core/ |
Entity form variant for content entity types. | 15 | 17 | ||
ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest | class | Drupal\FunctionalTests\Entity | core/ |
Tests the correct mapping of user input on the correct field delta elements. | ||||
ContentEntityFormFieldValidationFilteringTest | class | Drupal\FunctionalTests\Entity | core/ |
Tests field validation filtering on content entity forms. | ||||
ContentEntityFormInterface | interface | Drupal\Core\Entity | core/ |
Defines a common interface for content entity form classes. | 1 | 5 | ||
ContentEntityHasChangesTest | class | Drupal\KernelTests\Core\Entity | core/ |
Tests ContentEntityBase::hasTranslationChanges(). | ||||
ContentEntityInterface | interface | Drupal\Core\Entity | core/ |
Defines a common interface for all content entity objects. | 15 | 76 | 1 | |
ContentEntityNonRevisionableFieldTest | class | Drupal\KernelTests\Core\Entity | core/ |
Tests non-revisionable fields on revisionable (and translatable) entities. | ||||
ContentEntityNormalizer | class | Drupal\serialization\Normalizer | core/ |
Normalizes/denormalizes Drupal content entities into an array structure. | 1 | 2 | ||
ContentEntityNormalizerTest | class | Drupal\Tests\serialization\Unit\Normalizer | core/ |
@coversDefaultClass \Drupal\serialization\Normalizer\ContentEntityNormalizer @group serialization | ||||
ContentEntityNullStorage | class | Drupal\Core\Entity | core/ |
Defines a null entity storage. | 5 | |||
ContentEntityNullStorageTest | class | Drupal\KernelTests\Core\Entity | core/ |
Tests ContentEntityNullStorage entity query support. | ||||
ContentEntityStorageBase | abstract class | Drupal\Core\Entity | core/ |
Base class for content entity storage handlers. | 2 | 1 | ||
ContentEntityStorageBaseTest | class | Drupal\KernelTests\Core\Entity | core/ |
@coversDefaultClass \Drupal\Core\Entity\ContentEntityStorageBase | ||||
ContentEntityStorageInterface | interface | Drupal\Core\Entity | core/ |
A storage that supports content entity types. | 8 | 14 | ||
ContentEntityTest | class | Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source | core/ |
Tests the entity content source plugin. | ||||
ContentEntityType | class | Drupal\Core\Entity\Attribute | core/ |
Defines a content entity type for plugin discovery. | 62 | |||
ContentEntityType | class | Drupal\Core\Entity | core/ |
Provides an implementation of a content entity type and its metadata. | 1 | 5 | ||
ContentEntityType | class | Drupal\Core\Entity\Annotation | core/ |
Defines a content entity type annotation object. | ||||
ContentEntityTypeInterface | interface | Drupal\Core\Entity | core/ |
Provides an interface for a content entity type and its metadata. | 1 | 30 | ||
ContentImportTest | class | Drupal\FunctionalTests\DefaultContent | core/ |
@covers \Drupal\Core\DefaultContent\Importer @group DefaultContent @group Recipe @group #slow | ||||
ContentLanguageSettings | class | Drupal\language\Entity | core/ |
Defines the ContentLanguageSettings entity. | 39 | |||
ContentLanguageSettingsException | class | Drupal\language | core/ |
Exception thrown by ContentLanguageSettings when target bundle is not set. | 1 | |||
ContentLanguageSettingsForm | class | Drupal\language\Form | core/ |
Configure the content language settings for this site. | 1 | |||
ContentLanguageSettingsInterface | interface | Drupal\language | core/ |
Provides an interface defining language settings for content entities. | 1 | 3 | ||
ContentLanguageSettingsJsonAnonTest | class | Drupal\Tests\language\Functional\Rest | core/ |
@group rest | ||||
ContentLanguageSettingsJsonBasicAuthTest | class | Drupal\Tests\language\Functional\Rest | core/ |
@group rest |
Pagination
- Previous page
- Page 37
- Next page
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.