BusinessRulesItemSelection.php in Business Rules 2.x
File
src/Plugin/EntityReferenceSelection/BusinessRulesItemSelection.php
View source
<?php
namespace Drupal\business_rules\Plugin\EntityReferenceSelection;
use Drupal\Component\Utility\Html;
use Drupal\Core\Entity\Plugin\EntityReferenceSelection\DefaultSelection;
class BusinessRulesItemSelection extends DefaultSelection {
public function getReferenceableEntities($match = NULL, $match_operator = 'CONTAINS', $limit = 0) {
$target_type = $this
->getConfiguration()['target_type'];
$query = parent::buildEntityQuery($match, $match_operator);
$handler_settings = $this->configuration['handler_settings'];
if (isset($handler_settings['filter'])) {
$filter_settings = $handler_settings['filter'];
foreach ($filter_settings as $field_name => $value) {
$query
->condition($field_name, $value, '=');
}
}
if ($limit > 0) {
$query
->range(0, $limit);
}
$result = $query
->execute();
if (empty($result)) {
return [];
}
$options = [];
$entities = $this->entityManager
->getStorage($target_type)
->loadMultiple($result);
foreach ($entities as $entity_id => $entity) {
$bundle = $entity
->bundle();
$options[$bundle][$entity_id] = Html::escape($this->entityManager
->getTranslationFromContext($entity)
->label());
}
return $options;
}
}