Changeset 3274803
- Timestamp:
- 04/16/2025 01:43:58 PM (12 months ago)
- Location:
- easy-error-log
- Files:
-
- 34 added
- 5 deleted
- 2 edited
-
tags/2.1.3 (added)
-
tags/2.1.3/assets (added)
-
tags/2.1.3/assets/admin-easy-errors.css (added)
-
tags/2.1.3/assets/admin-easy-errors.js (added)
-
tags/2.1.3/assets/easy-errors.css (added)
-
tags/2.1.3/assets/easy-errors.js (added)
-
tags/2.1.3/assets/fe-easy-errors.js (added)
-
tags/2.1.3/assets/fe-error-style.css (added)
-
tags/2.1.3/composer.json (added)
-
tags/2.1.3/easy-error-log.php (added)
-
tags/2.1.3/inc (added)
-
tags/2.1.3/inc/EELActivate.php (added)
-
tags/2.1.3/inc/EELAjax.php (added)
-
tags/2.1.3/inc/EELBase.php (added)
-
tags/2.1.3/inc/EELDeactivate.php (added)
-
tags/2.1.3/languages (added)
-
tags/2.1.3/readme.txt (added)
-
tags/2.1.3/vendor (added)
-
tags/2.1.3/vendor/autoload.php (added)
-
tags/2.1.3/vendor/composer (added)
-
tags/2.1.3/vendor/composer/ClassLoader.php (added)
-
tags/2.1.3/vendor/composer/InstalledVersions.php (added)
-
tags/2.1.3/vendor/composer/LICENSE (added)
-
tags/2.1.3/vendor/composer/autoload_classmap.php (added)
-
tags/2.1.3/vendor/composer/autoload_namespaces.php (added)
-
tags/2.1.3/vendor/composer/autoload_psr4.php (added)
-
tags/2.1.3/vendor/composer/autoload_real.php (added)
-
tags/2.1.3/vendor/composer/autoload_static.php (added)
-
tags/2.1.3/vendor/composer/installed.json (added)
-
tags/2.1.3/vendor/composer/installed.php (added)
-
trunk/easy-error-log.php (modified) (2 diffs)
-
trunk/inc/EELActivate.php (added)
-
trunk/inc/EELAjax.php (added)
-
trunk/inc/EELBase.php (added)
-
trunk/inc/EELDeactivate.php (added)
-
trunk/inc/EEL_Activate.php (deleted)
-
trunk/inc/EEL_Ajax.php (deleted)
-
trunk/inc/EEL_Base copy.php (deleted)
-
trunk/inc/EEL_Base.php (deleted)
-
trunk/inc/EEL_Deactivate.php (deleted)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-error-log/trunk/easy-error-log.php
r3259807 r3274803 11 11 * Plugin URI: https://github.com/sabbirsam/wp-error-log 12 12 * 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. 214 * Requires at least: 5.9 or higher15 * Requires PHP: 5. 4 or higher13 * Version: 2.1.3 14 * Requires at least: 5.9 15 * Requires PHP: 5.6 16 16 * Author: sabbirsam 17 17 * Author URI: https://github.com/sabbirsam/ … … 28 28 } 29 29 30 use EEL\Inc\EEL _Activate; //phpcs:ignore31 use EEL\Inc\EEL _Deactivate; //phpcs:ignore30 use EEL\Inc\EELActivate; //phpcs:ignore 31 use EEL\Inc\EELDeactivate; //phpcs:ignore 32 32 33 define( 'EASY_ERROR_LOG_VERSION', '2.1. 2' );33 define( 'EASY_ERROR_LOG_VERSION', '2.1.3' ); 34 34 define( 'EASY_ERROR_LOG_FILE', __FILE__ ); 35 35 define( 'EASY_ERROR_LOG_DIR_URL', plugin_dir_url( __FILE__ ) ); 36 36 37 37 38 if ( ! class_exists('EEL_Error') ) { 39 class EEL_Error { 38 if ( ! 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 */ 40 50 private $base; 41 51 52 /** 53 * The __construct of the class. 54 * 55 * @return EELError 56 */ 42 57 public function __construct() { 43 $this->base = new EEL\Inc\EEL _Base();58 $this->base = new EEL\Inc\EELBase(); 44 59 } 45 60 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(); 48 68 } 49 69 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(); 52 77 } 53 78 } 54 79 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' )); 58 88 } -
easy-error-log/trunk/readme.txt
r3259807 r3274803 3 3 Tags: error, log, debug, console, system 4 4 Requires at least: 5.9 5 Tested up to: 6. 75 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable Tag: 2.1. 27 Stable Tag: 2.1.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 **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. 54 54 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) 56 56 **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. 57 57 … … 77 77 78 78 == 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. 79 82 80 83 = 2.1.2 - 21 March 2025 =
Note: See TracChangeset
for help on using the changeset viewer.