| Server IP : 69.72.244.102 / Your IP : 216.73.216.164 Web Server : LiteSpeed System : Linux s3434.fra1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64 User : konzalta ( 1271) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/konzalta/public_html/wp-content/plugins/droit-elementor-addons/ |
Upload File : |
<?php
/**
* @package droitelementoraddons
* @developer DroitLab Team
*/
/*
Plugin Name: Droit Elementor Addons
Plugin URI: https://droitthemes.com/droit-elementor-addons/
Description: Droit Elementor Addons is a bundle of super useful widgets. Build a beautiful website using this addon without any hassle. Just plug and play.
Version: 3.1.5
Author: DroitThemes
Author URI: https://droitthemes.com/
Elementor tested up to: 3.15.2
Elementor Pro tested up to: 3.13.4
License: GPLv3
Text Domain: droit-addons
*/
// define the main file
define( 'DROIT_ADDONS_FILE_', __FILE__ );
//define version
define( 'DROIT_ADDONS_VERSION_', '3.1.5');
// define render css
define( 'DROIT_ADDONS_CSS_RENDER_', true);
// define minify render css
define( 'DROIT_ADDONS_CSS_RENDER_MINIFY', false );
// render icon from css files
define( 'DROIT_ADDONS_ICON_RENDER', false );
// core page
include_once( __DIR__ . '/functions.php' );
include_once( __DIR__ . '/core.php' );
// load plugin
add_action( 'plugins_loaded', function(){
// load text domain
load_plugin_textdomain( 'droit-addons', false, basename( dirname( __FILE__ ) ) . '/languages' );
//load core
DROIT_ELEMENTOR\Dtdr_Core::instance()->load();
});