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:
@ -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>';
|
||||
|
||||
Reference in New Issue
Block a user