You are here

function EntityFieldQuery::get_result_entities in EntityFieldQuery Views Backend 8

File

src/Plugin/views/query/EntityFieldQuery.php, line 317

Class

EntityFieldQuery
Views query plugin for an SQL query.

Namespace

Drupal\efq_views\Plugin\views\query

Code

function get_result_entities($results, $relationship = NULL) {
  $entity = reset($results);
  return array(
    $entity->entity_type,
    $results,
  );
}