• File: FontManager.php
  • Full Path: /home/atelipy/www/wpmain/plugins/smart-slider-3/Nextend/Framework/Font/FontManager.php
  • File size: 352 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Nextend\Framework\Font;

use Nextend\Framework\Font\Block\FontManager\BlockFontManager;
use Nextend\Framework\Pattern\VisualManagerTrait;

class FontManager {

    use VisualManagerTrait;

    public function display() {

        $fontManagerBlock = new BlockFontManager($this->MVCHelper);
        $fontManagerBlock->display();
    }
}