Add notification reminder settings and improve PHP configuration

This commit is contained in:
Focuslinkstech
2025-03-02 15:29:57 +01:00
parent dfdf35286f
commit 366ef73d57
9 changed files with 150 additions and 17 deletions

View File

View File

@ -927,6 +927,24 @@
</select>
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">{Lang::T('Reminder Notify Intervals')}</label><br>
<label class="col-md-3 control-label">
<input type="checkbox" name="notification_reminder_1day" value="yes"
{if !isset($_c['notification_reminder_1day']) || $_c['notification_reminder_1day'] neq 'no'}checked{/if}>
{Lang::T('1 Day')}
</label>
<label class="col-md-3 control-label">
<input type="checkbox" name="notification_reminder_3days" value="yes"
{if !isset($_c['notification_reminder_3days']) || $_c['notification_reminder_3days'] neq 'no'}checked{/if}>
{Lang::T('3 Days')}
</label>
<label class="col-md-3 control-label">
<input type="checkbox" name="notification_reminder_7days" value="yes"
{if !isset($_c['notification_reminder_7days']) || $_c['notification_reminder_7days'] neq 'no'}checked{/if}>
{Lang::T('7 Days')}
</label>
</div>
<button class="btn btn-success btn-block" type="submit">
{Lang::T('Save Changes')}
</button>