encore une amélioration dans la gestion des champs nom
FossilOrigin-Name: 0322812522d5aab61205617cf4e8f85994fd93315f2abaaf205c0f8b784d4fbf
This commit is contained in:
parent
3e53f19453
commit
dda2000399
|
@ -23,9 +23,11 @@ foreach ($plugin->getConfig('reduction') as $taux)
|
|||
|
||||
// idem avec les champs nom/prénom
|
||||
$nbChamps = 0;
|
||||
if (null !== $plugin->getConfig('champsNom'))
|
||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
||||
|
||||
if (null !== $champsNom)
|
||||
{
|
||||
foreach ($plugin->getConfig('champsNom') as $nom => $champ)
|
||||
foreach ($champsNom as $nom => $champ)
|
||||
{
|
||||
if ($champ->position != 0) { ++$nbChamps; }
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
|
|||
}
|
||||
|
||||
// champs pour le nom et prénom
|
||||
$confNoms = (array) $plugin->getConfig('champsNom');
|
||||
$confNoms = Utils::getChampsNom($config, $plugin);
|
||||
uasort($confNoms, function ($a, $b)
|
||||
{
|
||||
return $a->position - $b->position;
|
||||
|
|
|
@ -13,7 +13,7 @@ if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
|
|||
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
|
||||
|
||||
// champs pour le nom et prénom
|
||||
$confNoms = (array) $plugin->getConfig('champsNom');
|
||||
$confNoms = Utils::getChampsNom($config, $plugin);
|
||||
uasort($confNoms, function ($a, $b)
|
||||
{
|
||||
return $a->position - $b->position;
|
||||
|
|
Loading…
Reference in New Issue