X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FProfile.php;h=4f337da33c0f1596ec8d4f15b096205cd6c8a644;hb=95e3f3974e8e214529fbaed0fbd598e20d8ff64c;hp=385d5c6673250fa672f4fbed2f3c7c2316098e7a;hpb=ebe9a984da7a768d21bcd99f33d28bde4cf0597f;p=civicrm-core.git diff --git a/api/v3/Profile.php b/api/v3/Profile.php index 385d5c6673..4f337da33c 100644 --- a/api/v3/Profile.php +++ b/api/v3/Profile.php @@ -2,9 +2,9 @@ /* +--------------------------------------------------------------------+ - | CiviCRM version 4.4 | + | CiviCRM version 4.5 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2013 | + | Copyright CiviCRM LLC (c) 2004-2014 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -31,7 +31,7 @@ * * @package CiviCRM_APIv3 * @subpackage API_ActivityProfile - * @copyright CiviCRM LLC (c) 2004-2013 + * @copyright CiviCRM LLC (c) 2004-2014 * @version $Id: ActivityProfile.php 30486 2011-05-20 16:12:09Z rajan $ * */ @@ -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; }