| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: MarqueeAll – Elementor Marquee for Image, Text, Post Grid, Testimonial, Cryptocurrency, Faqs & News Ticker 🌀 |
| 4 |
* Description: All-in-one Elementor marquee addon for scrolling text, images, posts, testimonials, cryptocurrency price ticker, faq marquee and news ticker widgets. |
| 5 |
* Version: 1.2.3 |
| 6 |
* Author: Aman Brar |
| 7 |
* Author URI: https://profiles.wordpress.org/amandeepwebspero/ |
| 8 |
* License: GPL-2.0-or-later |
| 9 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 10 |
* Requires at least: 5.8 |
| 11 |
* Requires PHP: 7.4 |
| 12 |
* Tested up to: 7.1 |
| 13 |
* Text Domain: marqueeall |
| 14 |
* Requires Plugins: elementor |
| 15 |
* |
| 16 |
* @package MarqueeAll |
| 17 |
*/ |
| 18 |
|
| 19 |
if ( ! defined( 'ABSPATH' ) ) { |
| 20 |
exit; |
| 21 |
} |
| 22 |
|
| 23 |
define( 'MASSCIE_VERSION', '1.3.0' ); |
| 24 |
define( 'MASSCIE_PATH', plugin_dir_path( __FILE__ ) ); |
| 25 |
define( 'MASSCIE_URL', plugin_dir_url( __FILE__ ) ); |
| 26 |
|
| 27 |
/** |
| 28 |
* Activation hook — seed the widget status option once. |
| 29 |
* |
| 30 |
* @return void |
| 31 |
*/ |
| 32 |
function marqueeall_activate() { |
| 33 |
require_once MASSCIE_PATH . 'includes/class-widget-registry.php'; |
| 34 |
require_once MASSCIE_PATH . 'includes/class-widget-manager.php'; |
| 35 |
MASSCIE\Widget_Manager::on_activation(); |
| 36 |
} |
| 37 |
register_activation_hook( __FILE__, 'marqueeall_activate' ); |
| 38 |
|
| 39 |
// Load the plugin. |
| 40 |
require_once MASSCIE_PATH . 'includes/plugin.php'; |
| 41 |
|