This commit updates the version code to 4.72.725 and introduces the `fxSettingsApplyChronotrackApi` function to manage ChronoTrack API credentials based on the environment. It also adds relevant UI elements in the sidebar and form sections for ChronoTrack configuration, enhancing the integration of ChronoTrack features within the application.
17 lines
592 B
PHP
17 lines
592 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_admin.php';
|
|
}
|