PluginProbe
RT Mega Menu – Mega Menu Builder for Elementor & Gutenberg / trunk
RT Mega Menu – Mega Menu Builder for Elementor & Gutenberg vtrunk
1.5.3 1.5.2 1.5.1 1.5.0 1.4.8 1.4.9 1.4.7 1.4.6 1.4.5 trunk 1.0.9 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 1.2.2 1.2.3 All 47 releases
rt-mega-menu / rt-mega-menu.php

rt-mega-menu.php in RT Mega Menu – Mega Menu Builder for Elementor & Gutenberg trunk, at rt-mega-menu.php

46 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: RT Mega Menu
4 * Description: Elementor Page Builder supported mega menu builder. You make any type of mega menu by using this plugin.
5 * Plugin URI: https://rtmega.themewant.com/
6 * Author: Themewant
7 * Author URI: http://themewant.com/
8 * Version: 1.5.3
9 * License: GPLv2 or later
10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11 * Text Domain: rt-mega-menu
12 * Domain Path: /languages
13 */
14 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
15
16 define( 'RTMEGA_MENU_VERSION', '1.5.3' );
17 define( 'RTMEGA_MENU_PL_ROOT', __FILE__ );
18 define( 'RTMEGA_MENU_PL_URL', plugins_url( '/', RTMEGA_MENU_PL_ROOT ) );
19 define( 'RTMEGA_MENU_PL_PATH', plugin_dir_path( RTMEGA_MENU_PL_ROOT ) );
20 define( 'RTMEGA_MENU_DIR_URL', plugin_dir_url( RTMEGA_MENU_PL_ROOT ) );
21 define( 'RTMEGA_MENU_PLUGIN_BASE', plugin_basename( RTMEGA_MENU_PL_ROOT ) );
22 define( 'RTMEGA_MENU_NAME', 'RTMEGA Menu' );
23
24 include 'admin/includes/admin-settings.php';
25 include 'admin/includes/post-types.php';
26 include 'admin/includes/menu-metabox.php';
27 include 'admin/includes/plugin-scripts.php';
28 include 'admin/includes/admin-ajax-request.php';
29 include 'admin/includes/NoticeDashboard/NoticeDashboard.php';
30
31 include 'public/includes/plugin-scripts.php';
32 include 'public/includes/rtmega-nav-walker.php';
33 include 'public/includes/rt-mega-menu-terms.php';
34 include 'public/includes/rtmega-dynamic-css.php';
35 include 'public/includes/class.helper.php';
36 include 'admin/includes/template-library.php';
37 include 'class.rtmega-menu.php';
38 include 'public/blocks/blocks.php';
39
40 include 'apps/vendor/autoload.php';
41 include 'apps/Appsero_Tracker.php';
42
43 RTMEGA_MENU::instance();
44 if ( class_exists( '\RtMega\MegaMenu\Tracking\Appsero_Tracker' ) ) {
45 \RtMega\MegaMenu\Tracking\Appsero_Tracker::instance();
46 }