Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-21-08-12-12
[civicrm-core.git] / api / v3 / examples / Relationship / Create.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using relationship create API
4 * *
6a488035
TO
5 */
6function relationship_create_example(){
26dcc9eb 7$params = array(
49f8272d
E
8 'contact_id_a' => 31,
9 'contact_id_b' => 33,
fb32de45 10 'relationship_type_id' => 18,
6a488035
TO
11 'start_date' => '2010-10-30',
12 'end_date' => '2010-12-30',
13 'is_active' => 1,
14 'note' => 'note',
6a488035
TO
15);
16
fb32de45 17try{
18 $result = civicrm_api3('relationship', '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_create_expectedresult(){
35
26dcc9eb 36 $expectedResult = array(
6a488035
TO
37 'is_error' => 0,
38 'version' => 3,
39 'count' => 1,
40 'id' => 1,
26dcc9eb 41 'values' => array(
42 '1' => array(
6a488035 43 'id' => '1',
49f8272d
E
44 'contact_id_a' => '31',
45 'contact_id_b' => '33',
fb32de45 46 'relationship_type_id' => '18',
9f1b81e0 47 'start_date' => '2013-07-29 00:00:00',
48 'end_date' => '2013-08-04 00:00:00',
26dcc9eb 49 'is_active' => '1',
50 'description' => '',
51 'is_permission_a_b' => 0,
52 'is_permission_b_a' => 0,
53 'case_id' => '',
6a488035
TO
54 ),
55 ),
56);
57
fb32de45 58 return $expectedResult;
6a488035
TO
59}
60
61
62/*
63* This example has been generated from the API test suite. The test that created it is called
64*
65* testRelationshipCreate and can be found in
69d79249 66* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/RelationshipTest.php
6a488035
TO
67*
68* You can see the outcome of the API tests at
69d79249 69* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
70*
71* To Learn about the API read
69d79249 72* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 73*
69d79249
E
74* Browse the api on your own site with the api explorer
75* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
76*
77* Read more about testing here
78* http://wiki.civicrm.org/confluence/display/CRM/Testing
79*
80* API Standards documentation:
81* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
49f8272d 82*/