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 #550
    In the 550th issue of ProcessWire Weekly we're going to check out the latest core updates, introduce a new third party module called PagefileMetadata, and more. Read on!
    Weekly.pw / 23 November 2024
  • Custom Fields Module
    This week we look at a new ProFields module named Custom Fields. This module provides a way to rapidly build out ProcessWire fields that contain any number of subfields/properties within them.
    Blog / 30 August 2024
  • Subscribe to weekly ProcessWire news

“The end client and designer love the ease at which they can update the website. Training beyond how to log in wasn’t even necessary since ProcessWire’s default interface is straightforward.” —Jonathan Lahijani