Update database version to 0.9.5 and add

config_stripe_client_pays_fees field
This commit is contained in:
Andrew Malsbury
2023-11-17 22:44:10 +00:00
parent b1c60fa4d8
commit cc5d274596
6 changed files with 42 additions and 7 deletions

View File

@@ -2,6 +2,8 @@
require_once "inc_all_settings.php";
// Get Stripe Setting for config client pays
?>
@@ -61,10 +63,15 @@ require_once "inc_all_settings.php";
}
?>
</select>
</div>
</div>
<div class="form-group">
<label>Client Pays Fees</label>
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" name="config_stripe_client_pays_fees" <?php if ($config_stripe_client_pays_fees == 1) { echo "checked"; } ?> value="1" id="clientPaysFeesSwitch">
<label class="custom-control-label" for="clientPaysFeesSwitch">Enable</label>
</div>
<?php } ?>