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