PluginProbe
Move Addons for Elementor / trunk
Move Addons for Elementor vtrunk
trunk 1.0.0 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 All 29 releases
move-addons / move-addons.php

move-addons.php in Move Addons for Elementor trunk, at move-addons.php

27 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.8
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.28.3
14 * Elementor Pro tested up to: 3.28.3
15 */
16
17 if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
18
19 define( 'MOVE_ADDONS_VERSION', '1.3.8' );
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();