Changeset 2545276
- Timestamp:
- 06/09/2021 07:42:19 PM (5 years ago)
- Location:
- gorilla-debug
- Files:
-
- 48 added
- 3 edited
-
assets/screenshot-3.png (modified) (previous)
-
tags/0.1.0/css (added)
-
tags/0.1.0/css/style.css (added)
-
tags/0.1.0/gorilla-debug.php (added)
-
tags/0.1.0/inc (added)
-
tags/0.1.0/inc/activate.php (added)
-
tags/0.1.0/inc/admin-menus.php (added)
-
tags/0.1.0/inc/classes (added)
-
tags/0.1.0/inc/classes/debug-log-manager.php (added)
-
tags/0.1.0/inc/classes/file-manager.php (added)
-
tags/0.1.0/inc/classes/wp-config-manager.php (added)
-
tags/0.1.0/inc/constants.php (added)
-
tags/0.1.0/inc/deactivate.php (added)
-
tags/0.1.0/inc/enqueue.php (added)
-
tags/0.1.0/inc/form-scripts.php (added)
-
tags/0.1.0/inc/functions.php (added)
-
tags/0.1.0/inc/notices.php (added)
-
tags/0.1.0/inc/pages (added)
-
tags/0.1.0/inc/pages/fallback.php (added)
-
tags/0.1.0/inc/pages/log.php (added)
-
tags/0.1.0/inc/pages/settings.php (added)
-
tags/0.1.0/inc/pages/setup.php (added)
-
tags/0.1.0/js (added)
-
tags/0.1.0/js/page-settings.js (added)
-
tags/0.1.0/readme.txt (added)
-
tags/0.1.0/uninstall.php (added)
-
tags/1.0.0 (added)
-
trunk/css/style.css (added)
-
trunk/gorilla-debug.php (modified) (2 diffs)
-
trunk/inc/activate.php (added)
-
trunk/inc/admin-menus.php (added)
-
trunk/inc/ajax.php (added)
-
trunk/inc/classes (added)
-
trunk/inc/classes/debug-log-manager.php (added)
-
trunk/inc/classes/file-manager.php (added)
-
trunk/inc/classes/wp-config-manager.php (added)
-
trunk/inc/constants.php (added)
-
trunk/inc/deactivate.php (added)
-
trunk/inc/enqueue.php (added)
-
trunk/inc/form-scripts.php (added)
-
trunk/inc/functions.php (added)
-
trunk/inc/notices.php (added)
-
trunk/inc/pages (added)
-
trunk/inc/pages/fallback.php (added)
-
trunk/inc/pages/log.php (added)
-
trunk/inc/pages/settings.php (added)
-
trunk/inc/pages/setup.php (added)
-
trunk/js/page-log.js (added)
-
trunk/js/page-settings.js (added)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/vendors (added)
Legend:
- Unmodified
- Added
- Removed
-
gorilla-debug/trunk/gorilla-debug.php
r2542272 r2545276 31 31 require_once (plugin_dir_path( __FILE__ ) . 'inc' . DIRECTORY_SEPARATOR . 'form-scripts.php'); 32 32 require_once (plugin_dir_path( __FILE__ ) . 'inc' . DIRECTORY_SEPARATOR . 'notices.php'); 33 33 require_once (plugin_dir_path( __FILE__ ) . 'inc' . DIRECTORY_SEPARATOR . 'ajax.php'); 34 34 35 35 … … 97 97 98 98 99 100 /****************************************************************************** 101 * Ajax 102 ******************************************************************************/ 103 add_action('wp_ajax_get_debug_log_content', 'gorilla_debug\get_debug_log_content'); 104 add_action('wp_ajax_set_debug_log_content', 'gorilla_debug\set_debug_log_content'); 105 106 99 107 ?> -
gorilla-debug/trunk/readme.txt
r2542272 r2545276 4 4 Requires at least: 5.7 5 5 Tested up to: 5.7 6 Stable tag: 0.1.06 Stable tag: 1.0.0 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 14 14 Using this simple plugin, you can update `wp-config.php` by setting the PHP named constants used for WordPress debugging via a simple UI. Those named constants are `WP_DEBUG`, `WP_DEBUG_LOG`, `WP_DEBUG_DISPLAY`, `SCRIPT_DEBUG`, and `SAVEQUERIES`. 15 15 16 This plugin also allows you to view the `debug.log` file from within the WP Admin panel, without the need to view the file directly.16 This plugin also allows you to view and edit the `debug.log` file from within the WP Admin panel, without the need to access this file directly through the file system. 17 17 18 18 Moreover, this plugin introduces a debugging function, `gorilla_debug()`, that allows you to output debugging messages to either the display or the `debug.log` file. … … 20 20 *This plugin is intended for development purposes only* 21 21 22 For full documentation, visit https://debug.gorilla.solutions 22 For full documentation, visit https://debug.gorilla.solutions and https://debug.gorilla.wtf 23 23 24 24 == Installation == … … 60 60 == Changelog == 61 61 62 = 1.0.0 = 63 * Added functionality to edit debug.log from within the WP Admin panel 64 62 65 = 0.1.0 = 63 66 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.