function commerce_webform_permission in Commerce Webform 7.2
Same name and namespace in other branches
- 8 commerce_webform.module \commerce_webform_permission()
- 7 commerce_webform.module \commerce_webform_permission()
Implements hook_permission().
File
- ./
commerce_webform.module, line 11 - Commerce Webform module file
Code
function commerce_webform_permission() {
return array(
'alter productfield on paid webform' => array(
'title' => t('Alter webform product field when paid'),
'description' => t('Users with this permission can make changes to the product fields on webforms even after the product has been paid for.'),
),
);
}