value pairs. If $params is set * as null, all price_fields will be returned (default limit is 25) * * @return array Array of matching price_fields * {@getfields price_field_get} * @access public */ function civicrm_api3_price_field_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); } /** * delete an existing price_field * * This method is used to delete any existing price_field. id of the group * to be deleted is required field in $params array * * @param array $params array containing id of the group * to be deleted * * @return array returns flag true if successfull, error message otherwise * {@getfields price_field_delete} * @access public */ function civicrm_api3_price_field_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); }