Merge pull request #2540 from eileenmcnaughton/CRM-14235
[civicrm-core.git] / api / v3 / examples / Survey / Get.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using survey get API
4 * *
6a488035
TO
5 */
6function survey_get_example(){
fbda92d3 7$params = array(
6a488035 8 'title' => 'survey title',
fbda92d3 9 'activity_type_id' => '35',
6a488035
TO
10 'max_number_of_contacts' => 12,
11 'instructions' => 'Call people, ask for money',
12);
13
fb32de45 14try{
15 $result = civicrm_api3('survey', 'get', $params);
16}
17catch (CiviCRM_API3_Exception $e) {
18 // handle error here
19 $errorMessage = $e->getMessage();
20 $errorCode = $e->getErrorCode();
21 $errorData = $e->getExtraParams();
22 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
23}
6a488035 24
fb32de45 25return $result;
6a488035
TO
26}
27
fb32de45 28/**
6a488035
TO
29 * Function returns array of result expected from previous function
30 */
31function survey_get_expectedresult(){
32
fbda92d3 33 $expectedResult = array(
6a488035
TO
34 'is_error' => 0,
35 'version' => 3,
36 'count' => 1,
37 'id' => 1,
fbda92d3 38 'values' => array(
39 '1' => array(
6a488035
TO
40 'id' => '1',
41 'title' => 'survey title',
fbda92d3 42 'activity_type_id' => '35',
6a488035
TO
43 'instructions' => 'Call people, ask for money',
44 'max_number_of_contacts' => '12',
45 'is_active' => '1',
46 'is_default' => 0,
f27f2724 47 'created_date' => '2013-07-28 08:49:19',
6a488035 48 'bypass_confirm' => 0,
b259a4ab 49 'is_share' => '1',
6a488035
TO
50 ),
51 ),
52);
53
fb32de45 54 return $expectedResult;
6a488035
TO
55}
56
57
58/*
59* This example has been generated from the API test suite. The test that created it is called
60*
61* testGetSurvey and can be found in
69d79249 62* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SurveyTest.php
6a488035
TO
63*
64* You can see the outcome of the API tests at
69d79249 65* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
66*
67* To Learn about the API read
69d79249 68* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 69*
69d79249
E
70* Browse the api on your own site with the api explorer
71* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
72*
73* Read more about testing here
74* http://wiki.civicrm.org/confluence/display/CRM/Testing
75*
76* API Standards documentation:
77* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 78*/