prestation/Controleur/ControleurAjaxcontextpolice.php
2025-12-05 10:42:46 +00:00

16 lines
392 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/Police.php';
class ControleurAjaxcontextpolice extends Controleur {
private $police;
public function __construct() {
$this->police = new Police();
}
public function index() {
$idPolice = $this->requete->getParametre("idPolice");
$this->police->getContexteAjaxPolice($idPolice);
}
}