adaptation à la nouvelle gestion de la config
FossilOrigin-Name: 8021f28f6ba17ffafbb4a1e5ffb4cb8486c3b585a486afd6a24f61db0b64841c
This commit is contained in:
parent
b2885f3c01
commit
fcac139b89
|
@ -7,61 +7,53 @@ use Paheko\Entities\Files\File;
|
||||||
use Paheko\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') ?: [];
|
|
||||||
$taux_sel = f('tauxReduction') ?: [];
|
|
||||||
$noms_sel = f('champsNom') ?: [];
|
|
||||||
|
|
||||||
// récupérer les champs des noms
|
// récupérer les champs des noms
|
||||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
$champsNom = Utils::getChampsNom($config, $plugin);
|
||||||
|
|
||||||
if (f('save') && $form->check('recusfiscaux_config')) {
|
$csrf_key = 'recusfiscaux_config';
|
||||||
try {
|
|
||||||
// objet de l'association
|
|
||||||
if ($plugin->getConfig('objet_asso') != trim(f('objet_asso'))) {
|
|
||||||
$plugin->setConfig('objet_asso', trim(f('objet_asso')));
|
|
||||||
}
|
|
||||||
|
|
||||||
// articles du CGI
|
$form->runIf('save', function () use ($plugin, $champsNom) {
|
||||||
|
// Objet de l'asso
|
||||||
|
$plugin->setConfigProperty('objet_asso', trim(f('objet_asso')));
|
||||||
|
|
||||||
|
// Articles du CGI
|
||||||
$confArticles = $plugin->getConfig('articlesCGI');
|
$confArticles = $plugin->getConfig('articlesCGI');
|
||||||
// effacer l'ancienne configuration
|
// effacer l'ancienne configuration
|
||||||
for ($i = 0; $i < count($confArticles); ++$i) {
|
for ($i = 0; $i < count($confArticles); ++$i) {
|
||||||
$confArticles[$i]->valeur = false; // 0
|
$confArticles[$i]->valeur = false;
|
||||||
}
|
}
|
||||||
// et copier la nouvelle
|
// et copier la nouvelle
|
||||||
|
$art_sel = f('articlesCGI') ?: [];
|
||||||
foreach ($art_sel as $article) {
|
foreach ($art_sel as $article) {
|
||||||
$confArticles[$article]->valeur = true; // 1
|
$confArticles[$article]->valeur = true;
|
||||||
}
|
}
|
||||||
$plugin->setConfig("articlesCGI", $confArticles);
|
$plugin->setConfigProperty('articlesCGI', $confArticles);
|
||||||
|
|
||||||
// taux de réduction
|
// Taux de réduction
|
||||||
$confTaux = $plugin->getConfig('reduction');
|
$confTaux = $plugin->getConfig('reduction');
|
||||||
// effacer l'ancienne configuration
|
// effacer l'ancienne configuration
|
||||||
for ($i = 0; $i < count($confTaux); ++$i) {
|
for ($i = 0; $i < count($confTaux); ++$i) {
|
||||||
$confTaux[$i]->valeur = false; // 0
|
$confTaux[$i]->valeur = false;
|
||||||
}
|
}
|
||||||
// et copier la nouvelle
|
// et copier la nouvelle
|
||||||
|
$taux_sel = f('tauxReduction') ?: [];
|
||||||
foreach ($taux_sel as $taux) {
|
foreach ($taux_sel as $taux) {
|
||||||
$confTaux[$taux]->valeur = true; // 1
|
$confTaux[$taux]->valeur = true;
|
||||||
}
|
}
|
||||||
$plugin->setConfig("reduction", $confTaux);
|
$plugin->setConfigProperty("reduction", $confTaux);
|
||||||
|
|
||||||
// Informations au sujet du responsable
|
// Informations au sujet du responsable
|
||||||
if ($plugin->getConfig('nom_responsable') != trim(f('nom_responsable'))) {
|
$plugin->setConfigProperty('nom_responsable', trim(f('nom_responsable') ?: '') ?: null);
|
||||||
$plugin->setConfig('nom_responsable', trim(f('nom_responsable')));
|
$plugin->setConfigProperty('fonction_responsable', trim(f('fonction_responsable') ?: '') ?: null);
|
||||||
}
|
$plugin->setConfigProperty('ville_asso', trim(f('ville_asso') ?: '') ?: null);
|
||||||
if ($plugin->getConfig('fonction_responsable') != trim(f('fonction_responsable'))) {
|
|
||||||
$plugin->setConfig('fonction_responsable', trim(f('fonction_responsable')));
|
|
||||||
}
|
|
||||||
// ville
|
|
||||||
if ($plugin->getConfig('ville_asso') != trim(f('ville_asso'))) {
|
|
||||||
$plugin->setConfig('ville_asso', trim(f('ville_asso')));
|
|
||||||
}
|
|
||||||
// signature
|
|
||||||
|
|
||||||
|
// signature
|
||||||
if (isset($_SESSION['sig_file']) && count($_SESSION['sig_file']) > 0) {
|
if (isset($_SESSION['sig_file']) && count($_SESSION['sig_file']) > 0) {
|
||||||
// supprimer la signature précédente, si besoin
|
// supprimer la signature précédente, si besoin
|
||||||
if (
|
if (
|
||||||
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 = \Paheko\Files\Files::get($plugin->getConfig('signature'));
|
$sig_file = \Paheko\Files\Files::get($plugin->getConfig('signature'));
|
||||||
|
@ -70,11 +62,10 @@ if (f('save') && $form->check('recusfiscaux_config')) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// puis installer la nouvelle
|
// puis installer la nouvelle
|
||||||
$plugin->setConfig('signature', $_SESSION['sig_file'][0]->path);
|
$plugin->setConfigProperty('signature', $_SESSION['sig_file'][0]->path);
|
||||||
}
|
}
|
||||||
|
|
||||||
// autres informations
|
// Numérotation des reçus
|
||||||
// numérotation des reçus
|
|
||||||
$configNum = $plugin->getConfig('numerotation');
|
$configNum = $plugin->getConfig('numerotation');
|
||||||
$formNum = clone $configNum;
|
$formNum = clone $configNum;
|
||||||
if ($configNum->prefixe != trim(f('prefixe'))) {
|
if ($configNum->prefixe != trim(f('prefixe'))) {
|
||||||
|
@ -84,37 +75,48 @@ if (f('save') && $form->check('recusfiscaux_config')) {
|
||||||
$formNum->membre = f('membre');
|
$formNum->membre = f('membre');
|
||||||
$formNum->sequentiel = f('sequentiel');
|
$formNum->sequentiel = f('sequentiel');
|
||||||
$formNum->valeur_init = f('valeur_init');
|
$formNum->valeur_init = f('valeur_init');
|
||||||
$plugin->setConfig('numerotation', $formNum);
|
$plugin->setConfigProperty('numerotation', $formNum);
|
||||||
|
|
||||||
// impression des adresses de courriel
|
// Impression des adresses de courriel
|
||||||
$plugin->setConfig('imprimerCourriel', f('imprimerCourriel'));
|
$plugin->setConfigProperty('imprimerCourriel', trim(f('imprimerCourriel') ?: '') ?: null);
|
||||||
|
|
||||||
// champs pour le nom et prénom
|
// champs pour le nom et prénom
|
||||||
foreach ($champsNom as $nom => $champ) {
|
foreach ($champsNom as $nom => $champ) {
|
||||||
$champ->position = 0;
|
$champ->position = 0;
|
||||||
}
|
}
|
||||||
|
$noms_sel = f('champsNom') ?: [];
|
||||||
$i = -count($noms_sel);
|
$i = -count($noms_sel);
|
||||||
foreach ($noms_sel as $nom) {
|
foreach ($noms_sel as $nom) {
|
||||||
$champsNom[$nom]->position = $i++;
|
$champsNom[$nom]->position = $i++;
|
||||||
}
|
}
|
||||||
$plugin->setConfig('champsNom', $champsNom);
|
$plugin->setConfigProperty('champsNom', $champsNom);
|
||||||
|
|
||||||
|
// enregistrer la nouvelle config
|
||||||
|
$plugin->save();
|
||||||
|
}, $csrf_key, PLUGIN_ADMIN_URL . 'config.php?ok');
|
||||||
|
|
||||||
|
|
||||||
|
// test fonctions fichiers : voir files.sor
|
||||||
|
// $fichiers = Files::list('config');
|
||||||
|
// error_log("fichiers config = " . print_r($fichiers, true));
|
||||||
|
// $fichiers = Files::list('ext/recusfiscaux');
|
||||||
|
// error_log("fichiers ext/recusfiscaux = " . print_r($fichiers, true));
|
||||||
|
$sig_file = Files::get('ext/recusfiscaux/default_signature.png');
|
||||||
|
// error_log("sig_file = " . print_r($sig_file, true));
|
||||||
|
|
||||||
|
//error_log("config.php::config=" . print_r($plugin->getConfig(), true));
|
||||||
|
|
||||||
\Paheko\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
|
||||||
} catch (UserException $e) {
|
|
||||||
$form->addError($e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// trier les champs de nom pour l'affichage
|
// trier les champs de nom pour l'affichage
|
||||||
uasort($champsNom, function ($a, $b) {
|
uasort($champsNom, function ($a, $b) {
|
||||||
return $a->position - $b->position;
|
return $a->position - $b->position;
|
||||||
});
|
});
|
||||||
|
|
||||||
$tpl->assign('ok', qg('ok') !== null);
|
|
||||||
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
||||||
$tpl->assign('default_signature', \Paheko\WWW_URL . "plugin/recusfiscaux/default_signature.png");
|
$tpl->assign('default_signature', '/' . 'ext/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'));
|
||||||
$tpl->assign(compact('path', 'champsNom'));
|
$tpl->assign(compact('csrf_key', 'path', 'champsNom'));
|
||||||
$tpl->display(PLUGIN_ROOT . '/templates/config.tpl');
|
$tpl->display(PLUGIN_ROOT . '/templates/config.tpl');
|
||||||
|
|
25
install.php
25
install.php
|
@ -1,10 +1,23 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Paheko;
|
namespace Paheko;
|
||||||
use Paheko\Entities\Files\File;
|
|
||||||
|
use Paheko\Files\Files;
|
||||||
|
|
||||||
|
$nom_plugin = $plugin->get('name');
|
||||||
|
const SIGNATURE_DEFAUT = 'default_signature.png';
|
||||||
|
const CONFIG_INIT = 'config.json';
|
||||||
|
|
||||||
|
// configuration initiale
|
||||||
|
$config_init = json_decode(file_get_contents(Plugins::getPath($nom_plugin) . '/' . CONFIG_INIT),
|
||||||
|
true);
|
||||||
|
|
||||||
|
// enregistrer dans la config du plugin
|
||||||
|
foreach ($config_init as $cle => $valeur) {
|
||||||
|
$plugin->setConfigProperty($cle, $valeur);
|
||||||
|
}
|
||||||
|
$plugin->save();
|
||||||
|
|
||||||
// « signature » par défaut à remplacer (voir l'onglet de configuration)
|
// « signature » par défaut à remplacer (voir l'onglet de configuration)
|
||||||
$path = __DIR__ . '/data/default_signature.png';
|
$path = __DIR__ . '/data/' . SIGNATURE_DEFAUT;
|
||||||
$default_signature_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
$default_signature_file = Files::createFromPath('ext/' . $nom_plugin . '/' . SIGNATURE_DEFAUT,
|
||||||
'default_signature.png',
|
$path);
|
||||||
$path,
|
|
||||||
null);
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
namespace Paheko\Plugin\RecusFiscaux;
|
namespace Paheko\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
use Paheko\DB;
|
use Paheko\DB;
|
||||||
|
use Paheko\Users\DynamicFields;
|
||||||
use KD2\ZipWriter;
|
use KD2\ZipWriter;
|
||||||
|
|
||||||
class Utils
|
class Utils
|
||||||
|
@ -428,8 +429,8 @@ class Utils
|
||||||
$champsNom = (array) $plugin->getConfig('champsNom');
|
$champsNom = (array) $plugin->getConfig('champsNom');
|
||||||
|
|
||||||
// récupérer dans la config Paheko les champs des membres
|
// récupérer dans la config Paheko les champs des membres
|
||||||
// utilisés pour le nom et le préno
|
// utilisés pour le nom et le prénom
|
||||||
$champsPaheko = $config->get('champs_membres')->listAssocNames();
|
$champsPaheko = DynamicFields::getInstance()->listAssocNames();
|
||||||
|
|
||||||
foreach ($champsPaheko as $name => $title)
|
foreach ($champsPaheko as $name => $title)
|
||||||
{
|
{
|
||||||
|
@ -458,7 +459,7 @@ class Utils
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// mettre à jour la config du plugin
|
// mettre à jour la config du plugin
|
||||||
$plugin->setConfig('champsNom', $champsNom);
|
$plugin->setConfigProperty('champsNom', $champsNom);
|
||||||
return $champsNom;
|
return $champsNom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -79,8 +79,8 @@
|
||||||
|
|
||||||
<div class="cartouche" id="beneficiaire">
|
<div class="cartouche" id="beneficiaire">
|
||||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||||
<p class="important">Association « {{$config.nom_asso}} »<br />
|
<p class="important">Association « {{$config.org_name}} »<br />
|
||||||
{{$config.adresse_asso}}<br />
|
{{$config.org_address}}<br />
|
||||||
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span>
|
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -33,8 +33,8 @@
|
||||||
|
|
||||||
<div class="cartouche" id="beneficiaire">
|
<div class="cartouche" id="beneficiaire">
|
||||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||||
<p class="important">Association « {$nom_asso} »<br />
|
<p class="important">Association « {$org_name} »<br />
|
||||||
{$adresse_asso}<br />
|
{$org_address}<br />
|
||||||
<span class="titre">Objet : </span><span class="libelle">{$objet_asso}</span>
|
<span class="titre">Objet : </span><span class="libelle">{$objet_asso}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Paheko;
|
namespace Paheko;
|
||||||
use Paheko\Entities\Files\File;
|
|
||||||
|
|
||||||
// supprimer les fichiers créés
|
// supprimer les fichiers créés
|
||||||
|
|
||||||
// signature par défaut
|
// signature par défaut
|
||||||
$default_signature_file = \Paheko\Files\Files::get('skel/plugin/recusfiscaux/default_signature.png');
|
$default_signature_file = \Paheko\Files\Files::get('ext/recusfiscaux/default_signature.png');
|
||||||
if (null !== $default_signature_file) {
|
if (null !== $default_signature_file) {
|
||||||
$default_signature_file->delete();
|
$default_signature_file->delete();
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,6 @@ if (version_compare($old_version, '0.9', '<'))
|
||||||
$configNum->membre = false;
|
$configNum->membre = false;
|
||||||
$configNum->sequentiel = false;
|
$configNum->sequentiel = false;
|
||||||
$configNum->valeur_init = 1;
|
$configNum->valeur_init = 1;
|
||||||
$plugin->setConfig('numerotation', $configNum);
|
$plugin->setConfigProperty('numerotation', $configNum);
|
||||||
$plugin->setConfig('imprimerCourriel', false);
|
$plugin->setConfigProperty('imprimerCourriel', false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue