This commit introduces several improvements to the mobile registration functionality, including the addition of a new function for parsing event IDs and updates to the CSS for a cleaner layout. The logic for displaying event information has been refined, and new JavaScript features have been added to improve user navigation. The version code is incremented to 4.72.671 to reflect these enhancements, further optimizing the mobile user experience.
29 lines
695 B
PHP
29 lines
695 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_mobile.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']);
|
|
}
|
|
|
|
if ($intEveId === 0) {
|
|
if ($strLangue === 'fr') {
|
|
echo 'Une erreur quelconque est survenue.';
|
|
} else {
|
|
echo 'A generic error occurred.';
|
|
}
|
|
return;
|
|
}
|
|
|
|
echo '<div class="inscr-mobile-page">';
|
|
fxInscrMobileRun($intEveId, $strLangue);
|
|
echo '</div>';
|