recusfiscaux/www/admin/personne.php
engel fa590c0d67 Changement nom classe Services => Utils
FossilOrigin-Name: 5c9c126ba0cded04b70823527b639ad5a4c9ddb584f8704683564ed9033b9c95
2022-01-27 08:10:00 +00:00

16 lines
412 B
PHP

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