CRM-15988 - Update generated examples
[civicrm-core.git] / api / v3 / examples / Contact / Get.php
index 13e368caa0ac9573daa908ae3015864a20804f56..79be6cea475214bb6026c5583cfbb17e6783aabe 100644 (file)
 <?php
 /**
- * Test Generated example of using contact get API
- * *
+ * Test Generated example demonstrating the Contact.get API.
+ *
+ * @return array
+ *   API result array
  */
-function contact_get_example(){
-$params = array(
-  'email' => 'man2@yahoo.com',
-);
+function contact_get_example() {
+  $params = array(
+    'email' => 'man2@yahoo.com',
+  );
 
-try{
-  $result = civicrm_api3('contact', '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('Contact', '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 contact_get_expectedresult(){
+function contact_get_expectedresult() {
 
   $expectedResult = array(
-  'is_error' => 0,
-  'version' => 3,
-  'count' => 1,
-  'id' => 1,
-  'values' => array(
+    'is_error' => 0,
+    'version' => 3,
+    'count' => 1,
+    'id' => 1,
+    'values' => array(
       '1' => array(
-          'contact_id' => '1',
-          'contact_type' => 'Individual',
-          'contact_sub_type' => '',
-          'sort_name' => 'man2@yahoo.com',
-          'display_name' => 'man2@yahoo.com',
-          'do_not_email' => 0,
-          'do_not_phone' => 0,
-          'do_not_mail' => 0,
-          'do_not_sms' => 0,
-          'do_not_trade' => 0,
-          'is_opt_out' => 0,
-          'legal_identifier' => '',
-          'external_identifier' => '',
-          'nick_name' => '',
-          'legal_name' => '',
-          'image_URL' => '',
-          'preferred_communication_method' => '',
-          'preferred_language' => 'en_US',
-          'preferred_mail_format' => 'Both',
-          'first_name' => '',
-          'middle_name' => '',
-          'last_name' => '',
-          'prefix_id' => '',
-          'suffix_id' => '',
-          'formal_title' => '',
-          'communication_style_id' => '',
-          'job_title' => '',
-          'gender_id' => '',
-          'birth_date' => '',
-          'is_deceased' => 0,
-          'deceased_date' => '',
-          'household_name' => '',
-          'organization_name' => '',
-          'sic_code' => '',
-          'contact_is_deleted' => 0,
-          'current_employer' => '',
-          'address_id' => '2',
-          'street_address' => '1 my road',
-          'supplemental_address_1' => '',
-          'supplemental_address_2' => '',
-          'city' => '',
-          'postal_code_suffix' => '',
-          'postal_code' => '',
-          'geo_code_1' => '',
-          'geo_code_2' => '',
-          'state_province_id' => '',
-          'country_id' => '',
-          'phone_id' => '',
-          'phone_type_id' => '',
-          'phone' => '',
-          'email_id' => '1',
-          'email' => 'man2@yahoo.com',
-          'on_hold' => 0,
-          'im_id' => '',
-          'provider_id' => '',
-          'im' => '',
-          'worldregion_id' => '',
-          'world_region' => '',
-          'individual_prefix' => '',
-          'individual_suffix' => '',
-          'communication_style' => '',
-          'gender' => '',
-          'state_province_name' => '',
-          'state_province' => '',
-          'country' => '',
-          'id' => '1',
-        ),
+        'contact_id' => '1',
+        'contact_type' => 'Individual',
+        'contact_sub_type' => '',
+        'sort_name' => 'man2@yahoo.com',
+        'display_name' => 'man2@yahoo.com',
+        'do_not_email' => 0,
+        'do_not_phone' => 0,
+        'do_not_mail' => 0,
+        'do_not_sms' => 0,
+        'do_not_trade' => 0,
+        'is_opt_out' => 0,
+        'legal_identifier' => '',
+        'external_identifier' => '',
+        'nick_name' => '',
+        'legal_name' => '',
+        'image_URL' => '',
+        'preferred_communication_method' => '',
+        'preferred_language' => 'en_US',
+        'preferred_mail_format' => 'Both',
+        'first_name' => '',
+        'middle_name' => '',
+        'last_name' => '',
+        'prefix_id' => '',
+        'suffix_id' => '',
+        'formal_title' => '',
+        'communication_style_id' => '',
+        'job_title' => '',
+        'gender_id' => '',
+        'birth_date' => '',
+        'is_deceased' => 0,
+        'deceased_date' => '',
+        'household_name' => '',
+        'organization_name' => '',
+        'sic_code' => '',
+        'contact_is_deleted' => 0,
+        'current_employer' => '',
+        'address_id' => '2',
+        'street_address' => '1 my road',
+        'supplemental_address_1' => '',
+        'supplemental_address_2' => '',
+        'city' => '',
+        'postal_code_suffix' => '',
+        'postal_code' => '',
+        'geo_code_1' => '',
+        'geo_code_2' => '',
+        'state_province_id' => '',
+        'country_id' => '',
+        'phone_id' => '',
+        'phone_type_id' => '',
+        'phone' => '',
+        'email_id' => '1',
+        'email' => 'man2@yahoo.com',
+        'on_hold' => 0,
+        'im_id' => '',
+        'provider_id' => '',
+        'im' => '',
+        'worldregion_id' => '',
+        'world_region' => '',
+        'individual_prefix' => '',
+        'individual_suffix' => '',
+        'communication_style' => '',
+        'gender' => '',
+        'state_province_name' => '',
+        'state_province' => '',
+        'country' => '',
+        'id' => '1',
+      ),
     ),
-);
+  );
 
   return $expectedResult;
 }
 
-
 /*
-* This example has been generated from the API test suite. The test that created it is called
-*
-* testContactGetEmail and can be found in
+* This example has been generated from the API test suite.
+* The test that created it is called "testContactGetEmail"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContactTest.php
 *
 * You can see the outcome of the API tests at
@@ -121,7 +129,7 @@ function contact_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