Changement namespace Garradin => Paheko
FossilOrigin-Name: 05bd9b85d91af38c15952ea00891080a67e21c8e00ce3acf16c7b8263dc55d2c
This commit is contained in:
parent
bc4739877c
commit
b2885f3c01
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
// opérations communes
|
// opérations communes
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// liste des années fiscales
|
// liste des années fiscales
|
||||||
$anneeCourante = date("Y");
|
$anneeCourante = date("Y");
|
||||||
|
@ -14,7 +14,7 @@ if ($anneesFiscales[0] < $anneeCourante) {
|
||||||
if (f('change'))
|
if (f('change'))
|
||||||
{
|
{
|
||||||
$_SESSION['annee_recu'] = f('annee_recu');
|
$_SESSION['annee_recu'] = f('annee_recu');
|
||||||
\Garradin\Utils::redirect(f('from') ?: PLUGIN_URL);
|
\Paheko\Utils::redirect(f('from') ?: PLUGIN_URL);
|
||||||
}
|
}
|
||||||
|
|
||||||
$tpl->assign('anneesFiscales', $anneesFiscales);
|
$tpl->assign('anneesFiscales', $anneesFiscales);
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Files\Files;
|
use Paheko\Files\Files;
|
||||||
use Garradin\Entities\Files\File;
|
use Paheko\Entities\Files\File;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
||||||
$art_sel = f('articlesCGI') ?: [];
|
$art_sel = f('articlesCGI') ?: [];
|
||||||
|
@ -64,7 +64,7 @@ if (f('save') && $form->check('recusfiscaux_config')) {
|
||||||
null !== $plugin->getConfig('signature') &&
|
null !== $plugin->getConfig('signature') &&
|
||||||
$plugin->getConfig('signature') != $_SESSION['sig_file'][0]->path
|
$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) {
|
if (null !== $sig_file) {
|
||||||
$sig_file->delete();
|
$sig_file->delete();
|
||||||
}
|
}
|
||||||
|
@ -99,7 +99,7 @@ if (f('save') && $form->check('recusfiscaux_config')) {
|
||||||
}
|
}
|
||||||
$plugin->setConfig('champsNom', $champsNom);
|
$plugin->setConfig('champsNom', $champsNom);
|
||||||
|
|
||||||
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
\Paheko\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
||||||
} catch (UserException $e) {
|
} catch (UserException $e) {
|
||||||
$form->addError($e->getMessage());
|
$form->addError($e->getMessage());
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ uasort($champsNom, function ($a, $b) {
|
||||||
|
|
||||||
$tpl->assign('ok', qg('ok') !== null);
|
$tpl->assign('ok', qg('ok') !== null);
|
||||||
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
$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_config', $plugin->getConfig());
|
||||||
$tpl->assign('plugin_css', ['style.css']);
|
$tpl->assign('plugin_css', ['style.css']);
|
||||||
$tpl->assign('numerotation', $plugin->getConfig('numerotation'));
|
$tpl->assign('numerotation', $plugin->getConfig('numerotation'));
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Files\Files;
|
use Paheko\Files\Files;
|
||||||
use Garradin\Entities\Files\File;
|
use Paheko\Entities\Files\File;
|
||||||
use Garradin\UserTemplate\UserTemplate;
|
use Paheko\UserTemplate\UserTemplate;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
// signature
|
// signature
|
||||||
$signature =
|
$signature =
|
||||||
|
@ -201,7 +201,7 @@ function genererRecusPDF($totalPersonnes,
|
||||||
|
|
||||||
//supprimer les fichiers pdf
|
//supprimer les fichiers pdf
|
||||||
// foreach ($listeFichiersPDF as $f) {
|
// foreach ($listeFichiersPDF as $f) {
|
||||||
// \Garradin\Utils::safe_unlink($f);
|
// \Paheko\Utils::safe_unlink($f);
|
||||||
// }
|
// }
|
||||||
} // genererRecusPDF
|
} // genererRecusPDF
|
||||||
|
|
||||||
|
@ -382,7 +382,7 @@ function cumulerVersementsTarif($versements)
|
||||||
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
|
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
|
||||||
{
|
{
|
||||||
// fabriquer le fichier PDF
|
// fabriquer le fichier PDF
|
||||||
$nomPDF = \Garradin\Utils::filePDF($docHTML);
|
$nomPDF = \Paheko\Utils::filePDF($docHTML);
|
||||||
// changer le nom du fichier
|
// changer le nom du fichier
|
||||||
$nom = str_replace(' ', '_', $nomPersonne);
|
$nom = str_replace(' ', '_', $nomPersonne);
|
||||||
$nom = str_replace("'", "", $nom);
|
$nom = str_replace("'", "", $nom);
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// mettre à jour le plugin si besoin
|
// mettre à jour le plugin si besoin
|
||||||
if ($plugin->needUpgrade()) {
|
if ($plugin->needUpgrade()) {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Entities\Files\File;
|
use Paheko\Entities\Files\File;
|
||||||
use Garradin\Files\Files;
|
use Paheko\Files\Files;
|
||||||
|
|
||||||
$parent = qg('p');
|
$parent = qg('p');
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// ------------------------------------------------------------
|
// ------------------------------------------------------------
|
||||||
// récupérer les infos du formulaire
|
// récupérer les infos du formulaire
|
||||||
|
@ -16,7 +16,7 @@ if (! isset($_SESSION['tauxSelectionnes'])
|
||||||
&&
|
&&
|
||||||
null === f('comptes'))
|
null === f('comptes'))
|
||||||
{
|
{
|
||||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
\Paheko\Utils::redirect(PLUGIN_URL . 'index.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
// tarifs sélectionnés
|
// tarifs sélectionnés
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// vérifier si le taux de réduction a été sélectionné au préalable
|
// vérifier si le taux de réduction a été sélectionné au préalable
|
||||||
$taux = f('taux_reduction');
|
$taux = f('taux_reduction');
|
||||||
|
@ -11,7 +11,7 @@ if (! isset($_SESSION['taux_reduction'])
|
||||||
&&
|
&&
|
||||||
null === $taux)
|
null === $taux)
|
||||||
{
|
{
|
||||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
\Paheko\Utils::redirect(PLUGIN_URL . 'index.php');
|
||||||
}
|
}
|
||||||
if (null !== $taux) {
|
if (null !== $taux) {
|
||||||
$_SESSION['taux_reduction'] = $taux;
|
$_SESSION['taux_reduction'] = $taux;
|
||||||
|
|
Loading…
Reference in New Issue