PluginProbe
MarqueeAll – Elementor Marquee for Image, Text, Post Grid, Testimonial, Cryptocurrency, Faqs & News Ticker 🌀 / 1.2.3
MarqueeAll – Elementor Marquee for Image, Text, Post Grid, Testimonial, Cryptocurrency, Faqs & News Ticker 🌀 v1.2.3
1.2.3 1.2.2 trunk 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1
marqueeall / marqueeall.php

marqueeall.php in MarqueeAll – Elementor Marquee for Image, Text, Post Grid, Testimonial, Cryptocurrency, Faqs & News Ticker 🌀 1.2.3, at marqueeall.php

41 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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