You are here

function mollie_payment_permission in Mollie Payment 7

Same name and namespace in other branches
  1. 7.2 mollie_payment.module \mollie_payment_permission()

Implements hook_permission().

File

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

Code

function mollie_payment_permission() {
  return array(
    'administer mollie payment' => array(
      'title' => t('Administer Mollie Payment'),
    ),
  );
}