drupal-civicrm/sites/all/modules/civicrm/api/v3/examples/Order/Create.php
2018-01-14 13:10:16 +00:00

137 lines
3.6 KiB
PHP

<?php
/**
* Test Generated example demonstrating the Order.create API.
*
* @return array
* API result array
*/
function order_create_example() {
$params = array(
'contact_id' => 8,
'receive_date' => '2010-01-20',
'total_amount' => 200,
'financial_type_id' => 1,
'contribution_status_id' => 1,
'line_items' => array(
'0' => array(
'line_item' => array(
'0' => array(
'price_field_id' => '4',
'price_field_value_id' => '5',
'label' => 'Price Field 2',
'field_title' => 'Price Field 2',
'qty' => 1,
'unit_price' => '200',
'line_total' => '200',
'financial_type_id' => '4',
'entity_table' => 'civicrm_membership',
'membership_type_id' => 1,
),
),
'params' => array(
'contact_id' => 8,
'membership_type_id' => 2,
'join_date' => '2006-01-21',
'start_date' => '2006-01-21',
'end_date' => '2006-12-21',
'source' => 'Payment',
'is_override' => 1,
'status_id' => 1,
),
),
),
);
try{
$result = civicrm_api3('Order', 'create', $params);
}
catch (CiviCRM_API3_Exception $e) {
// Handle error here.
$errorMessage = $e->getMessage();
$errorCode = $e->getErrorCode();
$errorData = $e->getExtraParams();
return array(
'is_error' => 1,
'error_message' => $errorMessage,
'error_code' => $errorCode,
'error_data' => $errorData,
);
}
return $result;
}
/**
* Function returns array of result expected from previous function.
*
* @return array
* API result array
*/
function order_create_expectedresult() {
$expectedResult = array(
'is_error' => 0,
'version' => 3,
'count' => 1,
'id' => 1,
'values' => array(
'1' => array(
'id' => '1',
'contact_id' => '8',
'financial_type_id' => '1',
'contribution_page_id' => '',
'payment_instrument_id' => '4',
'receive_date' => '20100120000000',
'non_deductible_amount' => '',
'total_amount' => '200',
'fee_amount' => 0,
'net_amount' => '200',
'trxn_id' => '',
'invoice_id' => '',
'currency' => 'USD',
'cancel_date' => '',
'cancel_reason' => '',
'receipt_date' => '',
'thankyou_date' => '',
'source' => '',
'amount_level' => '',
'contribution_recur_id' => '',
'is_test' => '',
'is_pay_later' => '',
'contribution_status_id' => '1',
'address_id' => '',
'check_number' => '',
'campaign_id' => '',
'creditnote_id' => '',
'tax_amount' => '',
'revenue_recognition_date' => '',
'contribution_type_id' => '1',
),
),
);
return $expectedResult;
}
/*
* This example has been generated from the API test suite.
* The test that created it is called "testAddOrderForMembership"
* and can be found at:
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/OrderTest.php
*
* You can see the outcome of the API tests at
* https://test.civicrm.org/job/CiviCRM-master-git/
*
* To Learn about the API read
* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
*
* Browse the api on your own site with the api explorer
* http://MYSITE.ORG/path/to/civicrm/api
*
* Read more about testing here
* http://wiki.civicrm.org/confluence/display/CRM/Testing
*
* API Standards documentation:
* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
*/