0c7e90e494
FossilOrigin-Name: 7c3c6934177943e0bb0386a23b3f359e703eb88afbf34f58ba8663b3a1802124
16 lines
418 B
PHP
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');
|