X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FProfile.php;h=7ed5c434da0e09cf4f458d603c3b81636a094404;hb=85bb0909cffd925f4cd5c0022a68a1ff74d3ad8e;hp=9f5849e303980cadc7d1686834b8c9177d039a90;hpb=6643a63b47c9607cdc5f14a739cf7c7cfe55d726;p=civicrm-core.git diff --git a/api/v3/Profile.php b/api/v3/Profile.php index 9f5849e303..7ed5c434da 100644 --- a/api/v3/Profile.php +++ b/api/v3/Profile.php @@ -138,6 +138,9 @@ function civicrm_api3_profile_get($params) { } } +/** + * @param $params + */ function _civicrm_api3_profile_get_spec(&$params) { $params['profile_id']['api.required'] = TRUE; $params['contact_id']['description'] = 'If no contact is specified an array of defaults will be returned'; @@ -599,6 +602,12 @@ function _civicrm_api3_buildprofile_submitfields($profileID, $optionsBehaviour = return $profileFields[$profileID]; } +/** + * @param $a + * @param $b + * + * @return bool + */ function _civicrm_api3_order_by_weight($a, $b) { return CRM_Utils_Array::value('weight', $b) < CRM_Utils_Array::value('weight', $a) ? TRUE : FALSE; } @@ -677,7 +686,12 @@ function _civicrm_api3_map_profile_fields_to_entity(&$field) { /** * @todo this should be handled by the api wrapper using getfields info - need to check - * how we add a a pseudoconstant to this pseudoapi to make that work + * how we add a a pseudoconstant to this pseudo api to make that work + * + * @param $profileID + * + * @return array + * @throws CiviCRM_API3_Exception */ function _civicrm_api3_profile_getProfileID($profileID) { if(!empty($profileID) && strtolower($profileID) != 'billing' && !is_numeric($profileID)) {