X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2Fexamples%2FPhone%2FGet.php;h=f22274d9e26c9a0a7e01d05467b03a4d12345444;hb=a828d7b823956a46f5a3cea184389c9b108f80ac;hp=df460cf98053daa4aa6e0d8f504ae4db96f685a9;hpb=03298d98322f2da05e2ab30cb0e2d5b90df47ab3;p=civicrm-core.git diff --git a/api/v3/examples/Phone/Get.php b/api/v3/examples/Phone/Get.php index df460cf980..f22274d9e2 100644 --- a/api/v3/examples/Phone/Get.php +++ b/api/v3/examples/Phone/Get.php @@ -1,60 +1,68 @@ 7, - 'phone' => '(123) 456-7890', -); +function phone_get_example() { + $params = array( + 'contact_id' => 7, + 'phone' => '(123) 456-7890', + ); -try{ - $result = civicrm_api3('phone', 'get', $params); -} -catch (CiviCRM_API3_Exception $e) { - // handle error here - $errorMessage = $e->getMessage(); - $errorCode = $e->getErrorCode(); - $errorData = $e->getExtraParams(); - return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData); -} + try{ + $result = civicrm_api3('Phone', 'get', $params); + } + catch (CiviCRM_API3_Exception $e) { + // Handle error here. + $errorMessage = $e->getMessage(); + $errorCode = $e->getErrorCode(); + $errorData = $e->getExtraParams(); + return array( + 'error' => $errorMessage, + 'error_code' => $errorCode, + 'error_data' => $errorData, + ); + } -return $result; + return $result; } /** - * Function returns array of result expected from previous function + * Function returns array of result expected from previous function. + * + * @return array + * API result array */ -function phone_get_expectedresult(){ +function phone_get_expectedresult() { $expectedResult = array( - 'is_error' => 0, - 'version' => 3, - 'count' => 1, - 'id' => 1, - 'values' => array( - '1' => array( - 'id' => '1', - 'contact_id' => '7', - 'location_type_id' => '10', - 'is_primary' => '1', - 'is_billing' => 0, - 'phone' => '(123) 456-7890', - 'phone_numeric' => '1234567890', - 'phone_type_id' => '1', - ), + 'is_error' => 0, + 'version' => 3, + 'count' => 1, + 'id' => 4, + 'values' => array( + '4' => array( + 'id' => '4', + 'contact_id' => '7', + 'location_type_id' => '10', + 'is_primary' => '1', + 'is_billing' => 0, + 'phone' => '(123) 456-7890', + 'phone_numeric' => '1234567890', + 'phone_type_id' => '1', + ), ), -); + ); return $expectedResult; } - /* -* This example has been generated from the API test suite. The test that created it is called -* -* testGet and can be found in +* This example has been generated from the API test suite. +* The test that created it is called "testGet" +* and can be found at: * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/PhoneTest.php * * You can see the outcome of the API tests at @@ -64,7 +72,7 @@ function phone_get_expectedresult(){ * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API * * Browse the api on your own site with the api explorer -* http://MYSITE.ORG/path/to/civicrm/api/explorer +* http://MYSITE.ORG/path/to/civicrm/api * * Read more about testing here * http://wiki.civicrm.org/confluence/display/CRM/Testing