You are here

protected function EntityAutocompleteElementFormTest::getAutocompleteInput in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php \Drupal\KernelTests\Core\Entity\Element\EntityAutocompleteElementFormTest::getAutocompleteInput()

Returns an entity label in the format needed by the EntityAutocomplete element.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: A Drupal entity.

Return value

string A string that can be used as a value for EntityAutocomplete elements.

2 calls to EntityAutocompleteElementFormTest::getAutocompleteInput()
EntityAutocompleteElementFormTest::testEntityAutocompleteIdInput in core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php
Tests ID input is handled correctly.
EntityAutocompleteElementFormTest::testValidEntityAutocompleteElement in core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php
Tests valid entries in the EntityAutocomplete Form API element.

File

core/tests/Drupal/KernelTests/Core/Entity/Element/EntityAutocompleteElementFormTest.php, line 383

Class

EntityAutocompleteElementFormTest
Tests the EntityAutocomplete Form API element.

Namespace

Drupal\KernelTests\Core\Entity\Element

Code

protected function getAutocompleteInput(EntityInterface $entity) {
  return EntityAutocomplete::getEntityLabels([
    $entity,
  ]);
}