Merge pull request #5227 from totten/master-abtest-returnurl
[civicrm-core.git] / api / v3 / Contribution.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
b081365f 29 * This api exposes CiviCRM Contribution records.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
34/**
244bbdd8 35 * Add or update a Contribution.
6a488035 36 *
cf470720 37 * @param array $params
9d32e6f7 38 * Input parameters.
6a488035 39 *
69dbd1ba 40 * @throws API_Exception
a6c01b45 41 * @return array
72b3a70c 42 * Api result array
6a488035
TO
43 */
44function civicrm_api3_contribution_create(&$params) {
45 $values = array();
6a488035 46 _civicrm_api3_custom_format_params($params, $values, 'Contribution');
504a78f6 47 $params = array_merge($params, $values);
48
8cc574cf 49 if (!empty($params['id']) && !empty($params['contribution_status_id'])) {
504a78f6 50 $error = array();
51 //throw error for invalid status change such as setting completed back to pending
52 //@todo this sort of validation belongs in the BAO not the API - if it is not an OK
53 // action it needs to be blocked there. If it is Ok through a form it needs to be OK through the api
54 CRM_Contribute_BAO_Contribution::checkStatusValidation(NULL, $params, $error);
55 if (array_key_exists('contribution_status_id', $error)) {
56 throw new API_Exception($error['contribution_status_id']);
57 }
6a488035 58 }
6a516bd6
DG
59
60 _civicrm_api3_contribution_create_legacy_support_45($params);
61
9d32e6f7 62 // Make sure tax calculation is handled via api.
b5935203 63 $params = CRM_Contribute_BAO_Contribution::checkTaxAmount($params);
ebf2b57b 64
504a78f6 65 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Contribution');
6a488035 66}
11e09c59
TO
67
68/**
0aa0303c
EM
69 * Adjust Metadata for Create action.
70 *
71 * The metadata is used for setting defaults, documentation & validation.
6a488035 72 *
cf470720 73 * @param array $params
b081365f 74 * Array of parameters determined by getfields.
6a488035
TO
75 */
76function _civicrm_api3_contribution_create_spec(&$params) {
77 $params['contact_id']['api.required'] = 1;
78 $params['total_amount']['api.required'] = 1;
53191813 79 $params['payment_instrument_id']['api.aliases'] = array('payment_instrument');
8757a378 80 $params['receive_date']['api.default'] = 'now';
6a488035
TO
81 $params['payment_processor'] = array(
82 'name' => 'payment_processor',
83 'title' => 'Payment Processor ID',
84 'description' => 'ID of payment processor used for this contribution',
85 // field is called payment processor - not payment processor id but can only be one id so
86 // it seems likely someone will fix it up one day to be more consistent - lets alias it from the start
87 'api.aliases' => array('payment_processor_id'),
88 );
89 $params['financial_type_id']['api.aliases'] = array('contribution_type_id', 'contribution_type');
90 $params['financial_type_id']['api.required'] = 1;
91 $params['note'] = array(
92 'name' => 'note',
93 'uniqueName' => 'contribution_note',
94 'title' => 'note',
95 'type' => 2,
96 'description' => 'Associated Note in the notes table',
97 );
98 $params['soft_credit_to'] = array(
99 'name' => 'soft_credit_to',
33a429d4 100 'title' => 'Soft Credit contact ID (legacy)',
6a488035 101 'type' => 1,
33a429d4 102 'description' => 'ID of Contact to be Soft credited to (deprecated - use contribution_soft api)',
6a488035
TO
103 'FKClassName' => 'CRM_Contact_DAO_Contact',
104 );
6a516bd6
DG
105 $params['honor_contact_id'] = array(
106 'name' => 'honor_contact_id',
33a429d4 107 'title' => 'Honoree contact ID (legacy)',
6a516bd6 108 'type' => 1,
33a429d4 109 'description' => 'ID of honoree contact (deprecated - use contribution_soft api)',
6a516bd6
DG
110 'FKClassName' => 'CRM_Contact_DAO_Contact',
111 );
33a429d4
CW
112 $params['honor_type_id'] = array(
113 'name' => 'honor_type_id',
114 'title' => 'Honoree Type (legacy)',
115 'type' => 1,
116 'description' => 'Type of honoree contact (deprecated - use contribution_soft api)',
117 'pseudoconstant' => TRUE,
118 );
6a488035 119 // note this is a recommended option but not adding as a default to avoid
c206647d 120 // creating unnecessary changes for the dev
6a488035
TO
121 $params['skipRecentView'] = array(
122 'name' => 'skipRecentView',
123 'title' => 'Skip adding to recent view',
0900b21e 124 'type' => CRM_Utils_Type::T_BOOLEAN,
6a488035
TO
125 'description' => 'Do not add to recent view (setting this improves performance)',
126 );
127 $params['skipLineItem'] = array(
128 'name' => 'skipLineItem',
129 'title' => 'Skip adding line items',
130 'type' => 1,
131 'api.default' => 0,
132 'description' => 'Do not add line items by default (if you wish to add your own)',
133 );
599c61ac
E
134 $params['batch_id'] = array(
135 'title' => 'Batch',
136 'type' => 1,
137 'description' => 'Batch which relevant transactions should be added to',
138 );
6a488035
TO
139}
140
6a516bd6 141/**
9d32e6f7
EM
142 * Support for schema changes made in 4.5.
143 *
35671d00
TO
144 * The main purpose of the API is to provide integrators a level of stability not provided by
145 * the core code or schema - this means we have to provide support for api calls (where possible)
146 * across schema changes.
dc64d047 147 *
d0997921 148 * @param array $params
35671d00 149 */
9b873358 150function _civicrm_api3_contribution_create_legacy_support_45(&$params) {
6a516bd6 151 //legacy soft credit handling - recommended approach is chaining
9b873358 152 if (!empty($params['soft_credit_to'])) {
33a429d4 153 $params['soft_credit'][] = array(
6a516bd6
DG
154 'contact_id' => $params['soft_credit_to'],
155 'amount' => $params['total_amount'],
21dfd5f5 156 'soft_credit_type_id' => CRM_Core_OptionGroup::getDefaultValue("soft_credit_type"),
33a429d4 157 );
6a516bd6 158 }
9b873358 159 if (!empty($params['honor_contact_id'])) {
33a429d4 160 $params['soft_credit'][] = array(
6a516bd6
DG
161 'contact_id' => $params['honor_contact_id'],
162 'amount' => $params['total_amount'],
21dfd5f5 163 'soft_credit_type_id' => CRM_Utils_Array::value('honor_type_id', $params, CRM_Core_OptionGroup::getValue('soft_credit_type', 'in_honor_of', 'name')),
33a429d4 164 );
6a516bd6
DG
165 }
166}
167
6a488035 168/**
244bbdd8 169 * Delete a Contribution.
6a488035 170 *
cf470720 171 * @param array $params
9d32e6f7 172 * Input parameters.
6a488035 173 *
9d32e6f7 174 * @return array
6a488035
TO
175 */
176function civicrm_api3_contribution_delete($params) {
177
0d8afee2 178 $contributionID = !empty($params['contribution_id']) ? $params['contribution_id'] : $params['id'];
6a488035
TO
179 if (CRM_Contribute_BAO_Contribution::deleteContribution($contributionID)) {
180 return civicrm_api3_create_success(array($contributionID => 1));
181 }
182 else {
183 return civicrm_api3_create_error('Could not delete contribution');
184 }
185}
11e09c59
TO
186
187/**
9d32e6f7
EM
188 * Modify metadata for delete action.
189 *
190 * Legacy support for contribution_id.
191 *
d0997921 192 * @param array $params
6a488035
TO
193 */
194function _civicrm_api3_contribution_delete_spec(&$params) {
195 $params['id']['api.aliases'] = array('contribution_id');
196}
197
198/**
35823763 199 * Retrieve a set of contributions.
6a488035 200 *
cf470720 201 * @param array $params
35823763 202 * Input parameters.
69dbd1ba 203 *
a6c01b45 204 * @return array
16b10e64 205 * Array of contributions, if error an array with an error id and error message
6a488035
TO
206 */
207function civicrm_api3_contribution_get($params) {
208
82f7d8b2 209 $mode = CRM_Contact_BAO_Query::MODE_CONTRIBUTE;
244bbdd8 210 list($dao, $query) = _civicrm_api3_get_query_object($params, $mode, 'Contribution');
6a488035
TO
211
212 $contribution = array();
213 while ($dao->fetch()) {
214 //CRM-8662
76ca3345 215 $contribution_details = $query->store($dao);
35671d00 216 $softContribution = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($dao->contribution_id, TRUE);
76ca3345 217 $contribution[$dao->contribution_id] = array_merge($contribution_details, $softContribution);
76ca3345
KJ
218 // format soft credit for backward compatibility
219 _civicrm_api3_format_soft_credit($contribution[$dao->contribution_id]);
6a488035 220 }
244bbdd8 221 return civicrm_api3_create_success($contribution, $params, 'Contribution', 'get', $dao);
6a488035 222}
11e09c59 223
76ca3345 224/**
1747ab99
EM
225 * This function is used to format the soft credit for backward compatibility.
226 *
227 * As of v4.4 we support multiple soft credit, so now contribution returns array with 'soft_credit' as key
76ca3345 228 * but we still return first soft credit as a part of contribution array
dc64d047 229 *
645ee340 230 * @param $contribution
76ca3345
KJ
231 */
232function _civicrm_api3_format_soft_credit(&$contribution) {
233 if (!empty($contribution['soft_credit'])) {
234 $contribution['soft_credit_to'] = $contribution['soft_credit'][1]['contact_id'];
235 $contribution['soft_credit_id'] = $contribution['soft_credit'][1]['soft_credit_id'];
236 }
237}
238
11e09c59 239/**
1747ab99 240 * Adjust Metadata for Get action.
6a488035 241 *
0aa0303c
EM
242 * The metadata is used for setting defaults, documentation & validation.
243 *
cf470720 244 * @param array $params
b081365f 245 * Array of parameters determined by getfields.
6a488035
TO
246 */
247function _civicrm_api3_contribution_get_spec(&$params) {
248 $params['contribution_test']['api.default'] = 0;
4c41ecb2 249 $params['contribution_test']['title'] = 'Get Test Contributions?';
6a488035
TO
250 $params['financial_type_id']['api.aliases'] = array('contribution_type_id');
251 $params['contact_id'] = $params['contribution_contact_id'];
252 $params['contact_id']['api.aliases'] = array('contribution_contact_id');
253 unset($params['contribution_contact_id']);
254}
255
256/**
1747ab99
EM
257 * Legacy handling for contribution parameters.
258 *
259 * Take the input parameter list as specified in the data model and
260 * convert it into the same format that we use in QF and BAO object.
6a488035 261 *
cf470720 262 * @param array $params
c23f45d3 263 * property name/value pairs to insert in new contact.
cf470720
TO
264 * @param array $values
265 * The reformatted properties that we can use internally.
6a488035 266 *
c23f45d3 267 * @return array
6a488035 268 */
c23f45d3 269function _civicrm_api3_contribute_format_params($params, &$values) {
35671d00 270 //legacy way of formatting from v2 api - v3 way is to define metadata & do it in the api layer
6a488035 271 _civicrm_api3_filter_fields_for_bao('Contribution', $params, $values);
6a488035
TO
272 return array();
273}
274
16c0ec8d 275/**
1747ab99 276 * Adjust Metadata for Transact action.
16c0ec8d 277 *
0aa0303c
EM
278 * The metadata is used for setting defaults, documentation & validation.
279 *
cf470720 280 * @param array $params
b081365f 281 * Array of parameters determined by getfields.
16c0ec8d
CW
282 */
283function _civicrm_api3_contribution_transact_spec(&$params) {
244bbdd8 284 $fields = civicrm_api3('Contribution', 'getfields', array('action' => 'create'));
4c41ecb2 285 $params = array_merge($params, $fields['values']);
16c0ec8d
CW
286 $params['receive_date']['api.default'] = 'now';
287}
288
6a488035
TO
289/**
290 * Process a transaction and record it against the contact.
291 *
cf470720 292 * @param array $params
1747ab99 293 * Input parameters.
6a488035 294 *
a6c01b45 295 * @return array
c23f45d3 296 * contribution of created or updated record (or a civicrm error)
6a488035
TO
297 */
298function civicrm_api3_contribution_transact($params) {
16c0ec8d 299 // Set some params specific to payment processing
8319cf11
EM
300 // @todo - fix this function - none of the results checked by civicrm_error would ever be an array with
301 // 'is_error' set
302 // also trxn_id is not saved.
303 // but since there is no test it's not desirable to jump in & make the obvious changes.
16c0ec8d
CW
304 $params['payment_processor_mode'] = empty($params['is_test']) ? 'live' : 'test';
305 $params['amount'] = $params['total_amount'];
6a488035
TO
306 if (!isset($params['net_amount'])) {
307 $params['net_amount'] = $params['amount'];
308 }
6a488035
TO
309 if (!isset($params['invoiceID']) && isset($params['invoice_id'])) {
310 $params['invoiceID'] = $params['invoice_id'];
311 }
312
be06e507
CW
313 // Some payment processors expect a unique invoice_id - generate one if not supplied
314 $params['invoice_id'] = CRM_Utils_Array::value('invoice_id', $params, md5(uniqid(rand(), TRUE)));
315
16c0ec8d 316 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($params['payment_processor'], $params['payment_processor_mode']);
6a488035
TO
317 if (civicrm_error($paymentProcessor)) {
318 return $paymentProcessor;
319 }
320
16c0ec8d 321 $payment = CRM_Core_Payment::singleton($params['payment_processor_mode'], $paymentProcessor);
6a488035
TO
322 if (civicrm_error($payment)) {
323 return $payment;
324 }
325
8319cf11 326 $transaction = $payment->doPayment($params);
6a488035 327
26ad2b72 328 $params['payment_instrument_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType', $paymentProcessor['payment_processor_type_id'], 'payment_type') == 1 ? 'Credit Card' : 'Debit Card';
244bbdd8 329 return civicrm_api('Contribution', 'create', $params);
6a488035 330}
69dbd1ba 331
6a488035 332/**
1747ab99
EM
333 * Send a contribution confirmation (receipt or invoice).
334 *
6a488035
TO
335 * The appropriate online template will be used (the existence of related objects
336 * (e.g. memberships ) will affect this selection
69dbd1ba 337 *
cf470720
TO
338 * @param array $params
339 * Input parameters.
69dbd1ba
EM
340 *
341 * @throws Exception
6a488035
TO
342 */
343function civicrm_api3_contribution_sendconfirmation($params) {
344 $contribution = new CRM_Contribute_BAO_Contribution();
345 $contribution->id = $params['id'];
acb1052e 346 if (!$contribution->find(TRUE)) {
6a488035 347 throw new Exception('Contribution does not exist');
35671d00 348 }
6a488035 349 $input = $ids = $cvalues = array('receipt_from_email' => $params['receipt_from_email']);
76ca3345
KJ
350 $contribution->loadRelatedObjects($input, $ids, FALSE, TRUE);
351 $contribution->composeMessageArray($input, $ids, $cvalues, FALSE, FALSE);
6a488035
TO
352}
353
11e09c59 354/**
1747ab99 355 * Adjust Metadata for sendconfirmation action.
6a488035 356 *
0aa0303c
EM
357 * The metadata is used for setting defaults, documentation & validation.
358 *
cf470720 359 * @param array $params
b081365f 360 * Array of parameters determined by getfields.
6a488035
TO
361 */
362function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
363 $params['id'] = array(
364 'api.required' => 1,
21dfd5f5 365 'title' => 'Contribution ID',
6a488035
TO
366 );
367 $params['receipt_from_email'] = array(
35671d00 368 'api.required' => 1,
6a0cf2c6
CW
369 'title' => 'From Email address (string) required until someone provides a patch :-)',
370 );
371 $params['receipt_from_name'] = array(
372 'title' => 'From Name (string)',
373 );
374 $params['cc_receipt'] = array(
375 'title' => 'CC Email address (string)',
376 );
377 $params['bcc_receipt'] = array(
378 'title' => 'BCC Email address (string)',
379 );
380 $params['receipt_text'] = array(
381 'title' => 'Message (string)',
6a488035
TO
382 );
383}
0efa8efe 384
385/**
1747ab99
EM
386 * Complete an existing (pending) transaction.
387 *
388 * This will update related entities (participant, membership, pledge etc)
389 * and take any complete actions from the contribution page (e.g. send receipt).
0efa8efe 390 *
391 * @todo - most of this should live in the BAO layer but as we want it to be an addition
392 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
393 *
cf470720
TO
394 * @param array $params
395 * Input parameters.
69dbd1ba
EM
396 *
397 * @throws API_Exception
acb1052e 398 * Api result array.
0efa8efe 399 */
400function civicrm_api3_contribution_completetransaction(&$params) {
401
402 $input = $ids = array();
403 $contribution = new CRM_Contribute_BAO_Contribution();
404 $contribution->id = $params['id'];
405 $contribution->find(TRUE);
9b873358 406 if (!$contribution->id == $params['id']) {
0efa8efe 407 throw new API_Exception('A valid contribution ID is required', 'invalid_data');
408 }
409 try {
9b873358 410 if (!$contribution->loadRelatedObjects($input, $ids, FALSE, TRUE)) {
0efa8efe 411 throw new API_Exception('failed to load related objects');
412 }
1ba809f7 413 elseif ($contribution->contribution_status_id == CRM_Core_OptionGroup::getValue('contribution_status', 'Completed', 'name')) {
9e2ee07b
EM
414 throw new API_Exception(ts('Contribution already completed'));
415 }
d97c96dc
EM
416 $input['trxn_id'] = !empty($params['trxn_id']) ? $params['trxn_id'] : $contribution->trxn_id;
417 $params = _ipn_process_transaction($params, $contribution, $input, $ids);
0efa8efe 418 }
0e37ad72 419 catch(Exception $e) {
0efa8efe 420 throw new API_Exception('failed to load related objects' . $e->getMessage() . "\n" . $e->getTraceAsString());
421 }
422}
423
aa1b1481 424/**
9d32e6f7
EM
425 * Provide function metadata.
426 *
c490a46a 427 * @param array $params
aa1b1481 428 */
3dfbdece 429function _civicrm_api3_contribution_completetransaction_spec(&$params) {
eac25df2
EM
430 $params['id'] = array(
431 'title' => 'Contribution ID',
432 'type' => CRM_Utils_Type::T_INT,
433 'api.required' => TRUE,
434 );
435 $params['trxn_id'] = array(
436 'title' => 'Transaction ID',
437 'type' => CRM_Utils_Type::T_STRING,
438 );
439 $params['is_email_receipt'] = array(
440 'title' => 'Send email Receipt?',
441 'type' => CRM_Utils_Type::T_BOOLEAN,
442 );
0efa8efe 443}
5fa7c328
EM
444
445/**
446 * Complete an existing (pending) transaction.
447 *
448 * This will update related entities (participant, membership, pledge etc)
449 * and take any complete actions from the contribution page (e.g. send receipt).
450 *
451 * @todo - most of this should live in the BAO layer but as we want it to be an addition
452 * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
453 *
454 * @param array $params
455 * Input parameters.
456 *
457 * @throws API_Exception
458 * Api result array.
459 */
460function civicrm_api3_contribution_repeattransaction(&$params) {
461 $input = $ids = array();
462 $contribution = new CRM_Contribute_BAO_Contribution();
463 $contribution->id = $params['original_contribution_id'];
464 if (!$contribution->find(TRUE)) {
465 throw new API_Exception(
466 'A valid original contribution ID is required', 'invalid_data');
467 }
d97c96dc 468 $original_contribution = clone $contribution;
5fa7c328
EM
469 try {
470 if (!$contribution->loadRelatedObjects($input, $ids, FALSE, TRUE)) {
471 throw new API_Exception('failed to load related objects');
472 }
d97c96dc
EM
473
474 unset($contribution->id, $contribution->receive_date, $contribution->invoice_id);
475 $contribution->contribution_status_id = $params['contribution_status_id'];
5fa7c328 476 $contribution->receive_date = $params['receive_date'];
d97c96dc
EM
477 // Have not set trxn_id to required but an e-notice if not provided seems appropriate.
478 $input['trxn_id'] = $params['trxn_id'];
479
480 $params = _ipn_process_transaction($params, $contribution, $input, $ids, $original_contribution);
5fa7c328
EM
481 }
482 catch(Exception $e) {
483 throw new API_Exception('failed to load related objects' . $e->getMessage() . "\n" . $e->getTraceAsString());
484 }
485}
486
487/**
488 * Calls IPN complete transaction for completing or repeating a transaction.
489 *
490 * The IPN function is overloaded with two purposes - this is simply a wrapper for that
491 * when separating them in the api layer.
492 *
493 * @param array $params
494 * @param CRM_Contribute_BAO_Contribution $contribution
495 * @param array $input
496 *
497 * @param array $ids
498 *
d97c96dc
EM
499 * @param CRM_Contribute_BAO_Contribution $firstContribution
500 *
5fa7c328
EM
501 * @return mixed
502 */
d97c96dc 503function _ipn_process_transaction(&$params, $contribution, $input, $ids, $firstContribution = NULL) {
5fa7c328
EM
504 $objects = $contribution->_relatedObjects;
505 $objects['contribution'] = &$contribution;
d97c96dc
EM
506
507 if ($firstContribution) {
508 $objects['first_contribution'] = $firstContribution;
509 }
5fa7c328
EM
510 $input['component'] = $contribution->_component;
511 $input['is_test'] = $contribution->is_test;
5fa7c328
EM
512 $input['amount'] = $contribution->total_amount;
513 if (isset($params['is_email_receipt'])) {
514 $input['is_email_receipt'] = $params['is_email_receipt'];
515 }
516 // @todo required for base ipn but problematic as api layer handles this
517 $transaction = new CRM_Core_Transaction();
518 $ipn = new CRM_Core_Payment_BaseIPN();
519 $ipn->completeTransaction($input, $ids, $objects, $transaction, !empty($contribution->contribution_recur_id));
520 return $params;
521}
522
523/**
524 * Provide function metadata.
525 *
526 * @param array $params
527 */
528function _civicrm_api3_contribution_repeattransaction_spec(&$params) {
529 $params['original_contribution_id'] = array(
530 'title' => 'Original Contribution ID',
531 'type' => CRM_Utils_Type::T_INT,
532 'api.required' => TRUE,
533 );
534 $params['trxn_id'] = array(
535 'title' => 'Transaction ID',
536 'type' => CRM_Utils_Type::T_STRING,
537 );
538 $params['is_email_receipt'] = array(
539 'title' => 'Send email Receipt?',
540 'type' => CRM_Utils_Type::T_BOOLEAN,
541 );
542 $params['contribution_status_id'] = array(
543 'title' => 'Contribution Status ID',
d97c96dc 544 'name' => 'contribution_status_id',
5fa7c328
EM
545 'type' => CRM_Utils_Type::T_INT,
546 'pseudoconstant' => array(
547 'optionGroupName' => 'contribution_status',
548 ),
549 'api.required' => TRUE,
550 );
551 $params['receive_date'] = array(
552 'title' => 'Contribution Receive Date',
d97c96dc 553 'name' => 'receive_date',
5fa7c328
EM
554 'type' => CRM_Utils_Type::T_DATE,
555 'api.default' => 'now',
556 );
d97c96dc
EM
557 $params['trxn_id'] = array(
558 'title' => 'Transaction ID',
559 'name' => 'trxn_id',
560 'type' => CRM_Utils_Type::T_STRING,
561 );
562 $params['payment_processor_id'] = array(
563 'description' => ts('Payment processor ID, will be loaded from contribution_recur if not provided'),
564 'title' => 'Payment processor ID',
565 'name' => 'payment_processor_id',
566 'type' => CRM_Utils_Type::T_INT,
567 );
5fa7c328 568}