You are here

function _google_fonts_format_subsets in Google Fonts 7

Same name and namespace in other branches
  1. 6.2 google_fonts.admin.inc \_google_fonts_format_subsets()
  2. 7.2 google_fonts.admin.inc \_google_fonts_format_subsets()

Return an array with formatted subsets (eg: change latin-ext into Latin Extended)

1 call to _google_fonts_format_subsets()
google_fonts_admin_settings_form in ./google_fonts.admin.inc
Implements hook_admin_settings() for configuring the module

File

./google_fonts.admin.inc, line 302
Administrative page callbacks for the Google Fonts module.

Code

function _google_fonts_format_subsets($subsets) {
  foreach ($subsets as $key => $subset) {
    $subsets[$key] = ucfirst(str_replace('-ext', ' extended', check_plain($subset)));
  }
  return $subsets;
}