Depart a zero

This commit is contained in:
2025-12-07 09:35:13 +00:00
commit bbbcb96f64
3335 changed files with 2221682 additions and 0 deletions

12
Cron/Derogation.php Executable file
View File

@@ -0,0 +1,12 @@
<?php
require_once 'Modele.php';
class Derogation extends Modele {
public function getInfos($codeDerogation)
{
$sql = 'select libelle from p_derogation where (codeDerogation=?)';
$resultat = $this->executerRequete($sql, array($codeDerogation));
return $resultat->fetch(PDO::FETCH_ASSOC);
}
}