recusfiscaux/www/admin/personne.php
engel 0c7e90e494 Réorganisation fichiers
FossilOrigin-Name: 7c3c6934177943e0bb0386a23b3f359e703eb88afbf34f58ba8663b3a1802124
2022-01-27 08:02:23 +00:00

16 lines
418 B
PHP

<?php
namespace Garradin;
use Garradin\Plugin\RecusFiscaux\Services;
// liste du total des versements par personne
$_SESSION['lesVersementsTotaux'] = Services::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');