Merge pull request #1238 from sfe-ev/CRM-12995_amend
[civicrm-core.git] / api / v3 / examples / TagGet.php
1 <?php
2
3 /*
4
5 */
6 function tag_get_example(){
7 $params = array(
8 'id' => 6,
9 'name' => 'New Tag320719',
10 'version' => 3,
11 );
12
13 $result = civicrm_api( 'tag','get',$params );
14
15 return $result;
16 }
17
18 /*
19 * Function returns array of result expected from previous function
20 */
21 function tag_get_expectedresult(){
22
23 $expectedResult = array(
24 'is_error' => 0,
25 'version' => 3,
26 'count' => 1,
27 'id' => 6,
28 'values' => array(
29 '6' => array(
30 'id' => '6',
31 'name' => 'New Tag320719',
32 'description' => 'This is description for New Tag 30716',
33 'is_selectable' => '1',
34 'is_reserved' => 0,
35 'is_tagset' => 0,
36 'used_for' => 'civicrm_contact',
37 'created_date' => '20120130621222105',
38 ),
39 ),
40 );
41
42 return $expectedResult ;
43 }
44
45
46 /*
47 * This example has been generated from the API test suite. The test that created it is called
48 *
49 * testGet and can be found in
50 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/TagTest.php
51 *
52 * You can see the outcome of the API tests at
53 * http://tests.dev.civicrm.org/trunk/results-api_v3
54 *
55 * To Learn about the API read
56 * http://book.civicrm.org/developer/current/techniques/api/
57 *
58 * and review the wiki at
59 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
60 *
61 * Read more about testing here
62 * http://wiki.civicrm.org/confluence/display/CRM/Testing
63 *
64 * API Standards documentation:
65 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
66 */