35 lines
586 B
PHP
35 lines
586 B
PHP
<?php
|
|
/**
|
|
* @author ThemePunch <info@themepunch.com>
|
|
* @link http://www.themepunch.com/
|
|
* @copyright 2015 ThemePunch
|
|
*/
|
|
// class UniteElementsBaseRev{
|
|
//
|
|
// protected $db;
|
|
//
|
|
// public function __construct(){
|
|
//
|
|
// $this->db = new UniteDBRev();
|
|
// }
|
|
//
|
|
// }
|
|
|
|
|
|
class RevSliderElementsBase {
|
|
|
|
protected $db;
|
|
|
|
public function __construct(){
|
|
|
|
$this->db = rev_db_class::rev_db_instance();
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* old classname extends new one (old classnames will be obsolete soon)
|
|
* @since: 5.0
|
|
**/
|
|
class UniteElementsBaseRev extends RevSliderElementsBase {}
|
|
?>
|