You are here

function fontdeck_enable in @font-your-face 7.2

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

Implements hook_enable().

File

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

Code

function fontdeck_enable() {

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