예제 #1
0
 /**
  * Registers foundation fonts
  * @param mixed $fonts the array or string name to register.
  */
 public static function registerFonts($fonts = array())
 {
     if (empty($fonts)) {
         return;
     }
     foreach ($fonts as $font) {
         Icon::registerIconFontSet($font);
     }
 }