• File: BackgroundAnimationManager.php
  • Full Path: /home/atelipy/www/wpmain/plugins/smart-slider-3/Nextend/SmartSlider3/BackgroundAnimation/BackgroundAnimationManager.php
  • File size: 478 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Nextend\SmartSlider3\BackgroundAnimation;

use Nextend\Framework\Pattern\VisualManagerTrait;
use Nextend\SmartSlider3\BackgroundAnimation\Block\BackgroundAnimationManager\BlockBackgroundAnimationManager;

class BackgroundAnimationManager {

    use VisualManagerTrait;

    public function display() {

        $backgroundAnimationManagerBlock = new BlockBackgroundAnimationManager($this->MVCHelper);
        $backgroundAnimationManagerBlock->display();
    }
}