correction faute de frappe dans config.json
FossilOrigin-Name: 5595d6a14b941ccaecc9c4a8d0da6ec0b3a78e91f9d7f0ef47a98bcdb34b1c3f
This commit is contained in:
parent
d2289b49db
commit
ca09c2cf9d
|
@ -5,7 +5,7 @@
|
|||
"valeur" : 0
|
||||
},
|
||||
{
|
||||
"titre" : "228 bis",
|
||||
"titre" : "238 bis",
|
||||
"valeur" : 0
|
||||
},
|
||||
{
|
||||
|
|
|
@ -11,6 +11,7 @@ class RecusHTML
|
|||
private $objetAsso;
|
||||
private $nomResponsable;
|
||||
private $fonctionResponsable;
|
||||
private $villeAsso;
|
||||
private $articlesCGI;
|
||||
private $signature;
|
||||
|
||||
|
@ -115,7 +116,7 @@ FDD;
|
|||
$date = date("j/m/Y");
|
||||
echo <<<FDD
|
||||
<div class="cartouche" id="final">
|
||||
<p>Rennes le {$date}</p>
|
||||
<p>{this->villeAsso} le {$date}</p>
|
||||
<img id="signature" src="$this->signature" />
|
||||
<p id="nom">$this->nomResponsable</p>
|
||||
<p id="fonction">$this->fonctionResponsable</p>
|
||||
|
|
|
@ -82,6 +82,16 @@
|
|||
</dl>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Autres informations</legend>
|
||||
<dl class="config">
|
||||
<dt><label>Ville</label></dt>
|
||||
<p>Précède la date sur le formulaire</p>
|
||||
{input type="text" name="ville_asso" source=$plugin.config label="" maxlength=50}
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
||||
|
||||
<h3 class="warning">N'oubliez pas d'enregistrer, sinon les modifications ne seront pas prises en compte !</h3>
|
||||
|
||||
<p class="submit">
|
||||
|
|
|
@ -59,6 +59,10 @@ if (f('save') && $form->check('recusfiscaux_config'))
|
|||
$plugin->setConfig('signature', $_SESSION['sig_file'][0]->path);
|
||||
}
|
||||
|
||||
// autres informations
|
||||
// ville
|
||||
$plugin->setConfig('ville_asso', trim(f('ville_asso'));
|
||||
|
||||
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
||||
}
|
||||
catch (UserException $e)
|
||||
|
|
|
@ -41,6 +41,7 @@ foreach ($versementsSelectionnes as $ligne)
|
|||
$plugin->getConfig('objet_asso'),
|
||||
$plugin->getConfig('nom_responsable'),
|
||||
$plugin->getConfig('fonction_responsable'),
|
||||
$plugin->getConfig('ville_asso');
|
||||
$articlesCGI,
|
||||
$signature
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue