PaymentMollie by typografics

Processwire payment module for Mollie

PaymentMollie

Mollie payment method for ProcessWire

Requirements


Requires PaymentModule -module

Mollie API


(Info form https://github.com/mollie/mollie-api-php)

To use the Mollie API client, the following things are required:

  • Get yourself a free Mollie account. No sign up costs.
  • Now you're ready to use the Mollie API client in test mode.
  • Follow a few steps to enable payment methods in live mode, and let us handle the rest.
  • PHP >= 5.6
  • Up-to-date OpenSSL (or other SSL/TLS toolkit)

Composer Installation

By far the easiest way to install the Mollie API client is to require it with Composer.

$ composer require mollie/mollie-api-php:^2.0

{
    "require": {
        "mollie/mollie-api-php": "^2.0"
    }
}

The version of the API client corresponds to the version of the API it implements. Check the notes on migration to see what changes you need to make if you want to start using a newer API version.

Manual Installation

If you're not familiar with using composer we've added a ZIP file to the releases containing the API client and all the packages normally installed by composer. Download the mollie-api-php.zip from the releases page.

Include the vendor/autoload.php as shown in Initialize example.

Example (with Padloper)


$checkout = modules()->get("PadOnePageCheckout");
$checkout->setPaymentModule("PaymentMollie");
$payment = modules()->get("PaymentMollie");

$urlSegment = input()->urlSegment1;

if (input()->urlSegment1 == "payment") {
    $payment->processPayment();
    exit;
}

if (!input()->urlSegment1 && input()->get('id')) {

    // Check the order
    $order = pages()->get(input()->get('id'));

    // Check if the order has been paid
    if($order->pad_paid){
        session()->redirect(page()->url."success");
        exit;

    }else{
        session()->redirect(page()->url."confirmation");
        exit;
    }
}

License


MIT License

Install and use modules at your own risk. Always have a site and database backup before installing new modules.

Latest news

  • ProcessWire Weekly #559
    The 559th issue of ProcessWire Weekly brings in all the latest news from the ProcessWire community. Modules, sites, and more. Read on!
    Weekly.pw / 25 January 2025
  • ProcessWire 3.0.244 new main/master version
    ProcessWire 3.0.244 is our newest main/master/stable version. It's been more than a year in the making and is packed with tons of new features, issue fixes, optimizations and more. This post covers all the details.
    Blog / 18 January 2025
  • Subscribe to weekly ProcessWire news

I just love the easy and intuitive ProcessWire API. ProcessWire rocks!” —Jens Martsch, Web developer