X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FPriceFieldValue.php;h=37a93741d375e1d7c30cc5d3d23a248da33bfe20;hb=4c12c9b771bde931077f56685b632bd34504b238;hp=76537cd0f1bb575e675aadc414b566833f0dff5b;hpb=718e934e2c6fa496ee84f56502d73cae125b1331;p=civicrm-core.git diff --git a/api/v3/PriceFieldValue.php b/api/v3/PriceFieldValue.php index 76537cd0f1..37a93741d3 100644 --- a/api/v3/PriceFieldValue.php +++ b/api/v3/PriceFieldValue.php @@ -1,5 +1,4 @@ id]); - return civicrm_api3_create_success($values, $params, 'price_field_value', 'create', $bao); + return civicrm_api3_create_success($values, $params, 'PriceFieldValue', 'create', $bao); } /** - * Adjust Metadata for Create action + * Adjust Metadata for Create action. + * + * The metadata is used for setting defaults, documentation & validation. * - * The metadata is used for setting defaults, documentation & validation - * @param array $params array or parameters determined by getfields + * @param array $params + * Array of parameters determined by getfields. */ function _civicrm_api3_price_field_value_create_spec(&$params) { $params['price_field_id']['api.required'] = TRUE; @@ -74,31 +74,29 @@ function _civicrm_api3_price_field_value_create_spec(&$params) { } /** - * Returns array of price_field_values matching a set of one or more group properties + * Returns array of PriceFieldValues matching a set of one or more group properties. * - * @param array $params Array of one or more valid property_name=>value pairs. If $params is set - * as null, all price_field_values will be returned (default limit is 25) + * @param array $params + * Array of one or more valid property_name=>value pairs. If $params is set. + * as null, all price_field_values will be returned (default limit is 25) * - * @return array Array of matching price_field_values - * {@getfields price_field_value_get} - * @access public + * @return array + * API result array. */ function civicrm_api3_price_field_value_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); } /** - * delete an existing price_field_value + * Delete an existing PriceFieldValue. * - * This method is used to delete any existing price_field_value. id of the group - * to be deleted is required field in $params array + * This method is used to delete any existing PriceFieldValue given its id. * - * @param array $params array containing id of the group - * to be deleted + * @param array $params + * Array containing id of the group to be deleted. * - * @return array API result array - * {@getfields price_field_value_delete} - * @access public + * @return array + * API result array. */ function civicrm_api3_price_field_value_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);