CRM-15988 - Update generated examples
[civicrm-core.git] / api / v3 / examples / Email / Replace.php
index f6b95fb5534777a2f884202deb15f64877ed30fb..74654ade260be09a9bf7d2e3122adc150b262985 100644 (file)
 <?php
 /**
- * Test Generated example of using email replace API
- * *
+ * Test Generated example demonstrating the Email.replace API.
+ *
+ * @return array
+ *   API result array
  */
-function email_replace_example(){
-$params = array(
-  'contact_id' => 9,
-  'values' => array(
+function email_replace_example() {
+  $params = array(
+    'contact_id' => 9,
+    'values' => array(
       '0' => array(
-          'location_type_id' => 18,
-          'email' => '1-1@example.com',
-          'is_primary' => 1,
-        ),
+        'location_type_id' => 18,
+        'email' => '1-1@example.com',
+        'is_primary' => 1,
+      ),
       '1' => array(
-          'location_type_id' => 18,
-          'email' => '1-2@example.com',
-          'is_primary' => 0,
-        ),
+        'location_type_id' => 18,
+        'email' => '1-2@example.com',
+        'is_primary' => 0,
+      ),
       '2' => array(
-          'location_type_id' => 18,
-          'email' => '1-3@example.com',
-          'is_primary' => 0,
-        ),
+        'location_type_id' => 18,
+        'email' => '1-3@example.com',
+        'is_primary' => 0,
+      ),
       '3' => array(
-          'location_type_id' => 19,
-          'email' => '2-1@example.com',
-          'is_primary' => 0,
-        ),
+        'location_type_id' => 19,
+        'email' => '2-1@example.com',
+        'is_primary' => 0,
+      ),
       '4' => array(
-          'location_type_id' => 19,
-          'email' => '2-2@example.com',
-          'is_primary' => 0,
-        ),
+        'location_type_id' => 19,
+        'email' => '2-2@example.com',
+        'is_primary' => 0,
+      ),
     ),
-);
+  );
 
-try{
-  $result = civicrm_api3('email', 'replace', $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('Email', 'replace', $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 email_replace_expectedresult(){
+function email_replace_expectedresult() {
 
   $expectedResult = array(
-  'is_error' => 0,
-  'version' => 3,
-  'count' => 5,
-  'values' => array(
+    'is_error' => 0,
+    'version' => 3,
+    'count' => 5,
+    'values' => array(
       '12' => array(
-          'id' => '12',
-          'contact_id' => '9',
-          'location_type_id' => '18',
-          'email' => '1-1@example.com',
-          'is_primary' => '1',
-          'is_billing' => '',
-          'on_hold' => '',
-          'is_bulkmail' => '',
-          'hold_date' => '',
-          'reset_date' => '',
-          'signature_text' => '',
-          'signature_html' => '',
-        ),
+        'id' => '12',
+        'contact_id' => '9',
+        'location_type_id' => '18',
+        'email' => '1-1@example.com',
+        'is_primary' => '1',
+        'is_billing' => '',
+        'on_hold' => '',
+        'is_bulkmail' => '',
+        'hold_date' => '',
+        'reset_date' => '',
+        'signature_text' => '',
+        'signature_html' => '',
+      ),
       '13' => array(
-          'id' => '13',
-          'contact_id' => '9',
-          'location_type_id' => '18',
-          'email' => '1-2@example.com',
-          'is_primary' => 0,
-          'is_billing' => '',
-          'on_hold' => '',
-          'is_bulkmail' => '',
-          'hold_date' => '',
-          'reset_date' => '',
-          'signature_text' => '',
-          'signature_html' => '',
-        ),
+        'id' => '13',
+        'contact_id' => '9',
+        'location_type_id' => '18',
+        'email' => '1-2@example.com',
+        'is_primary' => 0,
+        'is_billing' => '',
+        'on_hold' => '',
+        'is_bulkmail' => '',
+        'hold_date' => '',
+        'reset_date' => '',
+        'signature_text' => '',
+        'signature_html' => '',
+      ),
       '14' => array(
-          'id' => '14',
-          'contact_id' => '9',
-          'location_type_id' => '18',
-          'email' => '1-3@example.com',
-          'is_primary' => 0,
-          'is_billing' => '',
-          'on_hold' => '',
-          'is_bulkmail' => '',
-          'hold_date' => '',
-          'reset_date' => '',
-          'signature_text' => '',
-          'signature_html' => '',
-        ),
+        'id' => '14',
+        'contact_id' => '9',
+        'location_type_id' => '18',
+        'email' => '1-3@example.com',
+        'is_primary' => 0,
+        'is_billing' => '',
+        'on_hold' => '',
+        'is_bulkmail' => '',
+        'hold_date' => '',
+        'reset_date' => '',
+        'signature_text' => '',
+        'signature_html' => '',
+      ),
       '15' => array(
-          'id' => '15',
-          'contact_id' => '9',
-          'location_type_id' => '19',
-          'email' => '2-1@example.com',
-          'is_primary' => 0,
-          'is_billing' => '',
-          'on_hold' => '',
-          'is_bulkmail' => '',
-          'hold_date' => '',
-          'reset_date' => '',
-          'signature_text' => '',
-          'signature_html' => '',
-        ),
+        'id' => '15',
+        'contact_id' => '9',
+        'location_type_id' => '19',
+        'email' => '2-1@example.com',
+        'is_primary' => 0,
+        'is_billing' => '',
+        'on_hold' => '',
+        'is_bulkmail' => '',
+        'hold_date' => '',
+        'reset_date' => '',
+        'signature_text' => '',
+        'signature_html' => '',
+      ),
       '16' => array(
-          'id' => '16',
-          'contact_id' => '9',
-          'location_type_id' => '19',
-          'email' => '2-2@example.com',
-          'is_primary' => 0,
-          'is_billing' => '',
-          'on_hold' => '',
-          'is_bulkmail' => '',
-          'hold_date' => '',
-          'reset_date' => '',
-          'signature_text' => '',
-          'signature_html' => '',
-        ),
+        'id' => '16',
+        'contact_id' => '9',
+        'location_type_id' => '19',
+        'email' => '2-2@example.com',
+        'is_primary' => 0,
+        'is_billing' => '',
+        'on_hold' => '',
+        'is_bulkmail' => '',
+        'hold_date' => '',
+        'reset_date' => '',
+        'signature_text' => '',
+        'signature_html' => '',
+      ),
     ),
-);
+  );
 
   return $expectedResult;
 }
 
-
 /*
-* This example has been generated from the API test suite. The test that created it is called
-*
-* testReplaceEmail and can be found in
+* This example has been generated from the API test suite.
+* The test that created it is called "testReplaceEmail"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/EmailTest.php
 *
 * You can see the outcome of the API tests at
@@ -149,7 +157,7 @@ function email_replace_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