function commerce_avatax_permission in Drupal Commerce Connector for AvaTax 7.5
Same name and namespace in other branches
- 7.3 commerce_avatax.module \commerce_avatax_permission()
- 7.4 commerce_avatax.module \commerce_avatax_permission()
Implements hook_permission().
File
- ./
commerce_avatax.module, line 32 - AvaTax service integration from Avalara, Inc.
Code
function commerce_avatax_permission() {
return array(
'administer avatax' => array(
'title' => t('Administer Avatax'),
'description' => t('Allows users to configure Commerce AvaTax'),
),
'configure avatax exemptions' => array(
'title' => t('Configure Tax exemptions'),
'description' => t('Allow users to configure tax exemptions'),
),
);
}