Merge pull request #1105 from colemanw/prevNext
[civicrm-core.git] / api / v3 / examples / Setting / CreateAllDomains.php
index 62de561da07a2ff692243695c8566fa13af8f244..fb82eb3c7ff5dc58821f6c3be003bb7b93664d60 100644 (file)
@@ -1,43 +1,51 @@
 <?php
-
-/*
- shows setting a variable for all domains
+/**
+ * Test Generated example of using setting create API
+ * shows setting a variable for all domains *
  */
 function setting_create_example(){
-$params = array( 
-  'version' => 3,
+$params = array(
   'domain_id' => 'all',
   'uniq_email_per_site' => 1,
 );
 
-  $result = civicrm_api( 'setting','create',$params );
+try{
+  $result = civicrm_api3('setting', 'create', $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_create_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;
 }