Merge pull request #5000 from totten/master-cbf3
[civicrm-core.git] / tests / templates / documentFunction.tpl
CommitLineData
6a488035 1{literal}<?php{/literal}
947a37b4 2/**
0c13f046
EM
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 {$fnPrefix} {$action} API.
10 *
11{if $description}
12 * {$description}
13{/if}
947a37b4 14 *
0c13f046
EM
15 * @return array
16 * API result array
6a488035 17 */
0c13f046
EM
18function {$function}_example() {literal}{{/literal}
19 $params = {$params|@print_array};
947a37b4 20{literal}
0c13f046
EM
21 try{{/literal}
22 $result = civicrm_api3('{$fnPrefix}', '{$action}', $params);
23{literal} }
24 catch (CiviCRM_API3_Exception $e) {
25 // Handle error here.
26 $errorMessage = $e->getMessage();
27 $errorCode = $e->getErrorCode();
28 $errorData = $e->getExtraParams();
29 return array(
30 'error' => $errorMessage,
31 'error_code' => $errorCode,
32 'error_data' => $errorData,
33 );
34 }{/literal}
947a37b4 35
0c13f046 36 return $result;
6a488035
TO
37{literal}}{/literal}
38
947a37b4 39/**
0c13f046
EM
40 * Function returns array of result expected from previous function.
41 *
42 * @return array
43 * API result array
6a488035 44 */
0c13f046 45function {$function}_expectedresult() {literal}{{/literal}
6a488035
TO
46
47 $expectedResult = {$result|@print_array};
48
947a37b4 49 return $expectedResult;
6a488035
TO
50{literal}}{/literal}
51
0c13f046
EM
52/**
53* This example has been generated from the API test suite.
54* The test that created it is called
55* {$testfunction}
56* and can be found in
3ec6e38d 57* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/{$filename}
6a488035
TO
58*
59* You can see the outcome of the API tests at
3ec6e38d 60* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
61*
62* To Learn about the API read
3ec6e38d 63* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 64*
3ec6e38d
CW
65* Browse the api on your own site with the api explorer
66* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
67*
68* Read more about testing here
69* http://wiki.civicrm.org/confluence/display/CRM/Testing
70*
71* API Standards documentation:
72* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
fb32de45 73*/