X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=inline;f=api%2Fv3%2Fexamples%2FParticipant%2FNestedDelete.php;h=8f098e52c344170e0f072a090f921fdd13605b16;hb=cf8f0fff2d9b29aeeb6b511208054da760b4d544;hp=48277c28b441db8ac9622a3da3163a32cc083c1a;hpb=674cb8b854f6008090d4dcce9372ee76346a198f;p=civicrm-core.git diff --git a/api/v3/examples/Participant/NestedDelete.php b/api/v3/examples/Participant/NestedDelete.php index 48277c28b4..8f098e52c3 100644 --- a/api/v3/examples/Participant/NestedDelete.php +++ b/api/v3/examples/Participant/NestedDelete.php @@ -8,10 +8,10 @@ * API result array */ function participant_get_example() { - $params = array( + $params = [ 'contact_id' => 4, 'api.participant.delete' => 1, - ); + ]; try{ $result = civicrm_api3('Participant', 'get', $params); @@ -21,11 +21,12 @@ function participant_get_example() { $errorMessage = $e->getMessage(); $errorCode = $e->getErrorCode(); $errorData = $e->getExtraParams(); - return array( - 'error' => $errorMessage, + return [ + 'is_error' => 1, + 'error_message' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData, - ); + ]; } return $result; @@ -39,18 +40,18 @@ function participant_get_example() { */ function participant_get_expectedresult() { - $expectedResult = array( + $expectedResult = [ 'is_error' => 0, 'version' => 3, 'count' => 2, - 'values' => array( - '2' => array( + 'values' => [ + '2' => [ 'contact_id' => '4', 'contact_type' => 'Individual', 'contact_sub_type' => '', 'sort_name' => 'Anderson, Anthony', 'display_name' => 'Mr. Anthony Anderson II', - 'event_id' => '39', + 'event_id' => '41', 'event_title' => 'Annual CiviCRM meet', 'event_start_date' => '2013-07-29 00:00:00', 'event_end_date' => '2013-08-04 00:00:00', @@ -61,31 +62,31 @@ function participant_get_expectedresult() { 'event_type' => 'Conference', 'participant_status_id' => '2', 'participant_status' => 'Attended', - 'participant_role' => 'Attendee', 'participant_role_id' => '1', + 'participant_role' => 'Attendee', 'participant_register_date' => '2007-02-19 00:00:00', 'participant_source' => 'Wimbeldon', 'participant_note' => '', 'participant_is_pay_later' => 0, 'participant_is_test' => 0, - 'participant_registered_by_id' => '', + 'participant_registered_by_id' => '1', 'participant_discount_name' => '', 'participant_campaign_id' => '', 'id' => '2', - 'api.participant.delete' => array( + 'api.participant.delete' => [ 'is_error' => 0, 'version' => 3, 'count' => 1, 'values' => 1, - ), - ), - '3' => array( + ], + ], + '3' => [ 'contact_id' => '4', 'contact_type' => 'Individual', 'contact_sub_type' => '', 'sort_name' => 'Anderson, Anthony', 'display_name' => 'Mr. Anthony Anderson II', - 'event_id' => '39', + 'event_id' => '41', 'event_title' => 'Annual CiviCRM meet', 'event_start_date' => '2013-07-29 00:00:00', 'event_end_date' => '2013-08-04 00:00:00', @@ -96,8 +97,8 @@ function participant_get_expectedresult() { 'event_type' => 'Conference', 'participant_status_id' => '2', 'participant_status' => 'Attended', - 'participant_role' => 'Attendee', 'participant_role_id' => '1', + 'participant_role' => 'Attendee', 'participant_register_date' => '2007-02-19 00:00:00', 'participant_source' => 'Wimbeldon', 'participant_note' => '', @@ -107,15 +108,15 @@ function participant_get_expectedresult() { 'participant_discount_name' => '', 'participant_campaign_id' => '', 'id' => '3', - 'api.participant.delete' => array( + 'api.participant.delete' => [ 'is_error' => 0, 'version' => 3, 'count' => 1, 'values' => 1, - ), - ), - ), - ); + ], + ], + ], + ]; return $expectedResult; }