function _google_fonts_system_fontname in Google Fonts 7
Same name and namespace in other branches
- 6.2 google_fonts.module \_google_fonts_system_fontname()
- 7.2 google_fonts.module \_google_fonts_system_fontname()
Format the font name as saved in the database (underscores instead of spaces)
File
- ./
google_fonts.module, line 129 - This module enables Google Fonts on your website.
Code
function _google_fonts_system_fontname($string) {
return str_replace(' ', '_', $string);
}