From 04dd49e6000501f42e36ee39237a1ff0de85c49d Mon Sep 17 00:00:00 2001 From: eileenmcnaugton Date: Thu, 13 Aug 2015 11:35:18 +1200 Subject: [PATCH] CRM-16036 - remove getfields from mailing test as it is producing incorrect results for the non-deprecated api --- api/v3/MailingGroup.php | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/api/v3/MailingGroup.php b/api/v3/MailingGroup.php index 7f973036f2..ec9b6b7cac 100644 --- a/api/v3/MailingGroup.php +++ b/api/v3/MailingGroup.php @@ -130,30 +130,3 @@ function civicrm_api3_mailing_group_get($params) { function civicrm_api3_mailing_group_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); } - -/** - * Get metadata for mailing group functions. - * - * @param array $params - * - * @return array - */ -function civicrm_api3_mailing_group_getfields($params) { - $dao = _civicrm_api3_get_DAO('Subscribe'); - $d = new $dao(); - $fields = $d->fields(); - $d->free(); - - $dao = _civicrm_api3_get_DAO('Unsubscribe'); - $d = new $dao(); - $fields = $fields + $d->fields(); - $d->free(); - - // CRM-13830 - prevent the api wrapper from helping out with pseudoconstants - // Since these fields don't belong to this entity it will fail - foreach ($fields as &$field) { - unset($field['pseudoconstant']); - } - - return civicrm_api3_create_success($fields, $params, 'MailingGroup', 'getfields'); -} -- 2.25.1