Merge in 5.11
[civicrm-core.git] / CRM / Activity / BAO / Activity.php
index e4bee42129fa3eefb4bed8f704c35595f223544a..090ef3b103f6d54bd5bad1201c50fdf713292dcc 100644 (file)
@@ -3228,4 +3228,14 @@ INNER JOIN  civicrm_option_group grp ON (grp.id = option_group_id AND grp.name =
     return FALSE;
   }
 
+  /**
+   * @return array
+   */
+  public static function getEntityRefFilters() {
+    return [
+      ['key' => 'activity_type_id', 'value' => ts('Activity Type')],
+      ['key' => 'status_id', 'value' => ts('Activity Status')],
+    ];
+  }
+
 }