Changement namespace Garradin => Paheko

FossilOrigin-Name: 05bd9b85d91af38c15952ea00891080a67e21c8e00ce3acf16c7b8263dc55d2c
This commit is contained in:
engel 2023-09-28 11:20:36 +00:00
parent bc4739877c
commit b2885f3c01
8 changed files with 33 additions and 33 deletions

View file

@ -1,9 +1,9 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Plugin\RecusFiscaux\Personne;
use Garradin\Plugin\RecusFiscaux\Utils;
use Paheko\Plugin\RecusFiscaux\Personne;
use Paheko\Plugin\RecusFiscaux\Utils;
// vérifier si le taux de réduction a été sélectionné au préalable
$taux = f('taux_reduction');
@ -11,7 +11,7 @@ if (! isset($_SESSION['taux_reduction'])
&&
null === $taux)
{
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
\Paheko\Utils::redirect(PLUGIN_URL . 'index.php');
}
if (null !== $taux) {
$_SESSION['taux_reduction'] = $taux;