Merge pull request #519 from colbyw/fixBootstrap
[civicrm-core.git] / api / v3 / examples / ActivityTypeDelete.php
1 <?php
2
3 /*
4
5 */
6 function activity_type_delete_example(){
7 $params = array(
8 'activity_type_id' => 725,
9 'version' => 3,
10 );
11
12 $result = civicrm_api( 'activity_type','delete',$params );
13
14 return $result;
15 }
16
17 /*
18 * Function returns array of result expected from previous function
19 */
20 function activity_type_delete_expectedresult(){
21
22 $expectedResult = array(
23 'is_error' => 1,
24 'error_message' => 'Undefined index: activity_type_id',
25 );
26
27 return $expectedResult ;
28 }
29
30
31 /*
32 * This example has been generated from the API test suite. The test that created it is called
33 *
34 * testActivityTypeDelete and can be found in
35 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ActivityTypeTest.php
36 *
37 * You can see the outcome of the API tests at
38 * http://tests.dev.civicrm.org/trunk/results-api_v3
39 *
40 * To Learn about the API read
41 * http://book.civicrm.org/developer/current/techniques/api/
42 *
43 * and review the wiki at
44 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
45 *
46 * Read more about testing here
47 * http://wiki.civicrm.org/confluence/display/CRM/Testing
48 *
49 * API Standards documentation:
50 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
51 */