EntityManagerInterface.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
Drupal\Core\EntityFile
core/lib/Drupal/Core/Entity/EntityManagerInterface.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\Entity\EntityManagerInterface.
*/
namespace Drupal\Core\Entity;
use Drupal\Core\Field\FieldDefinitionListenerInterface;
use Drupal\Core\Field\FieldStorageDefinitionListenerInterface;
/**
* Provides an interface for entity type managers.
*
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0.
*/
interface EntityManagerInterface extends EntityTypeListenerInterface, EntityBundleListenerInterface, FieldStorageDefinitionListenerInterface, FieldDefinitionListenerInterface, EntityTypeManagerInterface, EntityTypeRepositoryInterface, EntityTypeBundleInfoInterface, EntityDisplayRepositoryInterface, EntityFieldManagerInterface, EntityRepositoryInterface {
/**
* @see \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledDefinition()
*
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0.
*/
public function getLastInstalledDefinition($entity_type_id);
/**
* @see \Drupal\Core\Entity\EntityLastInstalledSchemaRepositoryInterface::getLastInstalledFieldStorageDefinitions()
*
* @deprecated in Drupal 8.0.0, will be removed before Drupal 9.0.0.
*/
public function getLastInstalledFieldStorageDefinitions($entity_type_id);
}
Interfaces
Name | Description |
---|---|
EntityManagerInterface Deprecated | Provides an interface for entity type managers. |