forked from harregoces/moodle-enrol_mercadopago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenrol.html
28 lines (27 loc) · 1.1 KB
/
enrol.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div align="center">
<?php
switch ($instance->currency) {
case "COP":
$mercadoPagoUrl = "www.mercadopago.com.co";
break;
case "ARS":
$mercadoPagoUrl = "www.mercadopago.com.ar";
break;
}
?>
<p><?php print_string("paymentrequired") ?></p>
<p><b><?php echo $instancename; ?></b></p>
<p><b><?php echo get_string("cost").": {$instance->currency} {$localisedcost}"; ?></b></p>
<p><img alt="<?php print_string('accepted', 'enrol_mercadopago') ?>" src="<?php echo "$CFG->wwwroot/enrol/mercadopago/pix/mercadopago.png"?>" /></p>
<p><?php print_string("paymentinstant") ?></p>
<?php
$url = empty($CFG->usemercadopagosandbox) ? $preference->init_point : $preference->sandbox_init_point;
?>
<form action="/enrol/mercadopago/ipn_post-processor.php" method="post">
<script
src="https://<?php echo $mercadoPagoUrl; ?>/integrations/v1/web-payment-checkout.js"
data-button-label="<?php print_string('sendpaymentbutton', 'enrol_mercadopago') ?>"
data-preference-id="<?php echo $preference->id; ?>">
</script>
</form>
</div>