Merge pull request #1035 from GiantRobot/CRM-12720
[civicrm-core.git] / api / v3 / examples / Relationship / NotBetweenRelationshipType.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4 demonstrates use of Not BETWEEN filter
5 */
6function relationship_get_example(){
26dcc9eb 7$params = array(
6a488035 8 'version' => 3,
26dcc9eb 9 'relationship_type_id' => array(
10 'NOT BETWEEN' => array(
11 '0' => 33,
12 '1' => 35,
6a488035
TO
13 ),
14 ),
26dcc9eb 15 'debug' => 0,
6a488035
TO
16);
17
18 $result = civicrm_api( 'relationship','get',$params );
19
20 return $result;
21}
22
23/*
24 * Function returns array of result expected from previous function
25 */
26function relationship_get_expectedresult(){
27
26dcc9eb 28 $expectedResult = array(
6a488035
TO
29 'is_error' => 0,
30 'version' => 3,
31 'count' => 1,
32 'id' => 1,
26dcc9eb 33 'values' => array(
34 '1' => array(
6a488035 35 'id' => '1',
26dcc9eb 36 'contact_id_a' => '66',
37 'contact_id_b' => '67',
38 'relationship_type_id' => '32',
6a488035
TO
39 'start_date' => '2008-12-20',
40 'is_active' => '1',
41 'description' => '',
42 'is_permission_a_b' => 0,
43 'is_permission_b_a' => 0,
6a488035
TO
44 ),
45 ),
46);
47
48 return $expectedResult ;
49}
50
51
52/*
53* This example has been generated from the API test suite. The test that created it is called
54*
55* testGetTypeOperators and can be found in
56* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/RelationshipTest.php
57*
58* You can see the outcome of the API tests at
59* http://tests.dev.civicrm.org/trunk/results-api_v3
60*
61* To Learn about the API read
62* http://book.civicrm.org/developer/current/techniques/api/
63*
64* and review the wiki at
65* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
66*
67* Read more about testing here
68* http://wiki.civicrm.org/confluence/display/CRM/Testing
69*
70* API Standards documentation:
71* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
72*/