PluginProbe
Debug Log Viewer / 1.3
Debug Log Viewer v1.3
2.5 2.5.1 2.5.2 2.4 trunk 1.0.2 1.0.3 1.1 1.1.1 1.2 1.2.1 1.3 1.4 1.4.1 1.4.2 1.4.3 2.0.1 2.0.3 2.0.4 2.0.5 2.1 2.2.3
debug-log-viewer / debug-log-viewer.php

debug-log-viewer.php in Debug Log Viewer 1.3, at debug-log-viewer.php

31 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 /**
4 * Plugin Name: Debug Log Viewer
5 * Description: Effortlessly view, search, and manage your WordPress debug.log right in the admin dashboard. Real-time monitoring, email notifications, and filtering make WordPress debugging easy.
6 * Author: lysyiweb
7 * Version: 1.3
8 * Tags: wordpress debug log, debugging, error log, debug
9 * Requires PHP: 5.4
10 * Tested up to: 6.7.2
11 * Stable tag: 1.3
12 * License: GPLv2 or later
13 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
14 */
15 if (!defined('ABSPATH')) {
16 exit;
17 }
18
19 require_once realpath(__DIR__) . '/admin/helpers/constants.php';
20 require_once realpath(__DIR__) . '/admin/translations/phrases.php';
21
22 $controllers = [ 'Hooks', 'Menu', 'Log', 'Service', 'Notificator', 'Review', 'Freemius'];
23
24 foreach ($controllers as $controller) {
25 require_once realpath(__DIR__) . "/admin/controllers/{$controller}Controller.php";
26 }
27
28 DBG_LV_MenuController::dbg_lv_init();
29 DBG_LV_HooksController::dbg_lv_init();
30 DBG_LV_FreemiusController::dbg_lv_init();
31