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