You are here

class notifications_views_handler_relationship in Notifications 6.4

Same name and namespace in other branches
  1. 6 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

1 string reference to 'notifications_views_handler_relationship'
notifications_views_views_data in notifications_views/notifications_views.module
Implementation of hook_views_data().

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