function webform_paypal_permission in Webform Paypal 7.2
Same name and namespace in other branches
- 7 webform_paypal.module \webform_paypal_permission()
Implements hook_permission().
File
- ./
webform_paypal.module, line 21
Code
function webform_paypal_permission() {
return array(
'update payment status' => array(
'title' => t('Update PayPal Payment Status'),
),
'use paypal sandbox' => array(
'title' => t('Use PayPal in Sandbox Mode'),
),
);
}