Merge pull request #1238 from sfe-ev/CRM-12995_amend
[civicrm-core.git] / api / v3 / examples / ActivityTypeDelete.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4
5 */
6function activity_type_delete_example(){
edb0d67a 7$params = array(
9da8dc8c 8 'activity_type_id' => 724,
6a488035
TO
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 */
20function activity_type_delete_expectedresult(){
21
edb0d67a 22 $expectedResult = array(
6a488035
TO
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*/