Merge pull request #2714 from jitendrapurohit/CRMTestFix
[civicrm-core.git] / api / v3 / examples / Participant / NestedEventGet.php
index aeb472a37b13117ff095114d941e638ae443044a..f349e432b2fcf2f79f3c3812902091f532eabdad 100644 (file)
@@ -1,21 +1,29 @@
 <?php
-
-/*
- use nested get to get an event
+/**
+ * Test Generated example of using participant get API
+ * use nested get to get an event *
  */
 function participant_get_example(){
 $params = array(
   'id' => 1,
-  'version' => 3,
   'api.event.get' => 1,
 );
 
-  $result = civicrm_api( 'participant','get',$params );
+try{
+  $result = civicrm_api3('participant', '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 participant_get_expectedresult(){
@@ -34,8 +42,8 @@ function participant_get_expectedresult(){
           'display_name' => 'Mr. Anthony Anderson II',
           'event_id' => '6',
           'event_title' => 'Annual CiviCRM meet',
-          'event_start_date' => '2008-10-21 00:00:00',
-          'event_end_date' => '2008-10-23 00:00:00',
+          'event_start_date' => '2013-07-29 00:00:00',
+          'event_end_date' => '2013-08-04 00:00:00',
           'participant_id' => '1',
           'participant_fee_level' => '',
           'participant_fee_amount' => '',
@@ -69,10 +77,10 @@ function participant_get_expectedresult(){
                       'event_type_id' => '1',
                       'participant_listing_id' => 0,
                       'is_public' => '1',
-                      'start_date' => '2008-10-21 00:00:00',
-                      'event_start_date' => '2008-10-21 00:00:00',
-                      'end_date' => '2008-10-23 00:00:00',
-                      'event_end_date' => '2008-10-23 00:00:00',
+                      'start_date' => '2013-07-29 00:00:00',
+                      'event_start_date' => '2013-07-29 00:00:00',
+                      'end_date' => '2013-08-04 00:00:00',
+                      'event_end_date' => '2013-08-04 00:00:00',
                       'is_online_registration' => '1',
                       'registration_start_date' => '2008-06-01 00:00:00',
                       'registration_end_date' => '2008-10-15 00:00:00',
@@ -89,7 +97,7 @@ function participant_get_expectedresult(){
                       'is_multiple_registrations' => 0,
                       'allow_same_participant_emails' => 0,
                       'is_template' => 0,
-                      'created_date' => '2013-06-22 09:01:44',
+                      'created_date' => '2013-07-28 08:49:19',
                       'is_share' => '1',
                     ),
                 ),
@@ -98,7 +106,7 @@ function participant_get_expectedresult(){
     ),
 );
 
-  return $expectedResult  ;
+  return $expectedResult;
 }
 
 
@@ -106,20 +114,20 @@ function participant_get_expectedresult(){
 * This example has been generated from the API test suite. The test that created it is called
 *
 * testGetNestedEventGet and can be found in
-* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ParticipantTest.php
+* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ParticipantTest.php
 *
 * You can see the outcome of the API tests at
-* http://tests.dev.civicrm.org/trunk/results-api_v3
+* https://test.civicrm.org/job/CiviCRM-master-git/
 *
 * To Learn about the API read
-* http://book.civicrm.org/developer/current/techniques/api/
+* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
 *
-* and review the wiki at
-* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
+* Browse the api on your own site with the api explorer
+* http://MYSITE.ORG/path/to/civicrm/api/explorer
 *
 * Read more about testing here
 * http://wiki.civicrm.org/confluence/display/CRM/Testing
 *
 * API Standards documentation:
 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
-*/
\ No newline at end of file
+*/