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,8 +1,8 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Plugin\RecusFiscaux\Utils;
use Paheko\Plugin\RecusFiscaux\Utils;
// ------------------------------------------------------------------------
// opérations communes

View File

@ -1,8 +1,8 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Plugin\RecusFiscaux\Utils;
use Paheko\Plugin\RecusFiscaux\Utils;
// liste des années fiscales
$anneeCourante = date("Y");
@ -14,7 +14,7 @@ if ($anneesFiscales[0] < $anneeCourante) {
if (f('change'))
{
$_SESSION['annee_recu'] = f('annee_recu');
\Garradin\Utils::redirect(f('from') ?: PLUGIN_URL);
\Paheko\Utils::redirect(f('from') ?: PLUGIN_URL);
}
$tpl->assign('anneesFiscales', $anneesFiscales);

View File

@ -1,10 +1,10 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Files\Files;
use Garradin\Entities\Files\File;
use Garradin\Plugin\RecusFiscaux\Utils;
use Paheko\Files\Files;
use Paheko\Entities\Files\File;
use Paheko\Plugin\RecusFiscaux\Utils;
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
$art_sel = f('articlesCGI') ?: [];
@ -64,7 +64,7 @@ if (f('save') && $form->check('recusfiscaux_config')) {
null !== $plugin->getConfig('signature') &&
$plugin->getConfig('signature') != $_SESSION['sig_file'][0]->path
) {
$sig_file = \Garradin\Files\Files::get($plugin->getConfig('signature'));
$sig_file = \Paheko\Files\Files::get($plugin->getConfig('signature'));
if (null !== $sig_file) {
$sig_file->delete();
}
@ -99,7 +99,7 @@ if (f('save') && $form->check('recusfiscaux_config')) {
}
$plugin->setConfig('champsNom', $champsNom);
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
\Paheko\Utils::redirect(PLUGIN_URL . 'config.php?ok');
} catch (UserException $e) {
$form->addError($e->getMessage());
}
@ -112,7 +112,7 @@ uasort($champsNom, function ($a, $b) {
$tpl->assign('ok', qg('ok') !== null);
$path = qg('path') ?: File::CONTEXT_CONFIG;
$tpl->assign('default_signature', \Garradin\WWW_URL . "plugin/recusfiscaux/default_signature.png");
$tpl->assign('default_signature', \Paheko\WWW_URL . "plugin/recusfiscaux/default_signature.png");
$tpl->assign('plugin_config', $plugin->getConfig());
$tpl->assign('plugin_css', ['style.css']);
$tpl->assign('numerotation', $plugin->getConfig('numerotation'));

View File

@ -1,13 +1,13 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Files\Files;
use Garradin\Entities\Files\File;
use Garradin\UserTemplate\UserTemplate;
use Paheko\Files\Files;
use Paheko\Entities\Files\File;
use Paheko\UserTemplate\UserTemplate;
use Garradin\Plugin\RecusFiscaux\Utils;
use Garradin\Plugin\RecusFiscaux\Personne;
use Paheko\Plugin\RecusFiscaux\Utils;
use Paheko\Plugin\RecusFiscaux\Personne;
// signature
$signature =
@ -201,7 +201,7 @@ function genererRecusPDF($totalPersonnes,
//supprimer les fichiers pdf
// foreach ($listeFichiersPDF as $f) {
// \Garradin\Utils::safe_unlink($f);
// \Paheko\Utils::safe_unlink($f);
// }
} // genererRecusPDF
@ -382,7 +382,7 @@ function cumulerVersementsTarif($versements)
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
{
// fabriquer le fichier PDF
$nomPDF = \Garradin\Utils::filePDF($docHTML);
$nomPDF = \Paheko\Utils::filePDF($docHTML);
// changer le nom du fichier
$nom = str_replace(' ', '_', $nomPersonne);
$nom = str_replace("'", "", $nom);

View File

@ -1,8 +1,8 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Plugin\RecusFiscaux\Utils;
use Paheko\Plugin\RecusFiscaux\Utils;
// mettre à jour le plugin si besoin
if ($plugin->needUpgrade()) {

View File

@ -1,8 +1,8 @@
<?php
namespace Garradin;
namespace Paheko;
use Garradin\Entities\Files\File;
use Garradin\Files\Files;
use Paheko\Entities\Files\File;
use Paheko\Files\Files;
$parent = qg('p');

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;
// ------------------------------------------------------------
// récupérer les infos du formulaire
@ -16,7 +16,7 @@ if (! isset($_SESSION['tauxSelectionnes'])
&&
null === f('comptes'))
{
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
\Paheko\Utils::redirect(PLUGIN_URL . 'index.php');
}
// tarifs sélectionnés

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;