2022-01-27 09:02:23 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
2022-01-27 09:10:00 +01:00
|
|
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
2022-01-27 09:02:23 +01:00
|
|
|
|
|
|
|
// liste du total des versements par personne
|
2022-01-27 09:10:00 +01:00
|
|
|
$_SESSION['lesVersementsTotaux'] = Utils::getVersementsTotaux("2021");
|
2022-01-27 09:02:23 +01:00
|
|
|
|
|
|
|
// 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');
|