Plugin Directory

Changeset 3274803


Ignore:
Timestamp:
04/16/2025 01:43:58 PM (12 months ago)
Author:
devsabbirahmed
Message:

v2.1.3 released with ORG listed issue fixed version.

Location:
easy-error-log
Files:
34 added
5 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • easy-error-log/trunk/easy-error-log.php

    r3259807 r3274803  
    1111 * Plugin URI: https://github.com/sabbirsam/wp-error-log
    1212 * Description: Experience hassle-free debugging by conveniently defining error modes and debug log constants within the config file. No need to delve into core files – simply toggle the settings. Logs PHP errors and access all errors in a single, user-friendly dashboard page, making it effortless to identify and rectify issues.
    13  * Version:           2.1.2
    14  * Requires at least: 5.9 or higher
    15  * Requires PHP:      5.4 or higher
     13 * Version:           2.1.3
     14 * Requires at least: 5.9
     15 * Requires PHP:      5.6
    1616 * Author:            sabbirsam
    1717 * Author URI:        https://github.com/sabbirsam/
     
    2828}
    2929
    30 use EEL\Inc\EEL_Activate; //phpcs:ignore
    31 use EEL\Inc\EEL_Deactivate;  //phpcs:ignore
     30use EEL\Inc\EELActivate; //phpcs:ignore
     31use EEL\Inc\EELDeactivate;  //phpcs:ignore
    3232
    33 define( 'EASY_ERROR_LOG_VERSION', '2.1.2' );
     33define( 'EASY_ERROR_LOG_VERSION', '2.1.3' );
    3434define( 'EASY_ERROR_LOG_FILE', __FILE__ );
    3535define( 'EASY_ERROR_LOG_DIR_URL', plugin_dir_url( __FILE__ ) );
    3636
    3737
    38 if ( ! class_exists('EEL_Error') ) {
    39     class EEL_Error {
     38if ( ! class_exists('EELError') ) {
     39    /**
     40     * Main class for Easy Error Log.
     41     *
     42     * @since 1.0.0
     43     */
     44    class EELError {
     45        /**
     46         * The single instance of the class.
     47         *
     48         * @var EELError
     49         */
    4050        private $base;
    4151
     52        /**
     53         * The __construct of the class.
     54         *
     55         * @return EELError
     56         */
    4257        public function __construct() {
    43             $this->base = new EEL\Inc\EEL_Base();
     58            $this->base = new EEL\Inc\EELBase();
    4459        }
    4560
    46         public function eel_activate() {
    47             EEL\Inc\EEL_Activate::eel_activate();
     61        /**
     62         * The init activate method of the class.
     63         *
     64         * @return void
     65         */
     66        public function easy_error_log_activate() {
     67            EEL\Inc\EELActivate::easy_error_log_activate();
    4868        }
    4969
    50         public function eel_deactivate() {
    51             EEL\Inc\EEL_Deactivate::eel_deactivate();
     70        /**
     71         * The init deactivate method of the class.
     72         *
     73         * @return void
     74         */
     75        public function easy_error_log_deactivate() {
     76            EEL\Inc\EELDeactivate::easy_error_log_deactivate();
    5277        }
    5378    }
    5479
    55     $err = new EEL_Error();
    56     register_activation_hook(__FILE__, array( $err, 'eel_activate' ));
    57     register_deactivation_hook(__FILE__, array( $err, 'eel_deactivate' ));
     80    /**
     81     * The main instance of the class.
     82     *
     83     * @return EELError
     84     */
     85    $err = new EELError();
     86    register_activation_hook(__FILE__, array( $err, 'easy_error_log_activate' ));
     87    register_deactivation_hook(__FILE__, array( $err, 'easy_error_log_deactivate' ));
    5888}
  • easy-error-log/trunk/readme.txt

    r3259807 r3274803  
    33Tags: error, log, debug, console, system
    44Requires at least: 5.9
    5 Tested up to: 6.7
     5Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable Tag: 2.1.2
     7Stable Tag: 2.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353**Activity Guard** is the Ultimate WordPress activity log plugin for tracking user actions, monitoring WooCommerce events, and securing your site in real-time. With instant notifications via Slack and email, it empowers admins to respond quickly to critical events and ensure site security. 
    5454
    55 🛒 **[WC Bulk Order Generator](https://wordpress.org/plugins/wc-bulk-order-generator/)** (Free) 
     55🛒 **[WC Bulk Order Generator](https://wordpress.org/plugins/easy-error-log/)** (Free) 
    5656**WC Bulk Generator** helps developers and store owners create realistic WooCommerce test data quickly. Generate thousands of WooCommerce products and orders with just a few clicks. 
    5757
     
    7777
    7878== Changelog ==
     79
     80= 2.1.3 - 21 April 2025 =
     81- Fixed: Resolved all identified issues flagged by the plugin checker for optimal functionality and compliance.
    7982
    8083= 2.1.2 - 21 March 2025 =
Note: See TracChangeset for help on using the changeset viewer.