recusfiscaux/www/admin/versements_personnes.php
engel 3e02319484 amélioration gestion configuration
FossilOrigin-Name: dd08bb3079c4797c7944082ca9377c645a73f466048bd3928eb1e83973f4fba3
2022-02-07 13:32:17 +00:00

17 lines
482 B
PHP

<?php
namespace Garradin;
use Garradin\Plugin\RecusFiscaux\Utils;
// liste des versements totaux par personne
$_SESSION['annee_recu'] = f('annee_recu');
$_SESSION['lesVersementsTotaux'] = Utils::getVersementsTotaux($_SESSION['annee_recu']);
// préparation de l'affichage
$tpl->assign('lesVersementsTotaux', $_SESSION['lesVersementsTotaux']);
$tpl->assign('plugin_css', ['style.css']);
// envoyer au template
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');