public EntityManager::getLastInstalledDefinition($entity_type_id)
Overrides EntityManagerInterface::getLastInstalledDefinition
File
- core/lib/Drupal/Core/Entity/EntityManager.php, line 455
Class
- EntityManager
- Provides a wrapper around many other services relating to entities.
Namespace
Drupal\Core\Entity
Code
1 2 3 | public function getLastInstalledDefinition( $entity_type_id ) { return $this ->container->get( 'entity.last_installed_schema.repository' )->getLastInstalledDefinition( $entity_type_id ); } |
Please login to continue.