Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-05-24-02-32-04
[civicrm-core.git] / api / v3 / examples / PriceFieldValueGet.php
1 <?php
2
3 /*
4
5 */
6 function price_field_value_get_example(){
7 $params = array(
8 'version' => 3,
9 'name' => 'contribution_amount',
10 );
11
12 $result = civicrm_api( 'price_field_value','get',$params );
13
14 return $result;
15 }
16
17 /*
18 * Function returns array of result expected from previous function
19 */
20 function price_field_value_get_expectedresult(){
21
22 $expectedResult = array(
23 'is_error' => 0,
24 'version' => 3,
25 'count' => 1,
26 'id' => 1,
27 'values' => array(
28 '1' => array(
29 'id' => '1',
30 'price_field_id' => '1',
31 'name' => 'contribution_amount',
32 'label' => 'Contribution Amount',
33 'amount' => '1',
34 'weight' => '1',
35 'is_default' => 0,
36 'is_active' => '1',
37 'financial_type_id' => '1',
38 'deductible_amount' => '0.00',
39 ),
40 ),
41 );
42
43 return $expectedResult ;
44 }
45
46
47 /*
48 * This example has been generated from the API test suite. The test that created it is called
49 *
50 * testGetBasicPriceFieldValue and can be found in
51 * http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/PriceFieldValueTest.php
52 *
53 * You can see the outcome of the API tests at
54 * http://tests.dev.civicrm.org/trunk/results-api_v3
55 *
56 * To Learn about the API read
57 * http://book.civicrm.org/developer/current/techniques/api/
58 *
59 * and review the wiki at
60 * http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
61 *
62 * Read more about testing here
63 * http://wiki.civicrm.org/confluence/display/CRM/Testing
64 *
65 * API Standards documentation:
66 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
67 */