Merge pull request #9072 from jeromelebleu/patch-19386
[civicrm-core.git] / api / v3 / examples / ParticipantStatusType / Create.php
index b4793cfe9f524570fa7d6f1095b3ab13d1b9afec..9059a8b3225bcc6fb9c6298beaeb74d669ec5f8b 100644 (file)
@@ -1,13 +1,6 @@
 <?php
 /**
- * @file
- * Test Generated API Example.
- * See bottom of this file for more detail.
- */
-
-/**
- * Test Generated example of using participant_status_type create API.
- *
+ * Test Generated example demonstrating the ParticipantStatusType.create API.
  *
  * @return array
  *   API result array
@@ -25,7 +18,7 @@ function participant_status_type_create_example() {
   );
 
   try{
-    $result = civicrm_api3('participant_status_type', 'create', $params);
+    $result = civicrm_api3('ParticipantStatusType', 'create', $params);
   }
   catch (CiviCRM_API3_Exception $e) {
     // Handle error here.
@@ -33,7 +26,8 @@ function participant_status_type_create_example() {
     $errorCode = $e->getErrorCode();
     $errorData = $e->getExtraParams();
     return array(
-      'error' => $errorMessage,
+      'is_error' => 1,
+      'error_message' => $errorMessage,
       'error_code' => $errorCode,
       'error_data' => $errorData,
     );
@@ -54,13 +48,13 @@ function participant_status_type_create_expectedresult() {
     'is_error' => 0,
     'version' => 3,
     'count' => 1,
-    'id' => 16,
+    'id' => 18,
     'values' => array(
-      '16' => array(
-        'id' => '16',
+      '18' => array(
+        'id' => '18',
         'name' => 'test status',
         'label' => 'I am a test',
-        'class' => '14',
+        'class' => 'Positive',
         'is_reserved' => 0,
         'is_active' => '1',
         'is_counted' => '1',
@@ -73,11 +67,10 @@ function participant_status_type_create_expectedresult() {
   return $expectedResult;
 }
 
-/**
+/*
 * This example has been generated from the API test suite.
-* The test that created it is called
-* testCreateParticipantStatusType
-* and can be found in
+* The test that created it is called "testGetParticipantStatusType"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ParticipantStatusTypeTest.php
 *
 * You can see the outcome of the API tests at
@@ -87,7 +80,7 @@ function participant_status_type_create_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