You are here

function commerce_mollie_permission in Commerce Mollie 7

Implements hook_permission().

File

./commerce_mollie.module, line 62

Code

function commerce_mollie_permission() {
  $perms = array();
  $perms['mollie payment status request'] = array(
    'title' => t('Request payment status'),
    'description' => t('Perform a request with Mollie about the status of a Payment.'),
  );
  return $perms;
}