EntityTypeManager::hasHandler |
function |
core/lib/Drupal/Core/Entity/EntityTypeManager.php |
Checks whether a certain entity type has a certain handler. |
EntityTypeManager::processDefinition |
function |
core/lib/Drupal/Core/Entity/EntityTypeManager.php |
Performs extra processing on plugin definitions. |
EntityTypeManager::useCaches |
function |
core/lib/Drupal/Core/Entity/EntityTypeManager.php |
Disable the use of caches. |
EntityTypeManager::__construct |
function |
core/lib/Drupal/Core/Entity/EntityTypeManager.php |
Constructs a new Entity plugin manager. |
EntityTypeManagerInterface |
interface |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Provides an interface for entity type managers. |
EntityTypeManagerInterface.php |
file |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
|
EntityTypeManagerInterface::createHandlerInstance |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Creates new handler instance. |
EntityTypeManagerInterface::getAccessControlHandler |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Creates a new access control handler instance. |
EntityTypeManagerInterface::getDefinition |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
|
EntityTypeManagerInterface::getDefinitions |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
|
EntityTypeManagerInterface::getFormObject |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Creates a new form instance. |
EntityTypeManagerInterface::getHandler |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Returns a handler instance for the given entity type and handler. |
EntityTypeManagerInterface::getListBuilder |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Creates a new entity list builder. |
EntityTypeManagerInterface::getRouteProviders |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Gets all route provider instances. |
EntityTypeManagerInterface::getStorage |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Creates a new storage instance. |
EntityTypeManagerInterface::getViewBuilder |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Creates a new view builder instance. |
EntityTypeManagerInterface::hasHandler |
function |
core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php |
Checks whether a certain entity type has a certain handler. |
EntityTypeManagerTest |
class |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests Drupal\Core\Entity\EntityTypeManager. |
EntityTypeManagerTest.php |
file |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
|
EntityTypeManagerTest::$cacheBackend |
property |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
The cache backend. |
EntityTypeManagerTest::$discovery |
property |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
The plugin discovery. |
EntityTypeManagerTest::$entityLastInstalledSchemaRepository |
property |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
The entity last installed schema repository. |
EntityTypeManagerTest::$entityTypeManager |
property |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
The entity type manager under test. |
EntityTypeManagerTest::$moduleHandler |
property |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
The module handler. |
EntityTypeManagerTest::$translationManager |
property |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
The translation manager. |
EntityTypeManagerTest::provideFormObjectInvalidOperationData |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Provides test data for testGetFormObjectInvalidOperation(). |
EntityTypeManagerTest::provideMissingHandlerData |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Provides test data for testGetHandlerMissingHandler(). |
EntityTypeManagerTest::providerTestGetDefinition |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Provides test data for testGetDefinition(). |
EntityTypeManagerTest::providerTestHasHandler |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Provides test data for testHasHandler(). |
EntityTypeManagerTest::setUp |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
|
EntityTypeManagerTest::setUpEntityTypeDefinitions |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Sets up the entity type manager to be tested. |
EntityTypeManagerTest::testGetAccessControlHandler |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getAccessControlHandler() method. |
EntityTypeManagerTest::testGetDefinition |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getDefinition() method. |
EntityTypeManagerTest::testGetDefinitionInvalidException |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getDefinition() method with an invalid definition. |
EntityTypeManagerTest::testGetFormObject |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getFormObject() method. |
EntityTypeManagerTest::testGetFormObjectInvalidOperation |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getFormObject() method with an invalid operation. |
EntityTypeManagerTest::testGetHandler |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getHandler() method. |
EntityTypeManagerTest::testGetHandlerMissingHandler |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getHandler() method when no controller is defined. |
EntityTypeManagerTest::testGetListBuilder |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getListBuilder() method. |
EntityTypeManagerTest::testGetRouteProviders |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests get route providers. |
EntityTypeManagerTest::testGetStorage |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getStorage() method. |
EntityTypeManagerTest::testGetViewBuilder |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the getViewBuilder() method. |
EntityTypeManagerTest::testHasHandler |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the hasHandler() method. |
EntityTypeManagerTest::testProcessDefinition |
function |
core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php |
Tests the processDefinition() method. |
EntityTypeManagerTestEntity |
class |
core/tests/Drupal/Tests/Core/Entity/EntityFieldManagerTest.php |
Provides a content entity with dummy static method implementations. |
EntityTypeManagerTestEntity::$baseFieldDefinitions |
property |
core/tests/Drupal/Tests/Core/Entity/EntityFieldManagerTest.php |
The base field definitions. |
EntityTypeManagerTestEntity::$bundleFieldDefinitions |
property |
core/tests/Drupal/Tests/Core/Entity/EntityFieldManagerTest.php |
The bundle field definitions. |
EntityTypeManagerTestEntity::baseFieldDefinitions |
function |
core/tests/Drupal/Tests/Core/Entity/EntityFieldManagerTest.php |
Provides base field definitions for an entity type. |
EntityTypeManagerTestEntity::bundleFieldDefinitions |
function |
core/tests/Drupal/Tests/Core/Entity/EntityFieldManagerTest.php |
Provides field definitions for a specific bundle. |
EntityTypeManagerTestEntityBundle |
class |
core/tests/Drupal/Tests/Core/Entity/EntityFieldManagerTest.php |
Provides a bundle specific class with dummy static method implementations. |