function QueryPluginBase::load_entities in Views (for Drupal 7) 8.3
Loads all entities contained in the passed-in $results. . If the entity belongs to the base table, then it gets stored in $result->_entity. Otherwise, it gets stored in $result->_relationship_entities[$relationship_id];
Query plugins that don't support entities can leave the method empty.
1 method overrides QueryPluginBase::load_entities()
- Sql::load_entities in lib/
Drupal/ views/ Plugin/ views/ query/ Sql.php - Loads all entities contained in the passed-in $results. . If the entity belongs to the base table, then it gets stored in $result->_entity. Otherwise, it gets stored in $result->_relationship_entities[$relationship_id];
File
- lib/
Drupal/ views/ Plugin/ views/ query/ QueryPluginBase.php, line 165 - Definition of Drupal\views\Plugin\views\query\QueryPluginBase.
Class
- QueryPluginBase
- @todo.
Namespace
Drupal\views\Plugin\views\queryCode
function load_entities(&$results) {
}