value pairs. If $params is set * as null, all participant_statuses will be returned * * @return array * Array of matching participant_statuses */ function civicrm_api3_participant_status_type_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); } /** * Delete an existing participant_status. * * This method is used to delete any existing participant_status. id of the group * to be deleted is required field in $params array * * @param array $params * Array containing id of the group. * to be deleted * * @return array * api result array */ function civicrm_api3_participant_status_type_delete($params) { if (CRM_Event_BAO_ParticipantStatusType::deleteParticipantStatusType($params['id'])) { return civicrm_api3_create_success(TRUE); } return civicrm_api3_create_error(TRUE); }