wp_back/wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/BackgroundAnimation/BackgroundAnimationManager.php

17 lines
478 B
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?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();
}
}