Merge pull request #2530 from monishdeb/CRM-14195
[civicrm-core.git] / api / v3 / examples / PriceFieldValue / Create.php
1 <?php
2 /**
3 * Test Generated example of using price_field_value create API
4 * *
5 */
6 function price_field_value_create_example(){
7 $params = array(
8 'price_field_id' => 13,
9 'membership_type_id' => 5,
10 'name' => 'memType1',
11 'label' => 'memType1',
12 'amount' => 90,
13 'membership_num_terms' => 2,
14 'is_active' => 1,
15 'financial_type_id' => 2,
16 );
17
18 try{
19 $result = civicrm_api3('price_field_value', 'create', $params);
20 }
21 catch (CiviCRM_API3_Exception $e) {
22 // handle error here
23 $errorMessage = $e->getMessage();
24 $errorCode = $e->getErrorCode();
25 $errorData = $e->getExtraParams();
26 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
27 }
28
29 return $result;
30 }
31
32 /**
33 * Function returns array of result expected from previous function
34 */
35 function price_field_value_create_expectedresult(){
36
37 $expectedResult = array(
38 'is_error' => 0,
39 'version' => 3,
40 'count' => 1,
41 'id' => 10,
42 'values' => array(
43 '10' => array(
44 'id' => '10',
45 'price_field_id' => '13',
46 'name' => 'memType1',
47 'label' => 'memType1',
48 'description' => '',
49 'amount' => '90',
50 'count' => '',
51 'max_value' => '',
52 'weight' => '1',
53 'membership_type_id' => '5',
54 'membership_num_terms' => '2',
55 'is_default' => '',
56 'is_active' => '1',
57 'financial_type_id' => '2',
58 'deductible_amount' => '',
59 'contribution_type_id' => '2',
60 ),
61 ),
62 );
63
64 return $expectedResult;
65 }
66
67
68 /*
69 * This example has been generated from the API test suite. The test that created it is called
70 *
71 * testCreatePriceFieldValuewithMultipleTerms and can be found in
72 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PriceFieldValueTest.php
73 *
74 * You can see the outcome of the API tests at
75 * https://test.civicrm.org/job/CiviCRM-master-git/
76 *
77 * To Learn about the API read
78 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
79 *
80 * Browse the api on your own site with the api explorer
81 * http://MYSITE.ORG/path/to/civicrm/api/explorer
82 *
83 * Read more about testing here
84 * http://wiki.civicrm.org/confluence/display/CRM/Testing
85 *
86 * API Standards documentation:
87 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
88 */