CRM-15988 - Update generated examples
[civicrm-core.git] / api / v3 / examples / RelationshipType / Create.php
CommitLineData
6a488035 1<?php
50fb255d 2/**
a828d7b8 3 * Test Generated example demonstrating the RelationshipType.create API.
50fb255d 4 *
50fb255d 5 * @return array
6 * API result array
7 */
8function relationship_type_create_example() {
9 $params = array(
10 'name_a_b' => 'Relation 1 for relationship type create',
11 'name_b_a' => 'Relation 2 for relationship type create',
12 'contact_type_a' => 'Individual',
13 'contact_type_b' => 'Organization',
14 'is_reserved' => 1,
15 'is_active' => 1,
16 'sequential' => 1,
17 );
6a488035 18
50fb255d 19 try{
a828d7b8 20 $result = civicrm_api3('RelationshipType', 'create', $params);
50fb255d 21 }
22 catch (CiviCRM_API3_Exception $e) {
23 // Handle error here.
24 $errorMessage = $e->getMessage();
25 $errorCode = $e->getErrorCode();
26 $errorData = $e->getExtraParams();
27 return array(
28 'error' => $errorMessage,
29 'error_code' => $errorCode,
30 'error_data' => $errorData,
31 );
32 }
33
34 return $result;
6a488035
TO
35}
36
fb32de45 37/**
50fb255d 38 * Function returns array of result expected from previous function.
39 *
40 * @return array
41 * API result array
6a488035 42 */
50fb255d 43function relationship_type_create_expectedresult() {
6a488035 44
53ca8fd7 45 $expectedResult = array(
50fb255d 46 'is_error' => 0,
47 'version' => 3,
48 'count' => 1,
49 'id' => 1,
50 'values' => array(
53ca8fd7 51 '0' => array(
50fb255d 52 'id' => '1',
53 'name_a_b' => 'Relation 1 for relationship type create',
54 'label_a_b' => 'Relation 1 for relationship type create',
55 'name_b_a' => 'Relation 2 for relationship type create',
56 'label_b_a' => 'Relation 2 for relationship type create',
57 'description' => '',
58 'contact_type_a' => 'Individual',
59 'contact_type_b' => 'Organization',
60 'contact_sub_type_a' => '',
61 'contact_sub_type_b' => '',
62 'is_reserved' => '1',
63 'is_active' => '1',
64 ),
6a488035 65 ),
50fb255d 66 );
6a488035 67
fb32de45 68 return $expectedResult;
6a488035
TO
69}
70
a828d7b8 71/*
50fb255d 72* This example has been generated from the API test suite.
a828d7b8
CW
73* The test that created it is called "testRelationshipTypeCreate"
74* and can be found at:
69d79249 75* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/RelationshipTypeTest.php
6a488035
TO
76*
77* You can see the outcome of the API tests at
69d79249 78* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
79*
80* To Learn about the API read
69d79249 81* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 82*
69d79249 83* Browse the api on your own site with the api explorer
41d4d31f 84* http://MYSITE.ORG/path/to/civicrm/api
6a488035
TO
85*
86* Read more about testing here
87* http://wiki.civicrm.org/confluence/display/CRM/Testing
88*
89* API Standards documentation:
90* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 91*/