Search for %s

  1. Search 7.x for %s
  2. Search 9.5.x for %s
  3. Search 8.9.x for %s
  4. Search 10.3.x for %s
  5. Search 11.x for %s
  6. Other projects
Title Object type File name Summary
EntityResourceValidationTrait.php file core/modules/rest/src/Plugin/rest/resource/EntityResourceValidationTrait.php
EntityResourceValidationTrait::validate function core/modules/rest/src/Plugin/rest/resource/EntityResourceValidationTrait.php Verifies that an entity does not violate any validation constraints.
EntityResourceValidationTraitTest class core/modules/rest/tests/src/Unit/EntityResourceValidationTraitTest.php Tests Drupal\rest\Plugin\rest\resource\EntityResourceValidationTrait.
EntityResourceValidationTraitTest.php file core/modules/rest/tests/src/Unit/EntityResourceValidationTraitTest.php
EntityResourceValidationTraitTest::testFailedValidate function core/modules/rest/tests/src/Unit/EntityResourceValidationTraitTest.php Tests failed validate.
EntityResourceValidationTraitTest::testValidate function core/modules/rest/tests/src/Unit/EntityResourceValidationTraitTest.php Tests validate.
EntityResourceValidationTraitTestClass class core/modules/rest/tests/src/Unit/EntityResourceValidationTraitTest.php A test class to use to test EntityResourceValidationTrait.
EntityReverse class core/modules/views/src/Plugin/views/relationship/EntityReverse.php A relationship handlers which reverse entity references.
EntityReverse.php file core/modules/views/src/Plugin/views/relationship/EntityReverse.php
EntityReverse::$first_alias property core/modules/views/src/Plugin/views/relationship/EntityReverse.php The alias for the left table.
EntityReverse::$joinManager property core/modules/views/src/Plugin/views/relationship/EntityReverse.php The views plugin join manager.
EntityReverse::query function core/modules/views/src/Plugin/views/relationship/EntityReverse.php Called to implement a relationship in a query.
EntityReverse::__construct function core/modules/views/src/Plugin/views/relationship/EntityReverse.php Constructs an EntityReverse object.
EntityReverseJoinTest class core/modules/views/tests/src/Kernel/Plugin/EntityReverseJoinTest.php Tests the EntityReverse join plugin.
EntityReverseJoinTest.php file core/modules/views/tests/src/Kernel/Plugin/EntityReverseJoinTest.php
EntityReverseJoinTest::$testViews property core/modules/views/tests/src/Kernel/Plugin/EntityReverseJoinTest.php Views to be enabled.
EntityReverseJoinTest::testJoinThroughRelationship function core/modules/views/tests/src/Kernel/Plugin/EntityReverseJoinTest.php Tests that the EntityReverse plugin loads the correct join plugin.
EntityRevision class core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php Mock that exposes from internal methods for testing.
EntityRevision class core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php Provides entity revision destination plugin.
EntityRevision.php file core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php
EntityRevision::getEntity function core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php Gets the entity.
EntityRevision::getEntity function core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php Allow public access for testing.
EntityRevision::getHighestId function core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php Returns the highest ID tracked by the implementing plugin.
EntityRevision::getIds function core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php Gets the destination IDs.
EntityRevision::save function core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php Saves the entity.
EntityRevision::save function core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php Allow public access for testing.
EntityRevision::updateEntity function core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php Don't test method from base class.
EntityRevision::__construct function core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php Constructs a content entity.
EntityRevisionParamConverter class core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php Parameter converter for upcasting entity revision IDs to full objects.
EntityRevisionParamConverter.php file core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php
EntityRevisionParamConverter::$entityRepository property core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php The entity repository.
EntityRevisionParamConverter::$entityTypeManager property core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php The entity type manager.
EntityRevisionParamConverter::applies function core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php Determines if the converter applies to a specific route and variable.
EntityRevisionParamConverter::convert function core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php Converts path variables to their corresponding objects.
EntityRevisionParamConverter::__construct function core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php Creates a new EntityRevisionParamConverter instance.
EntityRevisionParamConverterTest class core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests Drupal\Core\ParamConverter\EntityRevisionParamConverter.
EntityRevisionParamConverterTest.php file core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php
EntityRevisionParamConverterTest::$converter property core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php The tested entity revision param converter.
EntityRevisionParamConverterTest::getTestRoute function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php
EntityRevisionParamConverterTest::providerTestConvert function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Provides test data for testConvert.
EntityRevisionParamConverterTest::setUp function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php
EntityRevisionParamConverterTest::testApplyingRoute function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests applying route.
EntityRevisionParamConverterTest::testConvert function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests the convert() method.
EntityRevisionParamConverterTest::testConvertWithInvalidDynamicEntityType function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests the convert() method with an invalid dynamic entity type ID.
EntityRevisionParamConverterTest::testConvertWithInvalidEntityType function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests the convert() method with an invalid entity type ID.
EntityRevisionParamConverterTest::testConvertWithInvalidType function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests the convert() method with an invalid dynamic entity type ID.
EntityRevisionParamConverterTest::testNonApplyingRoute function core/tests/Drupal/Tests/Core/ParamConverter/EntityRevisionParamConverterTest.php Tests non applying route.
EntityRevisionRouteEnhancer class core/lib/Drupal/Core/Routing/Enhancer/EntityRevisionRouteEnhancer.php Adds _entity_revision to the request attributes, if possible.
EntityRevisionRouteEnhancer.php file core/lib/Drupal/Core/Routing/Enhancer/EntityRevisionRouteEnhancer.php
EntityRevisionRouteEnhancer::applies function core/lib/Drupal/Core/Routing/Enhancer/EntityRevisionRouteEnhancer.php Returns whether the enhancer runs on the current route.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.