Merge remote-tracking branch 'upstream/4.3' into 4.3-4.4-2013-10-28-14-52-15
[civicrm-core.git] / api / v3 / examples / OptionValue / SortOption.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using option_value getsingle API
4 * demonstrates use of Sort param (available in many api functions). Also, getsingle *
6a488035
TO
5 */
6function option_value_getsingle_example(){
53ca8fd7 7$params = array(
6a488035 8 'option_group_id' => 1,
53ca8fd7 9 'options' => array(
6a488035
TO
10 'sort' => 'label DESC',
11 'limit' => 1,
12 ),
13);
14
fb32de45 15try{
16 $result = civicrm_api3('option_value', 'getsingle', $params);
17}
18catch (CiviCRM_API3_Exception $e) {
19 // handle error here
20 $errorMessage = $e->getMessage();
21 $errorCode = $e->getErrorCode();
22 $errorData = $e->getExtraParams();
23 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
24}
6a488035 25
fb32de45 26return $result;
6a488035
TO
27}
28
fb32de45 29/**
6a488035
TO
30 * Function returns array of result expected from previous function
31 */
32function option_value_getsingle_expectedresult(){
33
53ca8fd7 34 $expectedResult = array(
6a488035
TO
35 'id' => '4',
36 'option_group_id' => '1',
37 'label' => 'SMS',
38 'value' => '4',
39 'filter' => 0,
40 'weight' => '4',
41 'is_optgroup' => 0,
42 'is_reserved' => 0,
43 'is_active' => '1',
44);
45
fb32de45 46 return $expectedResult;
6a488035
TO
47}
48
49
50/*
51* This example has been generated from the API test suite. The test that created it is called
52*
53* testGetSingleValueOptionValueSort and can be found in
54* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/OptionValueTest.php
55*
56* You can see the outcome of the API tests at
57* http://tests.dev.civicrm.org/trunk/results-api_v3
58*
59* To Learn about the API read
60* http://book.civicrm.org/developer/current/techniques/api/
61*
62* and review the wiki at
63* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
64*
65* Read more about testing here
66* http://wiki.civicrm.org/confluence/display/CRM/Testing
67*
68* API Standards documentation:
69* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
70*/