Merge pull request #9690 from jitendrapurohit/CRM-19887
[civicrm-core.git] / api / v3 / examples / GroupContact / Get.php
index 2a6e5ef0e3013534b27ac77fd85b63f606c77313..47511c3dead24bb0b5b38bb65c886ed8df7097da 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /**
- * Test Generated example of using group_contact get API.
- *
+ * Test Generated example demonstrating the GroupContact.get API.
  *
  * @return array
  *   API result array
@@ -12,7 +11,7 @@ function group_contact_get_example() {
   );
 
   try{
-    $result = civicrm_api3('group_contact', 'get', $params);
+    $result = civicrm_api3('GroupContact', 'get', $params);
   }
   catch (CiviCRM_API3_Exception $e) {
     // Handle error here.
@@ -20,7 +19,8 @@ function group_contact_get_example() {
     $errorCode = $e->getErrorCode();
     $errorData = $e->getExtraParams();
     return array(
-      'error' => $errorMessage,
+      'is_error' => 1,
+      'error_message' => $errorMessage,
       'error_code' => $errorCode,
       'error_data' => $errorData,
     );
@@ -58,11 +58,10 @@ function group_contact_get_expectedresult() {
   return $expectedResult;
 }
 
-/**
+/*
 * This example has been generated from the API test suite.
-* The test that created it is called
-* testGet
-* and can be found in
+* The test that created it is called "testGet"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/GroupContactTest.php
 *
 * You can see the outcome of the API tests at
@@ -72,7 +71,7 @@ function group_contact_get_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