function commerce_cop_permission in Commerce Custom Offline Payments 7
Implements hook_permission().
File
- ./
commerce_cop.module, line 78 - Custom offline payment methods for Drupal Commerce.
Code
function commerce_cop_permission() {
return array(
'administer custom offline payments' => array(
'title' => t('Administer custom offline payment methods'),
'description' => t('Create, update, edit the custom offline payment methods.'),
),
);
}