add relationshiptype filter to ajax getcontactrelationships call
[civicrm-core.git] / CRM / Contact / Page / AJAX.php
index 0ac35bd7a0ad785f67c368d99d93cb69e7f0bcbe..55bcf0874b54edb31473c90c329fc169b00a201d 100644 (file)
@@ -1038,6 +1038,7 @@ LIMIT {$offset}, {$rowCount}
   public static function getContactRelationships() {
     $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
     $context = CRM_Utils_Type::escape($_GET['context'], 'String');
+    $relationship_type_id = CRM_Utils_Type::escape($_GET['relationship_type_id'], 'Integer');
 
     if (!CRM_Contact_BAO_Contact_Permission::allow($contactID)) {
       return CRM_Utils_System::permissionDenied();
@@ -1073,6 +1074,7 @@ LIMIT {$offset}, {$rowCount}
 
     $params['contact_id'] = $contactID;
     $params['context'] = $context;
+    $params['relationship_type_id'] = $relationship_type_id;
 
     // get the contact relationships
     $relationships = CRM_Contact_BAO_Relationship::getContactRelationshipSelector($params);