You are here

registration_handler_relationship.php in Entity Registration 8

Same filename and directory in other branches
  1. 8.2 src/registration_handler_relationship.php

File

src/registration_handler_relationship.php
View source
<?php

namespace Drupal\registration;


/**
 * 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

Namesort descending Description
registration_handler_relationship Specialized relationship handler associating registrations and their host entity.