PluginProbe
RabbitLoader / 4.0.1
RabbitLoader v4.0.1
4.0.1 4.0 3.2.0 3.1.1 3.1.0 3.0.5 3.0.3 3.0.4 2.17.1 2.17.2 2.17.3 2.17.4 2.17.5 2.17.6 2.17.7 2.18.0 2.18.1 2.18.2 2.18.3 2.18.4 2.18.5 2.18.6 2.18.7 2.18.8 2.18.9 All 128 releases
rabbit-loader / rabbit-loader.php

rabbit-loader.php in RabbitLoader 4.0.1, at rabbit-loader.php

34 lines 1.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: RabbitLoader
4 * Plugin URI: https://rabbitloader.com/
5 * Description: RabbitLoader WordPress connection and performance dashboard.
6 * Version: 4.0.1
7 * Author: Yogi Network
8 * Author URI: https://rabbitloader.com/
9 * License: GPLv2 or later
10 * Text Domain: rabbitloader
11 */
12
13 if (!defined('ABSPATH')) {
14 exit;
15 }
16
17 define('RL5_VERSION', '4.0.1');
18 define('RL5_FILE', __FILE__);
19 define('RL5_DIR', plugin_dir_path(__FILE__));
20 define('RL5_URL', plugin_dir_url(__FILE__));
21
22 require_once RL5_DIR . 'inc/class-rl-settings.php';
23 require_once RL5_DIR . 'inc/sdk/class-rl-api.php';
24 require_once RL5_DIR . 'inc/sdk/class-rl-entitlement.php';
25 require_once RL5_DIR . 'inc/class-rl-admin.php';
26 require_once RL5_DIR . 'inc/class-rl-heartbeat.php';
27 require_once RL5_DIR . 'inc/class-rl-runtime.php';
28 require_once RL5_DIR . 'inc/class-rl-plugin.php';
29
30 add_action('plugins_loaded', ['RL5_Plugin', 'init']);
31
32 // Clear the heartbeat cron when the plugin is deactivated.
33 register_deactivation_hook(__FILE__, ['RL5_Heartbeat', 'clear_cron']);
34