Merge pull request #5182 from colemanw/Cleanup
[civicrm-core.git] / api / v3 / examples / Contact / GetActions.php
CommitLineData
92776611 1<?php
50fb255d 2/**
3 * Test Generated example of using contact getactions API.
4 *
5 * Getting the available actions for an entity.
6 *
7 * @return array
8 * API result array
9 */
10function contact_getactions_example() {
11 $params = array();
92776611 12
50fb255d 13 try{
14 $result = civicrm_api3('contact', 'getactions', $params);
15 }
16 catch (CiviCRM_API3_Exception $e) {
17 // Handle error here.
18 $errorMessage = $e->getMessage();
19 $errorCode = $e->getErrorCode();
20 $errorData = $e->getExtraParams();
21 return array(
22 'error' => $errorMessage,
23 'error_code' => $errorCode,
24 'error_data' => $errorData,
25 );
26 }
27
28 return $result;
92776611
CW
29}
30
31/**
50fb255d 32 * Function returns array of result expected from previous function.
33 *
34 * @return array
35 * API result array
92776611 36 */
50fb255d 37function contact_getactions_expectedresult() {
92776611
CW
38
39 $expectedResult = array(
50fb255d 40 'is_error' => 0,
41 'version' => 3,
5c49fee0 42 'count' => 18,
50fb255d 43 'values' => array(
92776611
CW
44 '0' => 'create',
45 '1' => 'delete',
381fa321 46 '2' => 'get',
47 '3' => 'getactions',
48 '4' => 'getcount',
49 '5' => 'getfields',
50 '6' => 'getlist',
51 '7' => 'getoptions',
52 '8' => 'getquick',
53 '9' => 'getrefcount',
54 '10' => 'getsingle',
5c49fee0
CW
55 '11' => 'getstat',
56 '12' => 'getvalue',
57 '13' => 'merge',
58 '14' => 'proximity',
59 '15' => 'replace',
60 '16' => 'setvalue',
61 '17' => 'update',
92776611 62 ),
50fb255d 63 'deprecated' => array(
92776611
CW
64 'getquick' => 'The "getquick" action is deprecated in favor of "getlist".',
65 'update' => 'The "update" action is deprecated. Use "create" with an id instead.',
66 ),
50fb255d 67 );
92776611
CW
68
69 return $expectedResult;
70}
71
50fb255d 72/**
73* This example has been generated from the API test suite.
74* The test that created it is called
75* testGetActions
76* and can be found in
92776611
CW
77* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContactTest.php
78*
79* You can see the outcome of the API tests at
80* https://test.civicrm.org/job/CiviCRM-master-git/
81*
82* To Learn about the API read
83* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
84*
85* Browse the api on your own site with the api explorer
41d4d31f 86* http://MYSITE.ORG/path/to/civicrm/api
92776611
CW
87*
88* Read more about testing here
89* http://wiki.civicrm.org/confluence/display/CRM/Testing
90*
91* API Standards documentation:
92* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
93*/