Refactor event management system to transition from mobile to gestion

This commit updates the event management system by replacing references to mobile inscriptions with gestion inscriptions. It includes changes to AJAX endpoints, helper functions, and UI elements to reflect this transition. The updates enhance the overall structure and maintainability of the codebase while ensuring that user access and permissions are properly managed for the new gestion interface.
This commit is contained in:
2026-06-27 12:10:19 -04:00
parent 9acc8102e8
commit 8f428a5c18
16 changed files with 619 additions and 576 deletions

View File

@ -4,14 +4,14 @@
include_once('php/inc_fx_modifierinscriptions.php');
include_once('php/inc_fx_memberships.php');
include_once('php/inc_fx_promoteur.php');
include_once('php/inc_fx_inscriptions_mobile.php');
include_once('php/inc_fx_inscriptions_gestion.php');
require_once('superadm/php/inc_manager.php');
global $objDatabase, $vDomaine, $strLangue;
$intEveId = 0;
if (isset($_GET['promoteur_eve_id'])) {
$intEveId = fxInscrMobileParseEveId($_GET['promoteur_eve_id']);
$intEveId = fxInscrGestionParseEveId($_GET['promoteur_eve_id']);
}
if ($intEveId === 0) {
@ -23,6 +23,6 @@ if ($intEveId === 0) {
return;
}
echo '<div class="inscr-mobile-page">';
fxInscrMobileRun($intEveId, $strLangue);
echo '<div class="inscr-gestion-page">';
fxInscrGestionRun($intEveId, $strLangue);
echo '</div>';