Merge pull request #2288 from eileenmcnaughton/CRM-14043
[civicrm-core.git] / api / v3 / examples / SettingRevert.php
index 509c0ca111092596019a8e1f748c3976caba924d..5ae0d9d05aca0326e07ba59fc0d0102370e346d6 100644 (file)
@@ -1,20 +1,28 @@
 <?php
-
-/*
- Demonstrates reverting a parameter to default value
+/**
+ * Test Generated example of using setting revert API
+ * Demonstrates reverting a parameter to default value *
  */
 function setting_revert_example(){
 $params = array(
-  'version' => 3,
   'name' => 'address_format',
 );
 
-  $result = civicrm_api( 'setting','revert',$params );
+try{
+  $result = civicrm_api3('setting', 'revert', $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 setting_revert_expectedresult(){
@@ -42,7 +50,7 @@ function setting_revert_expectedresult(){
     ),
 );
 
-  return $expectedResult  ;
+  return $expectedResult;
 }
 
 
@@ -66,4 +74,4 @@ function setting_revert_expectedresult(){
 *
 * API Standards documentation:
 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
-*/
\ No newline at end of file
+*/