function uc_attribute_module_implements_alter in Ubercart 7.3
Same name and namespace in other branches
- 8.4 uc_attribute/uc_attribute.module \uc_attribute_module_implements_alter()
Implements hook_module_implements_alter().
Ensures that attribute form changes are made after (e.g.) product kits.
File
- uc_attribute/
uc_attribute.module, line 304 - Ubercart Attribute module.
Code
function uc_attribute_module_implements_alter(&$implementations, $hook) {
if ($hook == 'uc_form_alter') {
$group = $implementations['uc_attribute'];
unset($implementations['uc_attribute']);
$implementations['uc_attribute'] = $group;
}
}