public function sweaver_plugin_fontface::sweaver_objects_alter in Sweaver 6
Same name and namespace in other branches
- 7 plugins/sweaver_plugin_fontface/sweaver_plugin_fontface.inc \sweaver_plugin_fontface::sweaver_objects_alter()
Sweaver objects alter.
Overrides sweaver_plugin::sweaver_objects_alter
File
- plugins/
sweaver_plugin_fontface/ sweaver_plugin_fontface.inc, line 19 - @font-face plugin.
Class
- sweaver_plugin_fontface
- @file @font-face plugin.
Code
public function sweaver_objects_alter(&$objects) {
$extra_fonts = array();
$used_fonts = fontyourface_get_fonts();
foreach ($used_fonts as $font) {
if (module_exists($font->provider)) {
if (function_exists('fontyourface_font_css')) {
$extra_fonts[$font->css_family] = $font->name;
}
else {
$css_function = $font->provider . '_fontyourface_css';
$font_css = $css_function($font);
$extra_fonts[$font_css['font-family']] = $font->group_name;
}
}
}
$objects->property->all['font-family']->property_options += $extra_fonts;
if (isset($objects->property->enabled['font-family'])) {
$objects->property->enabled['font-family']->property_options += $extra_fonts;
}
}