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
+3 -3
View File
@@ -9,17 +9,17 @@
<div class="custom-control custom-switch mb-3"> <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"> <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>
<div class="custom-control custom-switch mb-3"> <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"> <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>
<div class="custom-control custom-switch mb-3"> <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"> <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> </div>
<hr> <hr>