function fontyourface_update_8003 in @font-your-face 8.3
Updates fontyourface weights since there are issues around ordering.
File
- ./
fontyourface.install, line 213 - Font-Your-Face install/update/uninstall hook implementation.
Code
function fontyourface_update_8003() {
// Set the module weight. There is some general Drupal funk around module
// weights during install.
module_set_weight('fontyourface', 1);
foreach (\Drupal::moduleHandler()
->getImplementations('fontyourface_api') as $module_name) {
module_set_weight($module_name, 10);
}
}