| Current Path : /home/ereika83/www/wp-content/plugins/genesis-club-pro/classes/ |
| Current File : /home/ereika83/www/wp-content/plugins/genesis-club-pro/classes/class-fonts-pro.php |
<?php
class Genesis_Club_Fonts_Pro extends Genesis_Club_Fonts {
protected $pro_defaults = array(
'font_awesome' => false
);
function get_defaults() {
return array_merge($this->defaults, $this->pro_defaults);
}
public function enqueue_styles() {
parent::enqueue_styles();
if ($this->get_option('font_awesome')) {
$this->utils->register_icons_font();
}
}
}