Merge pull request #4185 from samuelsov/CRM-15330
[civicrm-core.git] / api / v3 / examples / UFField / Create.php
1 <?php
2 /**
3 * Test Generated example of using uf_field create API
4 * *
5 */
6 function uf_field_create_example(){
7 $params = array(
8 'field_name' => 'phone',
9 'field_type' => 'Contact',
10 'visibility' => 'Public Pages and Listings',
11 'weight' => 1,
12 'label' => 'Test Phone',
13 'is_searchable' => 1,
14 'is_active' => 1,
15 'location_type_id' => 1,
16 'phone_type_id' => 1,
17 'uf_group_id' => 11,
18 );
19
20 try{
21 $result = civicrm_api3('uf_field', 'create', $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('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
29 }
30
31 return $result;
32 }
33
34 /**
35 * Function returns array of result expected from previous function
36 */
37 function uf_field_create_expectedresult(){
38
39 $expectedResult = array(
40 'is_error' => 0,
41 'version' => 3,
42 'count' => 1,
43 'id' => 1,
44 'values' => array(
45 '1' => array(
46 'id' => '1',
47 'uf_group_id' => '11',
48 'field_name' => 'phone',
49 'is_active' => '1',
50 'is_view' => '',
51 'is_required' => '',
52 'weight' => '1',
53 'help_post' => '',
54 'help_pre' => '',
55 'visibility' => 'Public Pages and Listings',
56 'in_selector' => '',
57 'is_searchable' => '1',
58 'location_type_id' => '1',
59 'phone_type_id' => '1',
60 'website_type_id' => '',
61 'label' => 'Test Phone',
62 'field_type' => 'Contact',
63 'is_reserved' => '',
64 'is_multi_summary' => '',
65 ),
66 ),
67 );
68
69 return $expectedResult;
70 }
71
72
73 /*
74 * This example has been generated from the API test suite. The test that created it is called
75 *
76 * testCreateUFField and can be found in
77 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/UFFieldTest.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
86 * http://MYSITE.ORG/path/to/civicrm/api/explorer
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 */