You are here

function mollie_payment_client_installer in Mollie Payment 7.2

Installs the Mollie API client for PHP.

1 string reference to 'mollie_payment_client_installer'
mollie_payment_menu in ./mollie_payment.module
Implements hook_menu().

File

./mollie_payment.module, line 330
Provides Mollie integration for the Payment platform.

Code

function mollie_payment_client_installer() {

  // Load the Mollie Payment installer.
  $installer = mollie_payment_get_installer();

  // Install the Mollie API client for PHP.
  $installer
    ->installMollieApiClient();

  // Redirect to the destination.
  drupal_goto();
}