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.
29 lines
699 B
PHP
29 lines
699 B
PHP
|
|
<?php
|
|
|
|
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_gestion.php');
|
|
require_once('superadm/php/inc_manager.php');
|
|
|
|
global $objDatabase, $vDomaine, $strLangue;
|
|
|
|
$intEveId = 0;
|
|
if (isset($_GET['promoteur_eve_id'])) {
|
|
$intEveId = fxInscrGestionParseEveId($_GET['promoteur_eve_id']);
|
|
}
|
|
|
|
if ($intEveId === 0) {
|
|
if ($strLangue === 'fr') {
|
|
echo 'Une erreur quelconque est survenue.';
|
|
} else {
|
|
echo 'A generic error occurred.';
|
|
}
|
|
return;
|
|
}
|
|
|
|
echo '<div class="inscr-gestion-page">';
|
|
fxInscrGestionRun($intEveId, $strLangue);
|
|
echo '</div>';
|