From f34031fcaa51b41e98a18b981d1e8c6820fe9e58 Mon Sep 17 00:00:00 2001 From: Yashodha Chaku Date: Wed, 20 Sep 2017 07:34:31 +0530 Subject: [PATCH] CRM-21170 - Provide option to filter by contact id & external id (#10966) * CRM-21170 - Provide option to filter by contact id & external id --- CRM/Core/Resources.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Core/Resources.php b/CRM/Core/Resources.php index 68a2a7fde702..f8c00772ae59 100644 --- a/CRM/Core/Resources.php +++ b/CRM/Core/Resources.php @@ -840,6 +840,8 @@ public static function getEntityRefFilters() { array('key' => 'country', 'value' => ts('Country'), 'entity' => 'address'), array('key' => 'gender_id', 'value' => ts('Gender')), array('key' => 'is_deceased', 'value' => ts('Deceased')), + array('key' => 'contact_id', 'value' => ts('Contact ID'), 'type' => 'text'), + array('key' => 'external_identifier', 'value' => ts('External ID'), 'type' => 'text'), array('key' => 'source', 'value' => ts('Contact Source'), 'type' => 'text'), );