rocketship_paragraphs-5.0.0-alpha8/src/Matcher/EntityAutocompleteMatcher.php
src/Matcher/EntityAutocompleteMatcher.php
<?php
namespace Drupal\rocketship_paragraphs\Matcher;
use Drupal\Component\Utility\Html;
use Drupal\Component\Utility\Tags;
use Drupal\Core\Entity\EntityAutocompleteMatcher as CoreEntityAutocompleteMatcher;
class EntityAutocompleteMatcher extends CoreEntityAutocompleteMatcher {
/**
* Gets matched labels based on a given search string.
*/
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)) {
// Get an array of matching entities.
$match_operator = !empty($selection_settings['match_operator']) ? $selection_settings['match_operator'] : 'CONTAINS';
$entity_labels = $handler->getReferenceableEntities($string, $match_operator, 10);
// Loop through the entities and convert them into autocomplete output.
foreach ($entity_labels as $values) {
foreach ($values as $entity_id => $label) {
$entity = \Drupal::entityTypeManager()
->getStorage($target_type)
->load($entity_id);
$entity = \Drupal::service('entity.repository')
->getTranslationFromContext($entity);
$type = !empty($entity->type->entity) ? $entity->type->entity->label() : $entity->bundle();
$status = '';
if ($entity->getEntityType()->id() == 'node') {
$status = ($entity->isPublished()) ? ", Published" : ", Unpublished";
}
$key = $label . ' (' . $entity_id . ')';
// Strip things like starting/trailing white spaces, line breaks and tags.
$key = preg_replace('/\s\s+/', ' ', str_replace("\n", '', trim(Html::decodeEntities(strip_tags($key)))));
// Names containing commas or quotes must be wrapped in quotes.
$key = Tags::encode($key);
$label = '<span class="ui-menu-item-wrapper__title">' . $label . ' (' . $entity_id . ')</span><span class="ui-menu-item-wrapper__type">[' . $type . ']</span>';
$matches[] = ['value' => $key, 'label' => $label];
}
}
}
return $matches;
}
}
