Use isModEnabled

This commit is contained in:
Alexandre SPANGARO 2022-08-29 11:58:55 +02:00
parent 52ab81f779
commit bdd2d23bf1

View File

@ -1117,9 +1117,9 @@ if ($action == 'create') {
$title = $langs->trans("ProductsAndServices"); $title = $langs->trans("ProductsAndServices");
if (empty($conf->service->enabled)) { if (!isModEnabled('service')) {
$title = $langs->trans("Products"); $title = $langs->trans("Products");
} elseif (empty($conf->product->enabled)) { } elseif (!isModEnabled('product')) {
$title = $langs->trans("Services"); $title = $langs->trans("Services");
} }
@ -1310,7 +1310,7 @@ if ($action == 'create') {
print '</td></tr>'; print '</td></tr>';
// Multicurrency // Multicurrency
if (!empty($conf->multicurrency->enabled)) { if (isModEnabled('multicurrency')) {
// Multicurrency code // Multicurrency code
print '<tr>'; print '<tr>';
print '<td>'; print '<td>';
@ -1573,7 +1573,7 @@ if ($action == 'create') {
if ($object->frequency > 0) { if ($object->frequency > 0) {
print '<br>'; print '<br>';
if (empty($conf->cron->enabled)) { if (!isModEnabled('cron')) {
print info_admin($langs->trans("EnableAndSetupModuleCron", $langs->transnoentitiesnoconv("Module2300Name"))); print info_admin($langs->trans("EnableAndSetupModuleCron", $langs->transnoentitiesnoconv("Module2300Name")));
} }