function stripe_permission in Stripe 7
Implements hook_permission().
File
- ./
stripe.module, line 32 - stripe.module Drupal hooks used for integrating the Stripe service.
Code
function stripe_permission() {
return array(
'administer stripe' => array(
'title' => t('Administer the Stripe module'),
'description' => t('Allows access to configure API Keys and to the test form.'),
),
);
}