CRM-13072 more test class upgrades
[civicrm-core.git] / api / v3 / examples / RelationshipTypeCreate.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using relationship_type create API
4 * *
6a488035
TO
5 */
6function relationship_type_create_example(){
53ca8fd7 7$params = array(
6a488035
TO
8 'name_a_b' => 'Relation 1 for relationship type create',
9 'name_b_a' => 'Relation 2 for relationship type create',
10 'contact_type_a' => 'Individual',
11 'contact_type_b' => 'Organization',
12 'is_reserved' => 1,
13 'is_active' => 1,
6a488035
TO
14 'sequential' => 1,
15);
16
fb32de45 17try{
18 $result = civicrm_api3('relationship_type', 'create', $params);
19}
20catch (CiviCRM_API3_Exception $e) {
21 // handle error here
22 $errorMessage = $e->getMessage();
23 $errorCode = $e->getErrorCode();
24 $errorData = $e->getExtraParams();
25 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
26}
6a488035 27
fb32de45 28return $result;
6a488035
TO
29}
30
fb32de45 31/**
6a488035
TO
32 * Function returns array of result expected from previous function
33 */
34function relationship_type_create_expectedresult(){
35
53ca8fd7 36 $expectedResult = array(
6a488035
TO
37 'is_error' => 0,
38 'version' => 3,
39 'count' => 1,
40 'id' => 1,
53ca8fd7 41 'values' => array(
42 '0' => array(
6a488035
TO
43 'id' => '1',
44 'name_a_b' => 'Relation 1 for relationship type create',
45 'label_a_b' => 'Relation 1 for relationship type create',
46 'name_b_a' => 'Relation 2 for relationship type create',
47 'label_b_a' => 'Relation 2 for relationship type create',
48 'description' => '',
49 'contact_type_a' => 'Individual',
50 'contact_type_b' => 'Organization',
51 'contact_sub_type_a' => '',
52 'contact_sub_type_b' => '',
53 'is_reserved' => '1',
54 'is_active' => '1',
55 ),
56 ),
57);
58
fb32de45 59 return $expectedResult;
6a488035
TO
60}
61
62
63/*
64* This example has been generated from the API test suite. The test that created it is called
65*
66* testRelationshipTypeCreate and can be found in
67* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/RelationshipTypeTest.php
68*
69* You can see the outcome of the API tests at
70* http://tests.dev.civicrm.org/trunk/results-api_v3
71*
72* To Learn about the API read
73* http://book.civicrm.org/developer/current/techniques/api/
74*
75* and review the wiki at
76* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
77*
78* Read more about testing here
79* http://wiki.civicrm.org/confluence/display/CRM/Testing
80*
81* API Standards documentation:
82* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
83*/