ContentEntityType.php
Same filename in this branch
Same filename in other branches
- 9 core/lib/Drupal/Core/Entity/ContentEntityType.php
- 9 core/lib/Drupal/Core/Entity/Annotation/ContentEntityType.php
- 8.9.x core/lib/Drupal/Core/Entity/ContentEntityType.php
- 8.9.x core/lib/Drupal/Core/Entity/Annotation/ContentEntityType.php
- 10 core/lib/Drupal/Core/Entity/ContentEntityType.php
- 10 core/lib/Drupal/Core/Entity/Annotation/ContentEntityType.php
Namespace
Drupal\Core\Entity\AttributeFile
-
core/
lib/ Drupal/ Core/ Entity/ Attribute/ ContentEntityType.php
View source
<?php
namespace Drupal\Core\Entity\Attribute;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines a content entity type for plugin discovery.
*
* Content entity type plugins use an object-based attribute method, rather
* than an array-type (as commonly used on other plugin types). The attribute
* properties of content entity types are found on
* \Drupal\Core\Entity\ContentEntityType and are accessed using get/set methods
* defined in \Drupal\Core\Entity\ContentEntityTypeInterface.
*
* @ingroup entity_api
*
* @see \Drupal\Core\Entity\EntityType
* @see \Drupal\Core\Entity\ContentEntityType
* @see \Drupal\Core\Entity\ContentEntityTypeInterface
*/
class ContentEntityType extends EntityType {
public function __construct(string $id, ?TranslatableMarkup $label = NULL, ?TranslatableMarkup $label_collection = NULL, ?TranslatableMarkup $label_singular = NULL, ?TranslatableMarkup $label_plural = NULL, string $entity_type_class = 'Drupal\\Core\\Entity\\ContentEntityType', string $group = 'content', TranslatableMarkup $group_label = new TranslatableMarkup('Content', [], [
'context' => 'Entity type group',
]), bool $static_cache = TRUE, bool $render_cache = TRUE, bool $persistent_cache = TRUE, array $entity_keys = [], array $handlers = [], array $links = [], ?string $admin_permission = NULL, ?string $collection_permission = NULL, string $permission_granularity = 'entity_type', ?string $bundle_entity_type = NULL, ?string $bundle_of = NULL, ?TranslatableMarkup $bundle_label = NULL, ?string $base_table = NULL, ?string $data_table = NULL, ?string $revision_table = NULL, ?string $revision_data_table = NULL, bool $internal = FALSE, bool $translatable = FALSE, bool $show_revision_ui = FALSE, array $label_count = [], ?string $uri_callback = NULL, ?string $field_ui_base_route = NULL, bool $common_reference_target = FALSE, array $list_cache_contexts = [], array $list_cache_tags = [], array $constraints = [], array $revision_metadata_keys = [], array $additional = []) {
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ContentEntityType | Defines a content entity type for plugin discovery. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.