You are here

function common_fonts_fontyourface_view in @font-your-face 7

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

Implements hook_fontyourface_view().

File

modules/common_fonts/common_fonts.module, line 27

Code

function common_fonts_fontyourface_view($font, $text) {
  $output = '';
  $sizes = array(
    32,
    24,
    18,
    14,
    12,
    10,
  );
  foreach ($sizes as $size) {
    $output .= '<div style="' . fontyourface_font_css($font) . ' font-size: ' . $size . 'px; line-height: ' . $size . 'px;">' . $text . '</div>';
  }

  // foreach
  return $output;
}