function system_query_entity_reference_alter in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/system.module \system_query_entity_reference_alter()
Implements hook_query_TAG_alter() for entity reference selection handlers.
File
- core/
modules/ system/ system.module, line 1433 - Configuration system that lets administrators modify the workings of the site.
Code
function system_query_entity_reference_alter(AlterableInterface $query) {
$handler = $query
->getMetadata('entity_reference_selection_handler');
$handler
->entityQueryAlter($query);
}