Add $conf conditions

This commit is contained in:
atm-lena 2020-08-25 12:57:36 +02:00
parent 25840c2b3d
commit 94b2f3c5e1

View File

@ -1110,6 +1110,9 @@ if ($action == 'create')
print '</table>'; print '</table>';
if($conf->global->AGENDA_REMINDER_EMAIL || $conf->global->AGENDA_REMINDER_BROWSER)
{
print '<br><hr><br>'; print '<br><hr><br>';
print '<table class="border centpercent">'; print '<table class="border centpercent">';
@ -1125,11 +1128,15 @@ if ($action == 'create')
print '</td></tr>'; print '</td></tr>';
//Notification //Notification
$TRemindTypes = array();
if(!empty($conf->global->AGENDA_REMINDER_EMAIL)) $TRemindTypes['mail'] = $langs->trans('EMail');
if(!empty($conf->global->AGENDA_REMINDER_BROWSER)) $TRemindTypes['push'] = $langs->trans('OSNotif');
print '<tr><td class="titlefieldcreate nowrap">'.$langs->trans("TypeRemind").'</td><td colspan="3">'; print '<tr><td class="titlefieldcreate nowrap">'.$langs->trans("TypeRemind").'</td><td colspan="3">';
print $form->selectarray('typeremind', array('mail'=>$langs->trans('EMail'), 'push'=>$langs->trans('OSNotif'))); print $form->selectarray('typeremind',$TRemindTypes);
print '</td></tr>'; print '</td></tr>';
print '</table>'; print '</table>';
}
dol_fiche_end(); dol_fiche_end();