simplification gestion logo
FossilOrigin-Name: b87bde43d3a8108761b33901f1555143153c30819b16f5ddf5120f9e968da491
This commit is contained in:
parent
d132832c77
commit
7d4d305cfa
|
@ -8,9 +8,3 @@ $default_signature_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
||||||
'default_signature.png',
|
'default_signature.png',
|
||||||
$path,
|
$path,
|
||||||
null);
|
null);
|
||||||
// « logo » par défaut
|
|
||||||
$path = __DIR__ . '/data/default_logo.png';
|
|
||||||
$default_logo_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
|
||||||
'default_logo.png',
|
|
||||||
$path,
|
|
||||||
null);
|
|
||||||
|
|
|
@ -10,12 +10,6 @@ if (null !== $default_signature_file) {
|
||||||
$default_signature_file->delete();
|
$default_signature_file->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
// logo par défaut
|
|
||||||
$default_logo_file = \Garradin\Files\Files::get('skel/plugin/recusfiscaux/default_logo.png');
|
|
||||||
if (null !== $default_logo_file) {
|
|
||||||
$default_logo_file->delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
// signature réelle
|
// signature réelle
|
||||||
$signature = $plugin->getConfig('signature');
|
$signature = $plugin->getConfig('signature');
|
||||||
if (null !== $signature) {
|
if (null !== $signature) {
|
||||||
|
|
|
@ -10,9 +10,4 @@ $old_version = $plugin->getInfos('version');
|
||||||
|
|
||||||
if (version_compare($old_version, '0.6.0', '<'))
|
if (version_compare($old_version, '0.6.0', '<'))
|
||||||
{
|
{
|
||||||
$path = __DIR__ . '/data/default_logo.png';
|
|
||||||
$default_logo_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
|
||||||
'default_logo.png',
|
|
||||||
$path,
|
|
||||||
null);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,10 +27,6 @@ if (! isset($confNoms))
|
||||||
$plugin->setConfig('nomChamps', $nomChamps);
|
$plugin->setConfig('nomChamps', $nomChamps);
|
||||||
}
|
}
|
||||||
|
|
||||||
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
|
||||||
$context = Files::getContext($path);
|
|
||||||
$context_ref = Files::getContextRef($path);
|
|
||||||
|
|
||||||
if (f('save') && $form->check('recusfiscaux_config'))
|
if (f('save') && $form->check('recusfiscaux_config'))
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
@ -111,6 +107,7 @@ uasort($nomChamps, function ($a, $b)
|
||||||
});
|
});
|
||||||
|
|
||||||
$tpl->assign('ok', qg('ok') !== null);
|
$tpl->assign('ok', qg('ok') !== null);
|
||||||
|
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
||||||
$tpl->assign('path', $path);
|
$tpl->assign('path', $path);
|
||||||
$tpl->assign('default_signature', \Garradin\WWW_URL . "plugin/recusfiscaux/default_signature.png");
|
$tpl->assign('default_signature', \Garradin\WWW_URL . "plugin/recusfiscaux/default_signature.png");
|
||||||
$tpl->assign('plugin_config', $plugin->getConfig());
|
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Garradin;
|
||||||
|
|
||||||
|
use Garradin\Files\Files;
|
||||||
|
use Garradin\Entities\Files\File;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
@ -18,18 +21,19 @@ foreach ($lesLignes as $ligne) {
|
||||||
$totalPersonnes = cumulerVersements($versementsSelectionnes);
|
$totalPersonnes = cumulerVersements($versementsSelectionnes);
|
||||||
|
|
||||||
// informations pour les reçus
|
// informations pour les reçus
|
||||||
$nomAsso = Utils::getNomAsso();
|
$nomAsso = $config->get('nom_asso');
|
||||||
$adresseAsso = Utils::getAdresseAsso();
|
$adresseAsso = $config->get('adresse_asso');
|
||||||
$signature =
|
$signature =
|
||||||
(null !== $plugin->getConfig('signature')) ?
|
(null !== $plugin->getConfig('signature')) ?
|
||||||
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||||
"";
|
"";
|
||||||
|
|
||||||
// logo
|
// logo
|
||||||
|
$logo_file = Files::get(File::CONTEXT_CONFIG . '/logo.png');
|
||||||
$logoAsso =
|
$logoAsso =
|
||||||
(null !== $config->fileURL('logo')) ?
|
(null !== $logo_file) ?
|
||||||
$config->fileURL('logo') :
|
Files::get($logo_file->path)->fullpath() :
|
||||||
\Garradin\Files\Files::get('skel/plugin/recusfiscaux/default_logo.png');
|
"";
|
||||||
|
|
||||||
// articles du CGI
|
// articles du CGI
|
||||||
$articlesCGI = array();
|
$articlesCGI = array();
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Garradin;
|
||||||
|
|
||||||
|
use Garradin\Files\Files;
|
||||||
|
use Garradin\Entities\Files\File;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
@ -16,17 +19,22 @@ foreach ($lesLignes as $ligne) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// informations pour les reçus
|
// informations pour les reçus
|
||||||
$nomAsso = Utils::getNomAsso();
|
$nomAsso = $config->get('nom_asso');
|
||||||
$adresseAsso = Utils::getAdresseAsso();
|
$adresseAsso = $config->get('adresse_asso');
|
||||||
$signature =
|
$signature =
|
||||||
(null !== $plugin->getConfig('signature')) ?
|
(null !== $plugin->getConfig('signature'))
|
||||||
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
?
|
||||||
|
Files::get($plugin->getConfig('signature'))->fullpath()
|
||||||
|
:
|
||||||
"";
|
"";
|
||||||
// logo
|
// logo
|
||||||
|
$logo_file = Files::get(File::CONTEXT_CONFIG . '/logo.png');
|
||||||
$logoAsso =
|
$logoAsso =
|
||||||
(null !== $config->fileURL('logo')) ?
|
(null !== $logo_file)
|
||||||
$config->fileURL('logo') :
|
?
|
||||||
\Garradin\Files\Files::get('skel/plugin/recusfiscaux/default_logo.png');
|
Files::get($logo_file->path)->fullpath()
|
||||||
|
:
|
||||||
|
"";
|
||||||
|
|
||||||
// articles du CGI
|
// articles du CGI
|
||||||
$articlesCGI = array();
|
$articlesCGI = array();
|
||||||
|
|
Loading…
Reference in New Issue