| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Move Addons for Elementor |
| 4 |
* Description: Move Addons is an Elementor Page builder widget plugin. The only Elementor Addon you will ever need! Take Your Website to the whole new level with 80+ Elementor Widgets. |
| 5 |
* Plugin URI: https://demo.moveaddons.com |
| 6 |
* Author: moveaddons |
| 7 |
* Author URI: https://moveaddons.com |
| 8 |
* Version: 1.3.4 |
| 9 |
* License: GPL2 |
| 10 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 11 |
* Text Domain: moveaddons |
| 12 |
* Domain Path: /languages |
| 13 |
* Elementor tested up to: 3.24.0 |
| 14 |
* Elementor Pro tested up to: 3.24.0 |
| 15 |
*/ |
| 16 |
|
| 17 |
if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly |
| 18 |
|
| 19 |
define( 'MOVE_ADDONS_VERSION', '1.3.4' ); |
| 20 |
define( 'MOVE_ADDONS_FILE', __FILE__ ); |
| 21 |
define( 'MOVE_ADDONS_PL_PATH', plugin_dir_path( MOVE_ADDONS_FILE ) ); |
| 22 |
define( 'MOVE_ADDONS_DIR_URL', plugin_dir_url( MOVE_ADDONS_FILE ) ); |
| 23 |
define( 'MOVE_ADDONS_BASE', plugin_basename( MOVE_ADDONS_FILE ) ); |
| 24 |
define( 'MOVE_ADDONS_ASSETS', trailingslashit( MOVE_ADDONS_DIR_URL . 'assets' ) ); |
| 25 |
|
| 26 |
require_once MOVE_ADDONS_PL_PATH . 'base/move-base.php'; |
| 27 |
\MoveAddons\Elementor\move_addons(); |