Merge pull request #18268 from sunilpawar/report_47
[civicrm-core.git] / CRM / Core / SelectValues.php
index 4fec22c230d93ea24a4aea85d8865c09e4880c9c..f7d22c826a1d9182fd7a596f98ed7a847640554e 100644 (file)
@@ -1194,4 +1194,14 @@ class CRM_Core_SelectValues {
     ];
   }
 
+  /**
+   * @return array
+   */
+  public static function relationshipOrientation() {
+    return [
+      'a_b' => ts('A to B'),
+      'b_a' => ts('B to A'),
+    ];
+  }
+
 }