Mercurial > hg > cmmr2012-drupal-site
comparison core/lib/Drupal/Core/Entity/EntityManagerInterface.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
7 | 7 |
8 /** | 8 /** |
9 * Provides an interface for entity type managers. | 9 * Provides an interface for entity type managers. |
10 * | 10 * |
11 * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. | 11 * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. |
12 * | |
13 * @see https://www.drupal.org/node/2549139 | |
12 */ | 14 */ |
13 interface EntityManagerInterface extends EntityTypeListenerInterface, EntityBundleListenerInterface, FieldStorageDefinitionListenerInterface, FieldDefinitionListenerInterface, EntityTypeManagerInterface, EntityTypeRepositoryInterface, EntityTypeBundleInfoInterface, EntityDisplayRepositoryInterface, EntityFieldManagerInterface, EntityRepositoryInterface { | 15 interface EntityManagerInterface extends EntityTypeListenerInterface, EntityBundleListenerInterface, FieldStorageDefinitionListenerInterface, FieldDefinitionListenerInterface, EntityTypeManagerInterface, EntityTypeRepositoryInterface, EntityTypeBundleInfoInterface, EntityDisplayRepositoryInterface, EntityFieldManagerInterface, EntityRepositoryInterface { |
14 | 16 |
15 /** | 17 /** |
16 * @see \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition() | 18 * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use |
19 * \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition() | |
20 * instead. | |
17 * | 21 * |
18 * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. | 22 * @see https://www.drupal.org/node/2549139 |
19 */ | 23 */ |
20 public function getLastInstalledDefinition($entity_type_id); | 24 public function getLastInstalledDefinition($entity_type_id); |
21 | 25 |
22 /** | 26 /** |
23 * @see \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions() | 27 * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. Use |
28 * \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions() | |
29 * instead. | |
24 * | 30 * |
25 * @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0. | 31 * @see https://www.drupal.org/node/2549139 |
26 */ | 32 */ |
27 public function getLastInstalledFieldStorageDefinitions($entity_type_id); | 33 public function getLastInstalledFieldStorageDefinitions($entity_type_id); |
28 | 34 |
29 } | 35 } |