function edge_fonts_enable in @font-your-face 7.2
Implements hook_enable().
File
- modules/
edge_fonts/ edge_fonts.install, line 11 - Install/uninstall tasks for the Edge Fonts module.
Code
function edge_fonts_enable() {
// Set weight to 1 to ensure edge_fonts_preprocess_html() is executed after
// fontyourface_preprocess_html(), which has weight of 0.
db_update('system')
->fields(array(
'weight' => 1,
))
->condition('name', 'edge_fonts')
->execute();
// Import/update fonts.
fontyourface_import_fonts('edge_fonts');
}