2022-01-14 09:04:45 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
|
|
|
use Garradin\Plugin\RecusFiscaux\Services;
|
|
|
|
|
2022-01-26 12:12:42 +01:00
|
|
|
// liste du total des versements par personne
|
|
|
|
$_SESSION['lesVersementsTotaux'] = Services::getVersementsTotaux("2021");
|
2022-01-14 09:04:45 +01:00
|
|
|
|
|
|
|
// préparation de l'affichage
|
2022-01-26 12:12:42 +01:00
|
|
|
$tpl->assign('lesVersementsTotaux', $_SESSION['lesVersementsTotaux']);
|
2022-01-15 19:17:18 +01:00
|
|
|
$tpl->assign('plugin_css', ['style.css']);
|
2022-01-14 09:04:45 +01:00
|
|
|
|
|
|
|
// envoyer au template
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|