enhance membertype tooltip

This commit is contained in:
Frédéric FRANCE 2023-02-13 21:32:43 +01:00
parent 7af9834a0c
commit e54020ea15

View File

@ -706,6 +706,9 @@ class AdherentType extends CommonObject
if (isset($this->subscription)) {
$datas['subscription'] = '<br>'.$langs->trans("SubscriptionRequired").': '.yn($this->subscription);
}
if (isset($this->vote)) {
$datas['vote'] = '<br>'.$langs->trans("VoteAllowed").': '.yn($this->vote);
}
return $datas;
}