You are here

function google_fonts_api_enable in @font-your-face 7.2

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

Implements hook_enable().

File

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

Code

function google_fonts_api_enable() {

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

  // Import/update fonts
  fontyourface_import_fonts('google_fonts_api');
}