E-notice fixes in tests
[civicrm-core.git] / tests / templates / documentFunction.tpl
CommitLineData
6a488035 1{literal}<?php{/literal}
947a37b4 2/**
3 * Test Generated example of using {$fnPrefix} {$action} API
e6ff1593 4 *{if $description} {$description}{/if}
947a37b4 5 *
6a488035
TO
6 */
7function {$function}_example(){literal}{{/literal}
8$params = {$params|@print_array};
947a37b4 9{literal}
10try{{/literal}
11 $result = civicrm_api3('{$fnPrefix}', '{$action}', $params);
12{literal}}
13catch (CiviCRM_API3_Exception $e) {
14 // handle error here
15 $errorMessage = $e->getMessage();
16 $errorCode = $e->getErrorCode();
17 $errorData = $e->getExtraParams();
18 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
19}{/literal}
20
21return $result;
6a488035
TO
22{literal}}{/literal}
23
947a37b4 24/**
6a488035
TO
25 * Function returns array of result expected from previous function
26 */
27function {$function}_expectedresult(){literal}{{/literal}
28
29 $expectedResult = {$result|@print_array};
30
947a37b4 31 return $expectedResult;
6a488035
TO
32{literal}}{/literal}
33
34
35/*
36* This example has been generated from the API test suite. The test that created it is called
37*
38* {$testfunction} and can be found in
39* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/{$filename}
40*
41* You can see the outcome of the API tests at
42* http://tests.dev.civicrm.org/trunk/results-api_v3
43*
44* To Learn about the API read
45* http://book.civicrm.org/developer/current/techniques/api/
46*
47* and review the wiki at
48* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
49*
50* Read more about testing here
51* http://wiki.civicrm.org/confluence/display/CRM/Testing
52*
53* API Standards documentation:
54* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
fb32de45 55*/