function commerce_avatax_permission in Drupal Commerce Connector for AvaTax 7.3
Same name and namespace in other branches
- 7.5 commerce_avatax.module \commerce_avatax_permission()
- 7.4 commerce_avatax.module \commerce_avatax_permission()
Implements hook_permission().
File
- ./
commerce_avatax.module, line 52 - Calculate Sales Tax using AvaTax Calc service from Avalara, Inc.
Code
function commerce_avatax_permission() {
return array(
'administer avatax' => array(
'title' => t('Administer AvaTax'),
'description' => t('Allows users to configure AvaTax'),
'restrict access' => TRUE,
),
);
}