File "list-methods.php"

Full Path: /home/cananyalcin/public_html/core/lib/mollie/examples/orders/list-methods.php
File size: 1.02 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace _PhpScoper54524b0fd82d;

/*
 * How to get the currently activated payment methods for the Orders 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.
     * To get methods that are compatible with the Orders API
     * we are passing the 'resource' parameter.
     */
    $methods = $mollie->methods->all(['resource' => 'orders']);
    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());
}