You are here

class EntityAutocompleteMatcher in Open Social 8.5

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  2. 8 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  3. 8.2 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  4. 8.3 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  5. 8.4 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  6. 8.6 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  7. 8.7 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  8. 8.8 modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  9. 10.3.x modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  10. 10.0.x modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  11. 10.1.x modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher
  12. 10.2.x modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php \Drupal\social_core\Entity\EntityAutocompleteMatcher

Class EntityAutocompleteMatcher.

@package Drupal\social_core\Entity

Hierarchy

Expanded class hierarchy of EntityAutocompleteMatcher

File

modules/social_features/social_core/src/Entity/EntityAutocompleteMatcher.php, line 14

Namespace

Drupal\social_core\Entity
View source
class EntityAutocompleteMatcher extends EntityAutocompleteMatcherBase {

  /**
   * {@inheritdoc}
   */
  public function getMatches($target_type, $selection_handler, $selection_settings, $string = '') {
    $matches = [];
    $options = [
      'target_type' => $target_type,
      'handler' => $selection_handler,
      'handler_settings' => $selection_settings,
    ];
    $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) {

          // Skip certain entity_id's that are already a member or a enrollee.
          // We can just add this to our render arrays from now on.
          // '#selection_settings' => [ 'skip_entity' => ['7', '8', '9'] ].
          if (!empty($selection_settings['skip_entity']) && in_array($entity_id, $selection_settings['skip_entity'], FALSE)) {
            continue;
          }
          $key = !empty($selection_settings['hide_id']) ? $label : "{$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);
          $matches[] = [
            'value' => $key,
            'label' => $label,
          ];
        }
      }
    }
    return $matches;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityAutocompleteMatcher::$selectionManager protected property The entity reference selection handler plugin manager.
EntityAutocompleteMatcher::getMatches public function Gets matched labels based on a given search string. Overrides EntityAutocompleteMatcher::getMatches
EntityAutocompleteMatcher::__construct public function Constructs a EntityAutocompleteMatcher object.