CRM-14043 - cid=0 contribution form giving contribution to logged in user
[civicrm-core.git] / api / v3 / examples / Setting / GetAllDomains.php
index e8657d8501a919635df8aae8fb4dea59edbde509..32af9a1a66cb80301261f4d8f6e97a1ebfed29a9 100644 (file)
@@ -1,43 +1,51 @@
 <?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,
+$params = array(
   '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(){
 
-  $expectedResult = array( 
+  $expectedResult = array(
   'is_error' => 0,
   'version' => 3,
   'count' => 3,
-  'values' => array( 
-      '1' => array( 
+  'values' => array(
+      '1' => array(
           'uniq_email_per_site' => '1',
         ),
-      '2' => array( 
+      '2' => array(
           'uniq_email_per_site' => '1',
         ),
-      '3' => array( 
+      '3' => array(
           'uniq_email_per_site' => '1',
         ),
     ),
 );
 
-  return $expectedResult  ;
+  return $expectedResult;
 }