Files
ms1inscription-v5/inc_tableau_inscriptions_gestion.php
stephan 96765aac84 MSIN-4435 Add inc_v2_assets.php integration across multiple files
This commit integrates the `inc_v2_assets.php` file into several PHP scripts, including `compte.php`, `inc_footer.php`, `inc_tableau_gestion_epreuves.php`, `inc_tableau_inscriptions_gestion.php`, and `mobile.php`. Additionally, it registers new scripts for improved functionality in the `inscriptions gestion` context. The version code is incremented to reflect these updates, aiming to enhance asset management and script handling across the application.
2026-07-07 15:27:33 -04:00

31 lines
775 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('php/inc_v2_assets.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">';
fxV2RegisterScript('inscr-gestion');
fxInscrGestionRun($intEveId, $strLangue);
echo '</div>';