value pairs. If $params is set * as null, all participant_statuss will be returned * * @return array (referance) Array of matching participant_statuses * {@getfields ParticipantStatusType_get} * @example ParticipantStatusTypeGet.php * @access public */ 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 (reference) array containing id of the group * to be deleted * * @return array api result array * {@getfields ParticipantStatusType_delete} * @example ParticipantStatusTypeDelete.php * @access public */ 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); }