5e77fe8b30c0f6d7629aa45bf261f611aaa545f1
[civicrm-core.git] / api / v3 / examples / Relationship / NotInRelationshipType.php
1 <?php
2 /**
3 * Test Generated example demonstrating the Relationship.get API.
4 *
5 * Demonstrates use of NOT IN filter.
6 *
7 * @return array
8 * API result array
9 */
10 function relationship_get_example() {
11 $params = array(
12 'relationship_type_id' => array(
13 'NOT IN' => array(
14 '0' => 36,
15 '1' => 37,
16 ),
17 ),
18 );
19
20 try{
21 $result = civicrm_api3('Relationship', 'get', $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(
29 'is_error' => 1,
30 'error_message' => $errorMessage,
31 'error_code' => $errorCode,
32 'error_data' => $errorData,
33 );
34 }
35
36 return $result;
37 }
38
39 /**
40 * Function returns array of result expected from previous function.
41 *
42 * @return array
43 * API result array
44 */
45 function relationship_get_expectedresult() {
46
47 $expectedResult = array(
48 'is_error' => 0,
49 'version' => 3,
50 'count' => 2,
51 'values' => array(
52 '1' => array(
53 'id' => '1',
54 'contact_id_a' => '99',
55 'contact_id_b' => '101',
56 'relationship_type_id' => '35',
57 'start_date' => '2013-07-29 00:00:00',
58 'is_active' => '1',
59 'is_permission_a_b' => 0,
60 'is_permission_b_a' => 0,
61 ),
62 '4' => array(
63 'id' => '4',
64 'contact_id_a' => '99',
65 'contact_id_b' => '101',
66 'relationship_type_id' => '38',
67 'start_date' => '2013-07-29 00:00:00',
68 'is_active' => '1',
69 'is_permission_a_b' => 0,
70 'is_permission_b_a' => 0,
71 ),
72 ),
73 );
74
75 return $expectedResult;
76 }
77
78 /*
79 * This example has been generated from the API test suite.
80 * The test that created it is called "testGetTypeOperators"
81 * and can be found at:
82 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/RelationshipTest.php
83 *
84 * You can see the outcome of the API tests at
85 * https://test.civicrm.org/job/CiviCRM-master-git/
86 *
87 * To Learn about the API read
88 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
89 *
90 * Browse the api on your own site with the api explorer
91 * http://MYSITE.ORG/path/to/civicrm/api
92 *
93 * Read more about testing here
94 * http://wiki.civicrm.org/confluence/display/CRM/Testing
95 *
96 * API Standards documentation:
97 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
98 */