You are here

class notifications_views_handler_relationship in Notifications 6

Same name and namespace in other branches
  1. 6.4 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
  2. 6.2 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
  3. 6.3 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
  4. 7 notifications_views/includes/notifications_views_handler_relationship.inc \notifications_views_handler_relationship

Hierarchy

Expanded class hierarchy of notifications_views_handler_relationship

File

notifications_views/notifications_views_handler_relationship.inc, line 2

View source
class notifications_views_handler_relationship extends views_handler_relationship {
  function query() {
    $oldfield = $this->field;
    $this->field = $this->real_field;
    parent::query();
    $this->field = $oldfield;
  }

}

Members