This commit introduces new synchronization features to the ChronoTrack API, including the ability to preview and push participant data to ChronoTrack. A new push panel is added to the admin interface, allowing users to view eligible participants and initiate synchronization. Additionally, backend functions are implemented to handle synchronization requests, enhancing the overall data management capabilities of the API. These changes aim to streamline the process of updating participant information within the ChronoTrack system.
18 lines
647 B
PHP
18 lines
647 B
PHP
<?php
|
|
/**
|
|
* MSIN API ChronoTrack — chargement du module (parallèle au site legacy).
|
|
*/
|
|
|
|
if (!defined('MSIN_API_CHRONOTRACK_LOADED')) {
|
|
define('MSIN_API_CHRONOTRACK_LOADED', true);
|
|
|
|
require_once __DIR__ . '/fx_chronotrack_constants.php';
|
|
require_once __DIR__ . '/fx_chronotrack_settings.php';
|
|
require_once __DIR__ . '/fx_chronotrack_http.php';
|
|
require_once __DIR__ . '/fx_chronotrack_oauth.php';
|
|
require_once __DIR__ . '/fx_chronotrack_events.php';
|
|
require_once __DIR__ . '/fx_chronotrack_config.php';
|
|
require_once __DIR__ . '/fx_chronotrack_sync.php';
|
|
require_once __DIR__ . '/fx_chronotrack_admin.php';
|
|
}
|