Merge pull request #18268 from sunilpawar/report_47
[civicrm-core.git] / CRM / Core / SelectValues.php
index 02d654549993febffbd88ba6e8b56fb5629ddec3..f7d22c826a1d9182fd7a596f98ed7a847640554e 100644 (file)
@@ -16,8 +16,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC https://civicrm.org/licensing
- * $Id$
- *
  */
 class CRM_Core_SelectValues {
 
@@ -1196,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'),
+    ];
+  }
+
 }