First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
88
sites/all/modules/civicrm/api/v3/examples/Payment/Cancel.php
Normal file
88
sites/all/modules/civicrm/api/v3/examples/Payment/Cancel.php
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
/**
|
||||
* Test Generated example demonstrating the Payment.cancel API.
|
||||
*
|
||||
* @return array
|
||||
* API result array
|
||||
*/
|
||||
function payment_cancel_example() {
|
||||
$params = array(
|
||||
'id' => 2,
|
||||
'check_permissions' => TRUE,
|
||||
);
|
||||
|
||||
try{
|
||||
$result = civicrm_api3('Payment', 'cancel', $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 payment_cancel_expectedresult() {
|
||||
|
||||
$expectedResult = array(
|
||||
'is_error' => 0,
|
||||
'version' => 3,
|
||||
'count' => 1,
|
||||
'id' => 3,
|
||||
'values' => array(
|
||||
'3' => array(
|
||||
'id' => 3,
|
||||
'from_financial_account_id' => '7',
|
||||
'to_financial_account_id' => '6',
|
||||
'trxn_date' => '20170207024650',
|
||||
'total_amount' => '-150',
|
||||
'fee_amount' => '0.00',
|
||||
'net_amount' => '150.00',
|
||||
'currency' => 'USD',
|
||||
'is_payment' => 1,
|
||||
'trxn_id' => '',
|
||||
'trxn_result_code' => '',
|
||||
'status_id' => '7',
|
||||
'payment_processor_id' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return $expectedResult;
|
||||
}
|
||||
|
||||
/*
|
||||
* This example has been generated from the API test suite.
|
||||
* The test that created it is called "testCancelPayment"
|
||||
* and can be found at:
|
||||
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentTest.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
|
||||
*/
|
88
sites/all/modules/civicrm/api/v3/examples/Payment/Create.php
Normal file
88
sites/all/modules/civicrm/api/v3/examples/Payment/Create.php
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
/**
|
||||
* Test Generated example demonstrating the Payment.create API.
|
||||
*
|
||||
* @return array
|
||||
* API result array
|
||||
*/
|
||||
function payment_create_example() {
|
||||
$params = array(
|
||||
'contribution_id' => 1,
|
||||
'total_amount' => 50,
|
||||
);
|
||||
|
||||
try{
|
||||
$result = civicrm_api3('Payment', '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 payment_create_expectedresult() {
|
||||
|
||||
$expectedResult = array(
|
||||
'is_error' => 0,
|
||||
'version' => 3,
|
||||
'count' => 1,
|
||||
'id' => 3,
|
||||
'values' => array(
|
||||
'3' => array(
|
||||
'id' => '3',
|
||||
'from_financial_account_id' => '7',
|
||||
'to_financial_account_id' => '6',
|
||||
'trxn_date' => '20170207024646',
|
||||
'total_amount' => '50',
|
||||
'fee_amount' => '',
|
||||
'net_amount' => '50',
|
||||
'currency' => 'USD',
|
||||
'is_payment' => '1',
|
||||
'trxn_id' => '',
|
||||
'trxn_result_code' => '',
|
||||
'status_id' => '1',
|
||||
'payment_processor_id' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return $expectedResult;
|
||||
}
|
||||
|
||||
/*
|
||||
* This example has been generated from the API test suite.
|
||||
* The test that created it is called "testCreatePaymentNoLineItems"
|
||||
* and can be found at:
|
||||
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentTest.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
|
||||
*/
|
|
@ -0,0 +1,98 @@
|
|||
<?php
|
||||
/**
|
||||
* Test Generated example demonstrating the Payment.create API.
|
||||
*
|
||||
* Payment with line item
|
||||
*
|
||||
* @return array
|
||||
* API result array
|
||||
*/
|
||||
function payment_create_example() {
|
||||
$params = array(
|
||||
'contribution_id' => 1,
|
||||
'total_amount' => 50,
|
||||
'line_item' => array(
|
||||
'0' => array(
|
||||
'1' => 10,
|
||||
),
|
||||
'1' => array(
|
||||
'2' => 40,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
try{
|
||||
$result = civicrm_api3('Payment', '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 payment_create_expectedresult() {
|
||||
|
||||
$expectedResult = array(
|
||||
'is_error' => 0,
|
||||
'version' => 3,
|
||||
'count' => 1,
|
||||
'id' => 3,
|
||||
'values' => array(
|
||||
'3' => array(
|
||||
'id' => '3',
|
||||
'from_financial_account_id' => '7',
|
||||
'to_financial_account_id' => '6',
|
||||
'trxn_date' => '20170207024648',
|
||||
'total_amount' => '50',
|
||||
'fee_amount' => '',
|
||||
'net_amount' => '50',
|
||||
'currency' => 'USD',
|
||||
'is_payment' => '1',
|
||||
'trxn_id' => '',
|
||||
'trxn_result_code' => '',
|
||||
'status_id' => '1',
|
||||
'payment_processor_id' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return $expectedResult;
|
||||
}
|
||||
|
||||
/*
|
||||
* This example has been generated from the API test suite.
|
||||
* The test that created it is called "testCreatePaymentLineItems"
|
||||
* and can be found at:
|
||||
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentTest.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
|
||||
*/
|
71
sites/all/modules/civicrm/api/v3/examples/Payment/Delete.php
Normal file
71
sites/all/modules/civicrm/api/v3/examples/Payment/Delete.php
Normal file
|
@ -0,0 +1,71 @@
|
|||
<?php
|
||||
/**
|
||||
* Test Generated example demonstrating the Payment.delete API.
|
||||
*
|
||||
* @return array
|
||||
* API result array
|
||||
*/
|
||||
function payment_delete_example() {
|
||||
$params = array(
|
||||
'id' => 2,
|
||||
'check_permissions' => TRUE,
|
||||
);
|
||||
|
||||
try{
|
||||
$result = civicrm_api3('Payment', 'delete', $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 payment_delete_expectedresult() {
|
||||
|
||||
$expectedResult = array(
|
||||
'is_error' => 0,
|
||||
'version' => 3,
|
||||
'count' => 1,
|
||||
'values' => 1,
|
||||
);
|
||||
|
||||
return $expectedResult;
|
||||
}
|
||||
|
||||
/*
|
||||
* This example has been generated from the API test suite.
|
||||
* The test that created it is called "testDeletePayment"
|
||||
* and can be found at:
|
||||
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentTest.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
|
||||
*/
|
87
sites/all/modules/civicrm/api/v3/examples/Payment/Get.php
Normal file
87
sites/all/modules/civicrm/api/v3/examples/Payment/Get.php
Normal file
|
@ -0,0 +1,87 @@
|
|||
<?php
|
||||
/**
|
||||
* Test Generated example demonstrating the Payment.get API.
|
||||
*
|
||||
* @return array
|
||||
* API result array
|
||||
*/
|
||||
function payment_get_example() {
|
||||
$params = array(
|
||||
'contribution_id' => 1,
|
||||
'check_permissions' => TRUE,
|
||||
);
|
||||
|
||||
try{
|
||||
$result = civicrm_api3('Payment', 'get', $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 payment_get_expectedresult() {
|
||||
|
||||
$expectedResult = array(
|
||||
'is_error' => 0,
|
||||
'version' => 3,
|
||||
'count' => 1,
|
||||
'id' => 1,
|
||||
'values' => array(
|
||||
'1' => array(
|
||||
'id' => '1',
|
||||
'to_financial_account_id' => '6',
|
||||
'trxn_date' => '2010-01-20 00:00:00',
|
||||
'total_amount' => '100.00',
|
||||
'fee_amount' => '0.00',
|
||||
'net_amount' => '100.00',
|
||||
'currency' => 'USD',
|
||||
'is_payment' => '1',
|
||||
'trxn_id' => '23456',
|
||||
'status_id' => '1',
|
||||
'payment_instrument_id' => '4',
|
||||
'contribution_id' => '1',
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return $expectedResult;
|
||||
}
|
||||
|
||||
/*
|
||||
* This example has been generated from the API test suite.
|
||||
* The test that created it is called "testGetPayment"
|
||||
* and can be found at:
|
||||
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentTest.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
|
||||
*/
|
|
@ -0,0 +1,92 @@
|
|||
<?php
|
||||
/**
|
||||
* Test Generated example demonstrating the Payment.create API.
|
||||
*
|
||||
* Update Payment
|
||||
*
|
||||
* @return array
|
||||
* API result array
|
||||
*/
|
||||
function payment_create_example() {
|
||||
$params = array(
|
||||
'contribution_id' => 1,
|
||||
'total_amount' => 100,
|
||||
'id' => 3,
|
||||
'check_permissions' => TRUE,
|
||||
);
|
||||
|
||||
try{
|
||||
$result = civicrm_api3('Payment', '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 payment_create_expectedresult() {
|
||||
|
||||
$expectedResult = array(
|
||||
'is_error' => 0,
|
||||
'version' => 3,
|
||||
'count' => 1,
|
||||
'id' => 5,
|
||||
'values' => array(
|
||||
'5' => array(
|
||||
'id' => '5',
|
||||
'from_financial_account_id' => '7',
|
||||
'to_financial_account_id' => '6',
|
||||
'trxn_date' => '20170207024653',
|
||||
'total_amount' => '100',
|
||||
'fee_amount' => '',
|
||||
'net_amount' => '100',
|
||||
'currency' => 'USD',
|
||||
'is_payment' => '1',
|
||||
'trxn_id' => '',
|
||||
'trxn_result_code' => '',
|
||||
'status_id' => '1',
|
||||
'payment_processor_id' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return $expectedResult;
|
||||
}
|
||||
|
||||
/*
|
||||
* This example has been generated from the API test suite.
|
||||
* The test that created it is called "testUpdatePayment"
|
||||
* and can be found at:
|
||||
* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentTest.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
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue