File "elements_base.class.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/unlimited-elements-for-elementor/inc_php/framework/elements_base.class.php
File size: 283 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

defined('UNLIMITED_ELEMENTS_INC') or die('Restricted access');
class UniteElementsBaseUC
{
    protected $db;
    protected $imageView;
    public function __construct()
    {
        $this->db = new UniteCreatorDB();
        $this->imageView = new UniteImageViewUC();
    }
}