Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-07-23-17-12-38
[civicrm-core.git] / api / v3 / examples / Survey / ChainedGetDelete.php
1 <?php
2
3 /*
4 demonstrates get + delete in the same call
5 */
6 function survey_get_example(){
7 $params = array(
8 'title' => 'survey title',
9 'api.survey.delete' => 1,
10 'version' => 3,
11 'debug' => 0,
12 );
13
14 $result = civicrm_api( 'survey','get',$params );
15
16 return $result;
17 }
18
19 /*
20 * Function returns array of result expected from previous function
21 */
22 function survey_get_expectedresult(){
23
24 $expectedResult = array(
25 'is_error' => 0,
26 'version' => 3,
27 'count' => 1,
28 'id' => 1,
29 'values' => array(
30 '1' => array(
31 'id' => '1',
32 'title' => 'survey title',
33 'activity_type_id' => '35',
34 'instructions' => 'Call people, ask for money',
35 'max_number_of_contacts' => '12',
36 'is_active' => '1',
37 'is_default' => 0,
38 'created_date' => '20120130621222105',
39 'bypass_confirm' => 0,
40 'api.survey.delete' => array(
41 'is_error' => 0,
42 'version' => 3,
43 'count' => 1,
44 'values' => true,
45 ),
46 ),
47 ),
48 );
49
50 return $expectedResult ;
51 }
52
53
54 /*
55 * This example has been generated from the API test suite. The test that created it is called
56 *
57 * testGetSurveyChainDelete and can be found in
58 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/SurveyTest.php
59 *
60 * You can see the outcome of the API tests at
61 * http://tests.dev.civicrm.org/trunk/results-api_v3
62 *
63 * To Learn about the API read
64 * http://book.civicrm.org/developer/current/techniques/api/
65 *
66 * and review the wiki at
67 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
68 *
69 * Read more about testing here
70 * http://wiki.civicrm.org/confluence/display/CRM/Testing
71 *
72 * API Standards documentation:
73 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
74 */