EntityApiTest::assertCRUD |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
Executes a test set for a defined entity type and user. |
EntityApiTest::setUp |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
|
EntityApiTest::testCRUD |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
Tests basic CRUD functionality of the Entity API. |
EntityApiTest::testEntityStorageExceptionHandling |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
Tests that exceptions are thrown when saving or deleting an entity. |
EntityApiTest::testLoadMultiple |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
Tests that the Entity storage loads the entities in the correct order. |
EntityApiTest::testUpdateWithId |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
Tests that resaving an entity with a different entity ID throws an exception. |
EntityApiTest::testUpdateWithRevisionId |
function |
core/tests/Drupal/KernelTests/Core/Entity/EntityApiTest.php |
Tests that resaving a revision with a different revision ID throws an exception. |
EntityArgument |
class |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
Argument handler to accept an entity ID value. |
EntityArgument.php |
file |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
|
EntityArgument::$deprecatedStorageProperties |
property |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
Array of deprecated storage properties that legacy classes might access. |
EntityArgument::$entityRepository |
property |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
|
EntityArgument::$entityTypeManager |
property |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
|
EntityArgument::create |
function |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
Creates an instance of the plugin. |
EntityArgument::titleQuery |
function |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
Override for specific title lookups. |
EntityArgument::__construct |
function |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
Constructs a Handler object. |
EntityArgument::__get |
function |
core/modules/views/src/Plugin/views/argument/EntityArgument.php |
Allows to access deprecated/removed properties. |
EntityArgumentTest |
class |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
Tests the handler of the view: entity target argument. |
EntityArgumentTest.php |
file |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
|
EntityArgumentTest::$adminUser |
property |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
A user with permission to administer taxonomy. |
EntityArgumentTest::$defaultTheme |
property |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
The theme to install as the default for testing. |
EntityArgumentTest::$modules |
property |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
Modules to install. |
EntityArgumentTest::$testViews |
property |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
Views used by this test. |
EntityArgumentTest::setUp |
function |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
Sets up the test. |
EntityArgumentTest::testArgumentTitle |
function |
core/modules/views/tests/src/Functional/Plugin/EntityArgumentTest.php |
Tests the generated title of a view with an entity target argument. |
EntityArgumentUpdateTest |
class |
core/modules/views/tests/src/Functional/Update/EntityArgumentUpdateTest.php |
Tests the upgrade path for converting numeric arguments to entity_target_id. |
EntityArgumentUpdateTest.php |
file |
core/modules/views/tests/src/Functional/Update/EntityArgumentUpdateTest.php |
|
EntityArgumentUpdateTest::setDatabaseDumpFiles |
function |
core/modules/views/tests/src/Functional/Update/EntityArgumentUpdateTest.php |
Set database dump files to be used. |
EntityArgumentUpdateTest::testViewsFieldPluginConversion |
function |
core/modules/views/tests/src/Functional/Update/EntityArgumentUpdateTest.php |
Tests that numeric argument plugins are updated properly. |
EntityAutocomplete |
class |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Provides an entity autocomplete form element. |
EntityAutocomplete.php |
file |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
|
EntityAutocomplete::extractEntityIdFromAutocompleteInput |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Extracts the entity ID from the autocompletion result. |
EntityAutocomplete::getEntityLabels |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Converts an array of entity objects into a string of entity labels. |
EntityAutocomplete::getInfo |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Returns the element properties for this element. |
EntityAutocomplete::matchEntityByTitle |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Finds an entity from an autocomplete input without an explicit ID. |
EntityAutocomplete::processEntityAutocomplete |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Adds entity autocomplete functionality to a form element. |
EntityAutocomplete::validateEntityAutocomplete |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Form element validation handler for entity_autocomplete elements. |
EntityAutocomplete::valueCallback |
function |
core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php |
Determines how user input is mapped to an element's #value property. |
EntityAutocompleteController |
class |
core/modules/system/src/Controller/EntityAutocompleteController.php |
Defines a route controller for entity autocomplete form elements. |
EntityAutocompleteController.php |
file |
core/modules/system/src/Controller/EntityAutocompleteController.php |
|
EntityAutocompleteController::$keyValue |
property |
core/modules/system/src/Controller/EntityAutocompleteController.php |
The key value store. |
EntityAutocompleteController::$matcher |
property |
core/modules/system/src/Controller/EntityAutocompleteController.php |
The autocomplete matcher for entity references. |
EntityAutocompleteController::create |
function |
core/modules/system/src/Controller/EntityAutocompleteController.php |
Instantiates a new instance of the implementing class using autowiring. |
EntityAutocompleteController::handleAutocomplete |
function |
core/modules/system/src/Controller/EntityAutocompleteController.php |
Autocomplete the label of an entity. |
EntityAutocompleteController::__construct |
function |
core/modules/system/src/Controller/EntityAutocompleteController.php |
Constructs an EntityAutocompleteController object. |
EntityAutocompleteElementFormTest |
class |
core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php |
Tests the EntityAutocomplete Form API element. |
EntityAutocompleteElementFormTest.php |
file |
core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php |
|
EntityAutocompleteElementFormTest::$referencedEntities |
property |
core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php |
An array of entities to be referenced in this test. |
EntityAutocompleteElementFormTest::$testAutocreateUser |
property |
core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php |
User for autocreate testing. |
EntityAutocompleteElementFormTest::$testUser |
property |
core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php |
User for testing. |
EntityAutocompleteElementFormTest::buildForm |
function |
core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php |
Form constructor. |