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.
28 lines
1.4 KiB
PHP
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/'; |