class notifications_views_handler_relationship in Notifications 6
Same name and namespace in other branches
- 6.4 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
- 6.2 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
- 6.3 notifications_views/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
- 7 notifications_views/includes/notifications_views_handler_relationship.inc \notifications_views_handler_relationship
Hierarchy
- class \notifications_views_handler_relationship extends \views_handler_relationship
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;
}
}