????

Your IP : 18.222.215.12


Current Path : /home/ncom/www/wp-content/plugins/smart-slider-3/Nextend/Framework/Font/
Upload File :
Current File : //home/ncom/www/wp-content/plugins/smart-slider-3/Nextend/Framework/Font/AbstractFontSource.php

<?php


namespace Nextend\Framework\Font;


use Nextend\Framework\Form\ContainerInterface;

abstract class AbstractFontSource {

    protected $name;

    public abstract function getLabel();

    /**
     * @return string
     */
    public function getName() {
        return $this->name;
    }

    public function onFontManagerLoad($force = false) {

    }

    public function onFontManagerLoadBackend() {
    }

    /**
     * @param ContainerInterface $container
     */
    abstract public function renderFields($container);
}