PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
mollie
/
mollie-api-php
/
examples
/
payments
<?php /* * How to get the currently activated payment methods for the Payments API. */ try { /* * Initialize the Mollie API library with your API key. * * See: https://www.mollie.com/dashboard/developers/api-keys */ require "../initialize.php"; /* * Get all the activated methods for this API key. * By default we are using the resource "payments". * See the orders folder for an example with the Orders API. */ $methods = $mollie->methods->allActive(); foreach ($methods as $method) { echo '<div style="line-height:40px; vertical-align:top">'; echo '<img src="' . htmlspecialchars($method->image->size1x) . '" srcset="' . htmlspecialchars($method->image->size2x) . ' 2x"> '; echo htmlspecialchars($method->description) . ' (' . htmlspecialchars($method->id) . ')'; echo '</div>'; } } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "API call failed: " . htmlspecialchars($e->getMessage()); }
[-] update-payment.php
[edit]
[+]
..
[-] webhook.php
[edit]
[-] list-methods.php
[edit]
[-] refund-payment.php
[edit]
[-] list-payments.php
[edit]
[-] create-ideal-payment.php
[edit]
[-] create-payment.php
[edit]
[-] return.php
[edit]
[-] create-payment-oauth.php
[edit]