premium-addons-for-elementor
Last commit date
admin
3 years ago
assets
3 years ago
includes
3 years ago
languages
3 years ago
modules
3 years ago
widgets
3 years ago
premium-addons-for-elementor.php
3 years ago
readme.txt
3 years ago
wpml-config.xml
3 years ago
premium-addons-for-elementor.php
34 lines
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Premium Addons for Elementor |
| 4 | Description: Premium Addons for Elementor plugin includes widgets and addons like Blog Post Grid, Megamenu, Post Carousel, Advanced Slider, Modal Popup, Google Maps, Pricing Tables, Lottie Animations, Countdown, Testimonials. |
| 5 | Plugin URI: https://premiumaddons.com |
| 6 | Version: 4.9.56 |
| 7 | Elementor tested up to: 3.13.2 |
| 8 | Elementor Pro tested up to: 3.13.1 |
| 9 | Author: Leap13 |
| 10 | Author URI: https://leap13.com/ |
| 11 | Text Domain: premium-addons-for-elementor |
| 12 | Domain Path: /languages |
| 13 | License: GNU General Public License v3.0 |
| 14 | */ |
| 15 | |
| 16 | if ( ! defined( 'ABSPATH' ) ) { |
| 17 | exit; // No access of directly access. |
| 18 | } |
| 19 | |
| 20 | // Define Constants. |
| 21 | define( 'PREMIUM_ADDONS_VERSION', '4.9.56' ); |
| 22 | define( 'PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) ); |
| 23 | define( 'PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) ); |
| 24 | define( 'PREMIUM_ASSETS_PATH', set_url_scheme( wp_upload_dir()['basedir'] . '/premium-addons-elementor' ) ); |
| 25 | define( 'PREMIUM_ASSETS_URL', set_url_scheme( wp_upload_dir()['baseurl'] . '/premium-addons-elementor' ) ); |
| 26 | define( 'PREMIUM_ADDONS_FILE', __FILE__ ); |
| 27 | define( 'PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) ); |
| 28 | define( 'PREMIUM_ADDONS_STABLE_VERSION', '4.9.55' ); |
| 29 | |
| 30 | /* |
| 31 | * Load plugin core file |
| 32 | */ |
| 33 | require_once PREMIUM_ADDONS_PATH . 'includes/class-pa-core.php'; |
| 34 |