Short array syntax - auto-convert api dir
[civicrm-core.git] / api / v3 / examples / ContributionSoft / Delete.php
index c8c6f6e6d984062584dfcf70b0e24e9c37990ccf..5c663ddaa464fa29e8664e8c50732e4b548229c8 100644 (file)
@@ -1,42 +1,51 @@
 <?php
 /**
- * Test Generated example of using contribution_soft delete API
- * *
+ * Test Generated example demonstrating the ContributionSoft.delete API.
+ *
+ * @return array
+ *   API result array
  */
-function contribution_soft_delete_example(){
-$params = array(
-  'id' => 1,
-);
+function contribution_soft_delete_example() {
+  $params = [
+    'id' => 7,
+  ];
 
-try{
-  $result = civicrm_api3('contribution_soft', 'delete', $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('ContributionSoft', 'delete', $params);
+  }
+  catch (CiviCRM_API3_Exception $e) {
+    // Handle error here.
+    $errorMessage = $e->getMessage();
+    $errorCode = $e->getErrorCode();
+    $errorData = $e->getExtraParams();
+    return [
+      'is_error' => 1,
+      'error_message' => $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 contribution_soft_delete_expectedresult(){
+function contribution_soft_delete_expectedresult() {
 
   $expectedResult = '';
 
   return $expectedResult;
 }
 
-
 /*
-* This example has been generated from the API test suite. The test that created it is called
-*
-* testDeleteContributionSoft and can be found in
+* This example has been generated from the API test suite.
+* The test that created it is called "testDeleteContributionSoft"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContributionSoftTest.php
 *
 * You can see the outcome of the API tests at
@@ -46,7 +55,7 @@ function contribution_soft_delete_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