elements-base.class.php 479 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @author ThemePunch <info@themepunch.com>
  4. * @link http://www.themepunch.com/
  5. * @copyright 2015 ThemePunch
  6. */
  7. if( !defined( 'ABSPATH') ) exit();
  8. class RevSliderElementsBase {
  9. protected $db;
  10. public function __construct(){
  11. $this->db = new RevSliderDB();
  12. }
  13. }
  14. /**
  15. * old classname extends new one (old classnames will be obsolete soon)
  16. * @since: 5.0
  17. **/
  18. class UniteElementsBaseRev extends RevSliderElementsBase {}
  19. ?>