You are here

notifications_views_handler_relationship.inc in Notifications 7

File

notifications_views/includes/notifications_views_handler_relationship.inc
View source
<?php

// @TODO: Review/rework this handler.
class notifications_views_handler_relationship extends views_handler_relationship {
  function query() {
    $oldfield = $this->field;
    $this->field = $this->real_field;
    parent::query();
    $this->field = $oldfield;
  }

}