From 11749e26f0bf6510aa77fd85ee742cd078e72e42 Mon Sep 17 00:00:00 2001 From: jbousquie Date: Mon, 21 Nov 2016 10:40:28 +0100 Subject: [PATCH] =?UTF-8?q?traitement=20sp=C3=A9cifique=20salle=20en=20fon?= =?UTF-8?q?ction=20nom=20de=20la=20machine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/custom.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/admin/custom.php b/admin/custom.php index 53bc907..e1edf54 100644 --- a/admin/custom.php +++ b/admin/custom.php @@ -6,7 +6,22 @@ function SalleDeMachine($machine, $defaut) { $salle = $defaut; + // traitement local spécifique + // =========================== + // Uniformisation du nom VM ou pas + $machineNonVM = str_replace("VM-", "", $machine); + + // Si le nom de la machine commence par un nom de bâtiment, alors $salle = 4 premier cars de $machine + if ($machineNonVM[0] == "A" || $machineNonVM[0] == "B" || $machineNonVM[0] == "C") { + $salle = substr($machineNonVM, 0, 4); + } + // Cas particulier CRDOC + if (strstr($machineNonVM, "CRDOC") != false) { + $salle = "CRDOC"; + }; + + // retourne le nom de la salle return $salle; };