Plugin Directory

Changeset 2545276


Ignore:
Timestamp:
06/09/2021 07:42:19 PM (5 years ago)
Author:
gorillasolutions
Message:

Added V1.0.0

Location:
gorilla-debug
Files:
48 added
3 edited

Legend:

Unmodified
Added
Removed
  • gorilla-debug/trunk/gorilla-debug.php

    r2542272 r2545276  
    3131require_once (plugin_dir_path( __FILE__ ) . 'inc' . DIRECTORY_SEPARATOR . 'form-scripts.php');
    3232require_once (plugin_dir_path( __FILE__ ) . 'inc' . DIRECTORY_SEPARATOR . 'notices.php');
    33 
     33require_once (plugin_dir_path( __FILE__ ) . 'inc' . DIRECTORY_SEPARATOR . 'ajax.php');
    3434
    3535
     
    9797
    9898
     99
     100/******************************************************************************
     101 * Ajax
     102 ******************************************************************************/
     103add_action('wp_ajax_get_debug_log_content', 'gorilla_debug\get_debug_log_content');
     104add_action('wp_ajax_set_debug_log_content', 'gorilla_debug\set_debug_log_content');
     105
     106
    99107?>
  • gorilla-debug/trunk/readme.txt

    r2542272 r2545276  
    44Requires at least: 5.7
    55Tested up to: 5.7
    6 Stable tag: 0.1.0
     6Stable tag: 1.0.0
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1414Using 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`.
    1515
    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.
     16This 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.
    1717
    1818Moreover, this plugin introduces a debugging function, `gorilla_debug()`, that allows you to output debugging messages to either the display or the `debug.log` file.
     
    2020*This plugin is intended for development purposes only*
    2121
    22 For full documentation, visit https://debug.gorilla.solutions
     22For full documentation, visit https://debug.gorilla.solutions and https://debug.gorilla.wtf
    2323
    2424== Installation ==
     
    6060== Changelog ==
    6161
     62= 1.0.0 =
     63* Added functionality to edit debug.log from within the WP Admin panel
     64
    6265= 0.1.0 =
    6366* Initial release
Note: See TracChangeset for help on using the changeset viewer.