Change wording to reflect that the module is just "hidden", not necessarily disabled.

This commit is contained in:
Marcus Hill 2022-04-15 17:00:47 +01:00
parent fca1627c33
commit bdd00c843d
1 changed files with 3 additions and 3 deletions

View File

@ -9,17 +9,17 @@
<div class="custom-control custom-switch mb-3">
<input type="checkbox" class="custom-control-input" name="config_module_enable_itdoc" <?php if($config_module_enable_itdoc == 1){ echo "checked"; } ?> value="1" id="customSwitch1">
<label class="custom-control-label" for="customSwitch1">Enable IT Documentation</label>
<label class="custom-control-label" for="customSwitch1">Show IT Documentation</label>
</div>
<div class="custom-control custom-switch mb-3">
<input type="checkbox" class="custom-control-input" name="config_module_enable_ticketing" <?php if($config_module_enable_ticketing == 1){ echo "checked"; } ?> value="1" id="customSwitch2">
<label class="custom-control-label" for="customSwitch2">Enable Ticketing</label>
<label class="custom-control-label" for="customSwitch2">Show Ticketing</label>
</div>
<div class="custom-control custom-switch mb-3">
<input type="checkbox" class="custom-control-input" name="config_module_enable_accounting" <?php if($config_module_enable_accounting == 1){ echo "checked"; } ?> value="1" id="customSwitch3">
<label class="custom-control-label" for="customSwitch3">Enable Invoicing / Accounting</label>
<label class="custom-control-label" for="customSwitch3">Show Invoicing / Accounting</label>
</div>
<hr>