fast_events_scan_error_text

This filter is called if there is a scan error. Normally the API returns the localized error, but you can override it and create your own version. You can make the error-string even more specific by using the scancode that is linked to a specific entrance. See the Scan keys overview.

1<?php
2function your_filter_scan_error_text( $error, $type, $scancode ) {
3  // Do your manipulation here
4  return $error;
5}
6
7add_filter( 'fast_events_scan_error_text', 'your_filter_scan_error_text', 10, 3 );

Parameters

$message

(string) The localized message-string.

$type

(int) The type of message.

  1. Ticket not found’.

  2. ‘Invalid ticket for this entrance’. The ticket was found, but it is not allowed to use it at this entrance.

  3. No entrance scan performed’. This is a staged scan, but the ticket was not scanned at the main entrance.

  4. Ticket already left the event’. An exit scan was done earlier, no scanning possible anymore.

  5. This scan has already been done’. The level 1 or 9 scan has already been carried out.

  6. This event does not support tracking’. The tracking flag is not enabled or the tracking info is not present.

  7. Invalid tracking window’. The finish scan was done outside the tracking window.

  8. Invalid signing key’. The finish scan produced an invalid signing key.

  9. Invalid scan key’. The scan key is not found. This is configuration error of the Scan App.

  10. Wrong type of qrcode’. The qrocde presented is not one that was generated for a tracking event.

  11. Invalid track signature’. The FE Scan App submitted an invalid track signature.

  12. Invalid finish API key’. An invalid API key (not level 9) was used in the FE Scan App

  13. You cannot scan this checkpoint’. The ‘Force Tracking App’ is set; no level 0 and level 1 scans are possible with the Scann App, they need to uploaded automatically by the Tracking App.

$scancode

(string) The scancode used.


Return

(string) Error string.


Changelog

Version

Description

1.0

Introduced.


Examples

Change error strings for scan errors

Change the error string if a customer with a wrong ticket type tries to enter the Backstage tour.

1<?php
2function your_filter_scan_error_text( $error, $type, $scancode ) {
3  if ( 1 === $type && $scancode === 'p5TbVsTrsdLFYO3Y' ) {
4        return "This ticket is not valid for a Backstage tour.";
5  }
6  return $error;
7}
8
9add_filter( 'fast_events_scan_error_text', 'your_filter_scan_error_text', 10, 3 );