update test generated examples
[civicrm-core.git] / api / v3 / examples / UFGroupDelete.php
1 <?php
2
3 /*
4
5 */
6 function uf_group_delete_example(){
7 $params = array(
8 'add_captcha' => 1,
9 'add_contact_to_group' => 2,
10 'cancel_URL' => 'http://example.org/cancel',
11 'created_date' => '2009-06-27 00:00:00',
12 'created_id' => 69,
13 'group' => 2,
14 'group_type' => 'Individual,Contact',
15 'help_post' => 'help post',
16 'help_pre' => 'help pre',
17 'is_active' => 0,
18 'is_cms_user' => 1,
19 'is_edit_link' => 1,
20 'is_map' => 1,
21 'is_reserved' => 1,
22 'is_uf_link' => 1,
23 'is_update_dupe' => 1,
24 'name' => 'Test_Group',
25 'notify' => 'admin@example.org',
26 'post_URL' => 'http://example.org/post',
27 'title' => 'Test Group',
28 'version' => 3,
29 );
30
31 $result = civicrm_api( 'uf_group','delete',$params );
32
33 return $result;
34 }
35
36 /*
37 * Function returns array of result expected from previous function
38 */
39 function uf_group_delete_expectedresult(){
40
41 $expectedResult = array(
42 'is_error' => 0,
43 'version' => 3,
44 'count' => 1,
45 'values' => true,
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 * testUFGroupDelete and can be found in
56 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/UFGroupTest.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 */