CRM-15905 fix - API: problem sorting contacts on ID
[civicrm-core.git] / api / v3 / examples / PaymentProcessor / Delete.php
CommitLineData
21150aae 1<?php
fb32de45 2/**
50fb255d 3 * @file
4 * Test Generated API Example.
5 * See bottom of this file for more detail.
21150aae 6 */
21150aae 7
50fb255d 8/**
9 * Test Generated example of using payment_processor delete API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15function payment_processor_delete_example() {
16 $params = array(
17 'id' => 2,
18 );
21150aae 19
50fb255d 20 try{
21 $result = civicrm_api3('payment_processor', 'delete', $params);
22 }
23 catch (CiviCRM_API3_Exception $e) {
24 // Handle error here.
25 $errorMessage = $e->getMessage();
26 $errorCode = $e->getErrorCode();
27 $errorData = $e->getExtraParams();
28 return array(
29 'error' => $errorMessage,
30 'error_code' => $errorCode,
31 'error_data' => $errorData,
32 );
33 }
34
35 return $result;
21150aae
CW
36}
37
fb32de45 38/**
50fb255d 39 * Function returns array of result expected from previous function.
40 *
41 * @return array
42 * API result array
21150aae 43 */
50fb255d 44function payment_processor_delete_expectedresult() {
21150aae 45
53ca8fd7 46 $expectedResult = array(
50fb255d 47 'is_error' => 0,
48 'version' => 3,
49 'count' => 1,
50 'values' => TRUE,
51 );
21150aae 52
fb32de45 53 return $expectedResult;
21150aae
CW
54}
55
50fb255d 56/**
57* This example has been generated from the API test suite.
58* The test that created it is called
59* testPaymentProcessorDelete
60* and can be found in
69d79249 61* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PaymentProcessorTest.php
21150aae
CW
62*
63* You can see the outcome of the API tests at
69d79249 64* https://test.civicrm.org/job/CiviCRM-master-git/
21150aae
CW
65*
66* To Learn about the API read
69d79249 67* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
21150aae 68*
69d79249
E
69* Browse the api on your own site with the api explorer
70* http://MYSITE.ORG/path/to/civicrm/api/explorer
21150aae
CW
71*
72* Read more about testing here
73* http://wiki.civicrm.org/confluence/display/CRM/Testing
74*
75* API Standards documentation:
76* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 77*/