EntityAutocompleteMatcher.php in Drupal 9
File
core/lib/Drupal/Core/Entity/EntityAutocompleteMatcher.php
View source
<?php
namespace Drupal\Core\Entity;
use Drupal\Component\Utility\Html;
use Drupal\Component\Utility\Tags;
use Drupal\Core\Entity\EntityReferenceSelection\SelectionPluginManagerInterface;
class EntityAutocompleteMatcher implements EntityAutocompleteMatcherInterface {
protected $selectionManager;
public function __construct(SelectionPluginManagerInterface $selection_manager) {
$this->selectionManager = $selection_manager;
}
public function getMatches($target_type, $selection_handler, $selection_settings, $string = '') {
$matches = [];
$options = $selection_settings + [
'target_type' => $target_type,
'handler' => $selection_handler,
];
$handler = $this->selectionManager
->getInstance($options);
if (isset($string)) {
$match_operator = !empty($selection_settings['match_operator']) ? $selection_settings['match_operator'] : 'CONTAINS';
$match_limit = isset($selection_settings['match_limit']) ? (int) $selection_settings['match_limit'] : 10;
$entity_labels = $handler
->getReferenceableEntities($string, $match_operator, $match_limit);
foreach ($entity_labels as $values) {
foreach ($values as $entity_id => $label) {
$key = "{$label} ({$entity_id})";
$key = preg_replace('/\\s\\s+/', ' ', str_replace("\n", '', trim(Html::decodeEntities(strip_tags($key)))));
$key = Tags::encode($key);
$matches[] = [
'value' => $key,
'label' => $label,
];
}
}
}
return $matches;
}
}