function commerce_order_uninstall in Commerce Core 7
Implements hook_uninstall().
File
- modules/
order/ commerce_order.install, line 200
Code
function commerce_order_uninstall() {
// Delete any field instance attached to an order type.
module_load_include('module', 'commerce');
commerce_delete_instances('commerce_order');
variable_del('commerce_order_help_text');
}