registration_handler_relationship.inc in Entity Registration 7
Contains relationship handlers.
File
modules/registration_views/includes/registration_handler_relationship.incView source
<?php
/**
* @file
* Contains relationship handlers.
*/
/**
* Specialized relationship handler associating registrations and their host
* entity.
*
*/
class registration_handler_relationship extends views_handler_relationship {
/**
* Called to implement a relationship in a query.
*/
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();
}
}
Classes
Name | Description |
---|---|
registration_handler_relationship | Specialized relationship handler associating registrations and their host entity. |