Merge branch 4.5 into master
[civicrm-core.git] / api / v3 / examples / Job / Delete.php
1 <?php
2 /**
3 * @file
4 * Test Generated API Example.
5 * See bottom of this file for more detail.
6 */
7
8 /**
9 * Test Generated example of using job delete API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15 function job_delete_example() {
16 $params = array(
17 'id' => 30,
18 );
19
20 try{
21 $result = civicrm_api3('job', '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;
36 }
37
38 /**
39 * Function returns array of result expected from previous function.
40 *
41 * @return array
42 * API result array
43 */
44 function job_delete_expectedresult() {
45
46 $expectedResult = '';
47
48 return $expectedResult;
49 }
50
51 /**
52 * This example has been generated from the API test suite.
53 * The test that created it is called
54 * testDelete
55 * and can be found in
56 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/JobTest.php
57 *
58 * You can see the outcome of the API tests at
59 * https://test.civicrm.org/job/CiviCRM-master-git/
60 *
61 * To Learn about the API read
62 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
63 *
64 * Browse the api on your own site with the api explorer
65 * http://MYSITE.ORG/path/to/civicrm/api/explorer
66 *
67 * Read more about testing here
68 * http://wiki.civicrm.org/confluence/display/CRM/Testing
69 *
70 * API Standards documentation:
71 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
72 */