CRM-15988 - Update generated examples
[civicrm-core.git] / api / v3 / examples / Phone / Get.php
index df460cf98053daa4aa6e0d8f504ae4db96f685a9..f22274d9e26c9a0a7e01d05467b03a4d12345444 100644 (file)
@@ -1,60 +1,68 @@
 <?php
 /**
- * Test Generated example of using phone get API
- * *
+ * Test Generated example demonstrating the Phone.get API.
+ *
+ * @return array
+ *   API result array
  */
-function phone_get_example(){
-$params = array(
-  'contact_id' => 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