You are here

sweaver_plugin_fontface.inc in Sweaver 6

Same filename and directory in other branches
  1. 7 plugins/sweaver_plugin_fontface/sweaver_plugin_fontface.inc

@font-face plugin.

File

plugins/sweaver_plugin_fontface/sweaver_plugin_fontface.inc
View source
<?php

/**
 * @file
 * @font-face plugin.
 */
class sweaver_plugin_fontface extends sweaver_plugin {

  /**
   * Sweaver dependencies.
   */
  public function sweaver_dependencies() {
    return array(
      'fontyourface',
    );
  }

  /**
   * Sweaver objects alter.
   */
  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;
    }
  }

}

Classes

Namesort descending Description
sweaver_plugin_fontface @file @font-face plugin.