You are here

function local_fonts_enable in @font-your-face 7.2

Same name and namespace in other branches
  1. 6.2 modules/local_fonts/local_fonts.install \local_fonts_enable()
  2. 7 modules/local_fonts/local_fonts.install \local_fonts_enable()

Implements hook_enable().

File

modules/local_fonts/local_fonts.install, line 11
Removes fonts on disable.

Code

function local_fonts_enable() {

  // Set weight to 1 to ensure local_fonts_preprocess_html() is executed after
  // fontyourface_preprocess_html(), which has weight of 0.
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'local_fonts')
    ->execute();
}