function commerce_avatax_install in Drupal Commerce Connector for AvaTax 7.4
Same name and namespace in other branches
- 7.5 commerce_avatax.install \commerce_avatax_install()
Implements hook_install().
File
- ./
commerce_avatax.install, line 63 - Installation functions for Commerce AvaTax Connector.
Code
function commerce_avatax_install() {
variable_set('commerce_avatax_install_time', microtime(TRUE));
if (module_exists('commerce_tax')) {
$t = get_t();
drupal_set_message($t('Commerce AvaTax may conflict with the commerce_tax module.'), 'warning');
}
}