14 lines
436 B
PHP
Executable File
14 lines
436 B
PHP
Executable File
<?php
|
|
|
|
$periodicite = $this->periodicite->getListe();
|
|
$forfaitTaux = $this->college_temp->getTauxForfait();
|
|
$observation = $this->college_temp->getObservationplafond();
|
|
|
|
$_SESSION['choixForfait'] = "forfait";
|
|
|
|
$actes = $this->familleacte->getActe();
|
|
|
|
|
|
$this->genererVueAjax(array('forfaitTaux' => $forfaitTaux,'actes' => $actes,
|
|
'periodicite' => $periodicite,'observation' => $observation));
|
|
?>
|