Import initial du projet Production
This commit is contained in:
36
Controleur/ControleurPrestatairenpluscons.php
Normal file
36
Controleur/ControleurPrestatairenpluscons.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/College_temp.php';
|
||||
require_once 'Modele/Menuvueutilisateur.php';
|
||||
|
||||
class ControleurPrestatairenpluscons extends Controleur {
|
||||
private $menuvue;
|
||||
private $college_temp;
|
||||
|
||||
public function __construct() {
|
||||
$this->menuvue = new Menuvueutilisateur();
|
||||
$this->menuvue->getMenuVue('Prestatairenpluscons');
|
||||
$this->college_temp = new College_temp();
|
||||
|
||||
$_SESSION['modeDevis'] = "0";
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$idPolice = $_SESSION['idPolice_C'];
|
||||
|
||||
$college= $this->college_temp->getListeCollege($idPolice);
|
||||
|
||||
$this->genererVue(array('college' => $college));
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user