function registration_handler_relationship::query in Entity Registration 8
Same name in this branch
- 8 src/registration_handler_relationship.php \Drupal\registration\registration_handler_relationship::query()
- 8 modules/registration_views/includes/registration_handler_relationship.inc \registration_handler_relationship::query()
Same name and namespace in other branches
- 8.2 src/registration_handler_relationship.php \Drupal\registration\registration_handler_relationship::query()
Called to implement a relationship in a query.
File
- src/
registration_handler_relationship.php, line 14
Class
- registration_handler_relationship
- Specialized relationship handler associating registrations and their host entity.
Namespace
Drupal\registrationCode
function query() {
$entity = $this->definition['entity'];
if (isset($this->definition['table'])) {
$this->definition['extra'][] = array(
'table' => $this->definition['table'],
'field' => 'entity_type',
'value' => $this->definition['entity'],
);
}
else {
$this->definition['extra'][] = array(
'field' => 'entity_type',
'value' => $this->definition['entity'],
);
}
parent::query();
}