Files
ms1inscription-v5/superadm/php/inc_settings.php
stephan 89d389c76d Update version code to 4.72.726 and enhance superadmin sidebar layout
This commit increments the version code to 4.72.726 and introduces structural improvements to the superadmin sidebar. The HTML layout is refined with the addition of a dedicated body section for the V2 panel, while CSS adjustments enhance padding, margins, and overall styling for a more cohesive user experience. These changes aim to improve accessibility and visual organization within the sidebar.
2026-07-02 18:40:11 -04:00

28 lines
1.4 KiB
PHP

<?php
ini_set('memory_limit', '-1');
date_default_timezone_set('America/Montreal');
require_once $_SERVER["DOCUMENT_ROOT"] . "/php/inc_settings.php";
// Cache-bust CSS/JS superadmin — aligné sur _VERSION_CODE (php/inc_settings.php)
$vVersion = _VERSION_CODE;
global $vDomaine, $vRepertoireFichiers, $arrConFTP,$arrConDatabasePreProd,$favicon,$faviconadm,$arrConDatabasecrm;
$vSuperadm=1;
// CHEMINS IMAGES
$favicon=$faviconadm;
$path_images['virtual'] = $arrConFTP['path_prod'] . $vRepertoireFichiers . '/images/';
$path_images['physical'] = $vDomaine . $vRepertoireFichiers . '/images/';
$path_images_evenements['virtual'] = $arrConFTP['path_prod'] . $vRepertoireFichiers . '/images/evenements/';
$path_images_evenements['physical'] = $vDomaine . $vRepertoireFichiers . '/images/evenements/';
$path_images_backgrounds['virtual'] = $arrConFTP['path_prod'] . $vRepertoireFichiers . '/images/backgrounds/';
$path_images_backgrounds['physical'] = $vDomaine . $vRepertoireFichiers . '/images/backgrounds/';
$path_pdf_waivers['virtual'] = $arrConFTP['path_prod'] . $vRepertoireFichiers . '/pdf/waivers/';
$path_pdf_waivers['physical'] = $vDomaine . $vRepertoireFichiers . '/pdf/waivers/';
$path_pdf_questions['virtual'] = $arrConFTP['path_prod'] . $vRepertoireFichiers . '/pdf/questions/';
$path_pdf_questions['physical'] = $vDomaine . $vRepertoireFichiers . '/pdf/questions/';