PluginProbe
RT Mega Menu – Mega Menu Builder for Elementor & Gutenberg / 1.4.1
RT Mega Menu – Mega Menu Builder for Elementor & Gutenberg v1.4.1
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 1.4.1, at rt-mega-menu.php

70 lines 2.0 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.4.1
9 * License: GPL2
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
17 define( 'RTMEGA_MENU_VERSION', '1.4.1' );
18 define( 'RTMEGA_MENU_PL_ROOT', __FILE__ );
19 define( 'RTMEGA_MENU_PL_URL', plugins_url( '/', RTMEGA_MENU_PL_ROOT ) );
20 define( 'RTMEGA_MENU_PL_PATH', plugin_dir_path( RTMEGA_MENU_PL_ROOT ) );
21 define( 'RTMEGA_MENU_DIR_URL', plugin_dir_url( RTMEGA_MENU_PL_ROOT ) );
22 define( 'RTMEGA_MENU_PLUGIN_BASE', plugin_basename( RTMEGA_MENU_PL_ROOT ) );
23 define( 'RTMEGA_MENU_NAME', 'RTMEGA Menu' );
24
25 include 'admin/includes/admin-settings.php';
26 include 'admin/includes/post-types.php';
27 include 'admin/includes/menu-metabox.php';
28 include 'admin/includes/plugin-scripts.php';
29 include 'admin/includes/admin-ajax-request.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 'admin/includes/notice.php';
38 include 'class.rtmega-menu.php';
39 include 'public/blocks/blocks.php';
40
41 RTMEGA_MENU::instance();
42
43
44 add_action( 'plugins_loaded', 'rtmega_appsero_init_tracker' );
45
46 function rtmega_appsero_init_tracker() {
47
48 if ( ! class_exists( 'Appsero\Client' ) ) {
49 require_once __DIR__ . '/apps/Client.php';
50 }
51
52 $client = new Appsero\Client( '1e51d718-e4b3-4fb7-bc97-7845f1f2d007', 'RT Mega Menu', __FILE__ );
53
54 // Active insights
55 $client->insights()->init();
56
57 }
58
59
60
61
62
63
64
65
66
67
68
69
70