46a88944fc
montants gérés en centimes FossilOrigin-Name: e1e11bdd898e24dc30d3a6f150e9679ed2d6bf915ac828cdfbb830b118651b8f
16 lines
415 B
PHP
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');
|