Add initial Stripe Payment integration for invoices

This commit is contained in:
Marcus Hill
2023-02-07 18:05:52 +00:00
parent c3829c06af
commit f1180aa9fe
240 changed files with 448 additions and 23089 deletions

View File

@@ -122,7 +122,7 @@ if (isset($_GET['invoice_id'], $_GET['url_key'])) {
<?php
if ($config_stripe_enable == 1) {
?>
<a class="btn btn-success" href="guest_pay.php?invoice_id=<?php echo $invoice_id; ?>"><i class="fa fa-fw fa-credit-card"></i> Pay Online <small>(Coming Soon)</small></a>
<a class="btn btn-success" href="guest_stripe_payment.php?invoice_id=<?php echo $invoice_id; ?>&url_key=<?php echo $url_key; ?>"><i class="fa fa-fw fa-credit-card"></i> Pay Online <small>(Coming Soon)</small></a>
<?php } ?>
<?php } ?>
</div>