recusfiscaux/www/admin/index.php
engel 46a88944fc Réorganistion fichiers ; ajout gestion versements totaux par personne ;
montants gérés en centimes

FossilOrigin-Name: e1e11bdd898e24dc30d3a6f150e9679ed2d6bf915ac828cdfbb830b118651b8f
2022-01-26 11:12:42 +00:00

16 lines
415 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/index.tpl');