You are here

class BatEventTypeAutocompleteMatcher in Booking and Availability Management Tools for Drupal 8

Matcher class to get autocompletion results for entity reference.

Hierarchy

Expanded class hierarchy of BatEventTypeAutocompleteMatcher

1 string reference to 'BatEventTypeAutocompleteMatcher'
bat_calendar_reference.services.yml in modules/bat_calendar_reference/bat_calendar_reference.services.yml
modules/bat_calendar_reference/bat_calendar_reference.services.yml
1 service uses BatEventTypeAutocompleteMatcher
entity.bat_event_type_autocomplete_matcher in modules/bat_calendar_reference/bat_calendar_reference.services.yml
Drupal\bat_calendar_reference\BatEventTypeAutocompleteMatcher

File

modules/bat_calendar_reference/src/BatEventTypeAutocompleteMatcher.php, line 12

Namespace

Drupal\bat_calendar_reference
View source
class BatEventTypeAutocompleteMatcher extends EntityAutocompleteMatcher {

  /**
   * {@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 (!empty($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) {
          $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);
          if (isset($selection_settings['event_types'])) {
            if (in_array($entity_id, $selection_settings['event_types'])) {
              $matches[] = [
                'value' => $key,
                'label' => $label,
              ];
            }
          }
          else {
            $matches[] = [
              'value' => $key,
              'label' => $label,
            ];
          }
        }
      }
    }
    return $matches;
  }

}

Members

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