You are here

class registration_handler_relationship in Entity Registration 8

Same name in this branch
  1. 8 src/registration_handler_relationship.php \Drupal\registration\registration_handler_relationship
  2. 8 modules/registration_views/includes/registration_handler_relationship.inc \registration_handler_relationship
Same name and namespace in other branches
  1. 8.2 modules/registration_views/includes/registration_handler_relationship.inc \registration_handler_relationship
  2. 7.2 modules/registration_views/includes/registration_handler_relationship.inc \registration_handler_relationship
  3. 7 modules/registration_views/includes/registration_handler_relationship.inc \registration_handler_relationship

Specialized relationship handler associating registrations and their host entity.

Hierarchy

Expanded class hierarchy of registration_handler_relationship

1 string reference to 'registration_handler_relationship'
registration_views_views_data_alter in modules/registration_views/registration_views.module
Implements hook_views_data_alter().

File

modules/registration_views/includes/registration_handler_relationship.inc, line 13
Contains relationship handlers.

View source
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();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
registration_handler_relationship::query function Called to implement a relationship in a query.