You are here

function mollie_payment_install in Mollie Payment 7.2

Implements hook_install().

File

./mollie_payment.install, line 37
Install and update hooks for Mollie Payment.

Code

function mollie_payment_install() {

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