26 lines
620 B
PHP
26 lines
620 B
PHP
<?php
|
|
|
|
namespace Paheko;
|
|
session_start();
|
|
|
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
|
|
|
// liste des années fiscales
|
|
$anneeCourante = date("Y");
|
|
$anneesFiscales = Utils::getAnneesFiscales();
|
|
if ($anneesFiscales[0] < $anneeCourante) {
|
|
array_unshift($anneesFiscales, $anneeCourante);
|
|
}
|
|
|
|
if (f('change'))
|
|
{
|
|
$_SESSION['annee_recu'] = f('annee_recu');
|
|
\Paheko\Utils::redirect(f('from') ?: \Paheko\Utils::plugin_url());
|
|
}
|
|
|
|
$tpl->assign('anneesFiscales', $anneesFiscales);
|
|
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
|
$tpl->assign('from', qg('from'));
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/choix_annee.tpl');
|