You are here

function fonts_com_fontyourface_view in @font-your-face 6.2

Same name and namespace in other branches
  1. 7 modules/fonts_com/fonts_com.module \fonts_com_fontyourface_view()

Implements hook_fontyourface_view().

File

modules/fonts_com/fonts_com.module, line 124

Code

function fonts_com_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;
}