CRM-13072 Update examples
[civicrm-core.git] / api / v3 / examples / Setting / GetAllDomains.php
index bf363cc43c947400eff7ee58cdfa5ce7fd186471..32af9a1a66cb80301261f4d8f6e97a1ebfed29a9 100644 (file)
@@ -1,21 +1,29 @@
 <?php
-
-/*
- shows getting a variable for all domains
+/**
+ * Test Generated example of using setting Get API
+ * shows getting a variable for all domains *
  */
 function setting_get_example(){
 $params = array(
-  'version' => 3,
   'domain_id' => 'all',
   'return' => 'uniq_email_per_site',
 );
 
-  $result = civicrm_api( 'setting','Get',$params );
+try{
+  $result = civicrm_api3('setting', '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 setting_get_expectedresult(){
@@ -37,7 +45,7 @@ function setting_get_expectedresult(){
     ),
 );
 
-  return $expectedResult  ;
+  return $expectedResult;
 }