function fontyourface_disable_font in @font-your-face 6.2
Same name and namespace in other branches
- 7.2 fontyourface.module \fontyourface_disable_font()
- 7 fontyourface.module \fontyourface_disable_font()
Disables a single font.
2 calls to fontyourface_disable_font()
- fontsquirrel_fontyourface_enable in modules/
fontsquirrel/ fontsquirrel.module - Implements hook_fontyourface_enable().
- fontyourface_admin_edit_form_submit in ./
fontyourface.module - Edit form submit handler.
File
- ./
fontyourface.module, line 866
Code
function fontyourface_disable_font(&$font) {
db_query("UPDATE {fontyourface_font} SET enabled = 0 WHERE fid = %d", $font->fid);
$font->enabled = 0;
$disable_function = $font->provider . '_fontyourface_disable';
if (function_exists($disable_function)) {
$disable_function($font);
}
// if
}