You are here

function common_fonts_fontyourface_info in @font-your-face 6

Same name and namespace in other branches
  1. 6.2 modules/common_fonts/common_fonts.module \common_fonts_fontyourface_info()
  2. 7 modules/common_fonts/common_fonts.module \common_fonts_fontyourface_info()

Implements hook_fontyourface_info().

File

modules/common_fonts/common_fonts.module, line 6

Code

function common_fonts_fontyourface_info() {
  $info = array(
    'common_fonts' => array(
      'name' => 'Common Fonts',
      'url' => 'http://en.wikipedia.org/wiki/Web_typography#Web-safe_fonts',
      'fonts' => common_fonts_list(),
    ),
  );
  return $info;
}