Files
2024-10-25 14:16:28 +02:00

35 lines
718 B
PHP

<?php
/**
* @author ThemePunch <info@themepunch.com>
* @link http://www.themepunch.com/
* @copyright 2015 ThemePunch
*/
if( !defined( 'ABSPATH') ) exit();
class RevSliderBaseFront extends RevSliderBase {
const ACTION_ENQUEUE_SCRIPTS = "wp_enqueue_scripts";
/**
*
* main constructor
*
*/
public function __construct($t){
parent::__construct($t);
//die('kakakkakak');
//add_action('wp_enqueue_scripts', array('RevSliderFront', 'onAddScripts'));
RevSliderFront::onAddScripts();
}
}
/**
* old classname extends new one (old classnames will be obsolete soon)
* @since: 5.0
**/
class UniteBaseFrontClassRev extends RevSliderBaseFront {}
?>