add context all, to get all relations of contact in ajax call
authorTim Mallezie <tim.mallezie@chiro.be>
Thu, 12 Feb 2015 14:55:29 +0000 (15:55 +0100)
committerTim Mallezie <tim.mallezie@chiro.be>
Thu, 12 Feb 2015 15:03:37 +0000 (16:03 +0100)
CRM/Contact/BAO/Relationship.php

index 6bae9c63be972a8cdad7b48f5df4603d5b3e2950..74c745308e02a2131c85e3bd35feb2739aa31a43 100644 (file)
@@ -39,7 +39,11 @@ class CRM_Contact_BAO_Relationship extends CRM_Contact_DAO_Relationship {
    *
    * @var int
    */
+<<<<<<< HEAD
   const PAST = 1, DISABLED = 2, CURRENT = 4, INACTIVE = 8;
+=======
+  CONST ALL = 0, PAST = 1, DISABLED = 2, CURRENT = 4, INACTIVE = 8;
+>>>>>>> add context all, to get all relations of contact in ajax call
 
   /**
    * Create function. (Use the API instead)
@@ -1754,6 +1758,9 @@ AND cc.sort_name LIKE '%$name%'";
     if ($params['context'] == 'past') {
       $relationshipStatus = CRM_Contact_BAO_Relationship::INACTIVE;
     }
+    else if ($params['context'] == 'all') {
+      $relationshipStatus = CRM_Contact_BAO_Relationship::ALL;
+    }
     else {
       $relationshipStatus = CRM_Contact_BAO_Relationship::CURRENT;
     }