You are here

function google_fonts_api_fontyourface_import in @font-your-face 7

Same name and namespace in other branches
  1. 8.3 modules/google_fonts_api/google_fonts_api.module \google_fonts_api_fontyourface_import()
  2. 6.2 modules/google_fonts_api/google_fonts_api.module \google_fonts_api_fontyourface_import()
  3. 7.2 modules/google_fonts_api/google_fonts_api.module \google_fonts_api_fontyourface_import()

Implements hook_fontyourface_import().

File

modules/google_fonts_api/google_fonts_api.module, line 105

Code

function google_fonts_api_fontyourface_import() {
  include DRUPAL_ROOT . '/' . drupal_get_path('module', 'google_fonts_api') . '/font_list.inc';
  foreach ($fonts as $font) {
    if (!isset($font->tags)) {
      $font->tags = array();
    }

    // if
    fontyourface_save_font($font);
  }

  // foreach
}