bf801c3eac02522d8d03b1a16bcda4e5ebf50264
[civicrm-core.git] / api / v3 / examples / PriceSet / Create.php
1 <?php
2 /**
3 * Test Generated example demonstrating the PriceSet.create API.
4 *
5 * @return array
6 * API result array
7 */
8 function price_set_create_example() {
9 $params = array(
10 'entity_table' => 'civicrm_event',
11 'entity_id' => 1,
12 'name' => 'event price',
13 'title' => 'event price',
14 'extends' => 1,
15 );
16
17 try{
18 $result = civicrm_api3('PriceSet', 'create', $params);
19 }
20 catch (CiviCRM_API3_Exception $e) {
21 // Handle error here.
22 $errorMessage = $e->getMessage();
23 $errorCode = $e->getErrorCode();
24 $errorData = $e->getExtraParams();
25 return array(
26 'is_error' => 1,
27 'error_message' => $errorMessage,
28 'error_code' => $errorCode,
29 'error_data' => $errorData,
30 );
31 }
32
33 return $result;
34 }
35
36 /**
37 * Function returns array of result expected from previous function.
38 *
39 * @return array
40 * API result array
41 */
42 function price_set_create_expectedresult() {
43
44 $expectedResult = array(
45 'is_error' => 0,
46 'version' => 3,
47 'count' => 1,
48 'id' => 18,
49 'values' => array(
50 '18' => array(
51 'id' => '18',
52 'domain_id' => '',
53 'name' => 'event price',
54 'title' => 'event price',
55 'is_active' => '',
56 'help_pre' => '',
57 'help_post' => '',
58 'javascript' => '',
59 'extends' => '1',
60 'financial_type_id' => '',
61 'is_quick_config' => '',
62 'is_reserved' => '',
63 'min_amount' => '',
64 ),
65 ),
66 );
67
68 return $expectedResult;
69 }
70
71 /*
72 * This example has been generated from the API test suite.
73 * The test that created it is called "testEventPriceSet"
74 * and can be found at:
75 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PriceSetTest.php
76 *
77 * You can see the outcome of the API tests at
78 * https://test.civicrm.org/job/CiviCRM-master-git/
79 *
80 * To Learn about the API read
81 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
82 *
83 * Browse the api on your own site with the api explorer
84 * http://MYSITE.ORG/path/to/civicrm/api
85 *
86 * Read more about testing here
87 * http://wiki.civicrm.org/confluence/display/CRM/Testing
88 *
89 * API Standards documentation:
90 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
91 */