From 5ee359f10968e222be02cb199cf3a4485491a979 Mon Sep 17 00:00:00 2001 From: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com> Date: Sat, 12 Jul 2025 16:16:32 +0300 Subject: [PATCH] Updates --- README.md | 23 ++++++++++++----------- aryo-activity-log.php | 23 ++++++++++------------- readme.txt | 12 ++++++------ 3 files changed, 28 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index 0a1e6eb..15a07ba 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,14 @@ **Contributors:** [elemntor](https://profiles.wordpress.org/elemntor), [KingYes](https://profiles.wordpress.org/KingYes), [ariel.k](https://profiles.wordpress.org/ariel.k), [maor](https://profiles.wordpress.org/maor) **Tags:** Activity Log, User Log, Audit Log, Security, Email Log, **Requires at least:** 6.0 -**Requires PHP:** 7.0 -**Tested up to:** 6.7 +**Requires PHP:** 7.4 +**Tested up to:** 6.8 **Stable tag:** 2.11.2 **License:** GPLv2 or later This top rated Activity Log plugin helps you monitor & log all changes and actions on your WordPress site, so you can remain secure and organized. -## Description ## +## Description AN EASY TO USE & FULLY SUPPORTED WORDPRESS ACTIVITY LOG PLUGIN
@@ -89,28 +89,29 @@ We understand the importance of maintaining a clean and efficient database envir

Contributions:

Would you like to contribute to this plugin? You’re more than welcome to submit your pull requests on the [GitHub repo](https://github.com/pojome/activity-log). And, if you have any notes about the code, please open a ticket on the issue tracker. -## Installation ## +## Installation 1. Upload plugin files to your plugins folder, or install using WordPress' built-in Add New Plugin installer 1. Activate the plugin 1. Go to the plugin page (under Dashboard > Activity Log) -## Screenshots ## +## Screenshots 1. The log viewer page 2. The settings page 3. Screen Options -## Frequently Asked Questions ## +## Frequently Asked Questions -### Requirements ### -__Requires PHP 7.0__ for list management functionality. +### Requirements -### What is the plugin license? ### +__Requires PHP 7.4__ for list management functionality. + +### What is the plugin license? This plugin is released under a GPL license. -### Can I export logs? ### +### Can I export logs? You can easily export logs with Activity Log. We also support exporting filtered results. Filter by the time the action took place, roles, users, options, action type, and more. @@ -118,7 +119,7 @@ You can easily export logs with Activity Log. We also support exporting filtered You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. [Report a security vulnerability](https://patchstack.com/database/vdp/aryo-activity-log). -## Changelog ## +## Changelog ### 2.11.2 - 2024-11-12 ### * Security Fix: Improved code security enforcement in theme/plugin file editor diff --git a/aryo-activity-log.php b/aryo-activity-log.php index 29a7579..85af16e 100644 --- a/aryo-activity-log.php +++ b/aryo-activity-log.php @@ -81,13 +81,6 @@ final class AAL_Main { */ public $notifications; - /** - * Load text domain - */ - public function load_textdomain() { - load_plugin_textdomain( 'aryo-activity-log' ); - } - /** * Construct */ @@ -105,8 +98,6 @@ protected function __construct() { // set up our DB name $wpdb->activity_log = $wpdb->prefix . 'aryo_activity_log'; - - add_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) ); } /** @@ -119,8 +110,11 @@ protected function __construct() { * @return void */ public function __clone() { - // Cloning instances of the class is forbidden - _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'aryo-activity-log' ), '2.0.7' ); + _doing_it_wrong( + __FUNCTION__, + sprintf( 'Cloning instances of the singleton "%s" class is forbidden.', get_class( $this ) ), + '1.0.0' + ); } /** @@ -130,8 +124,11 @@ public function __clone() { * @return void */ public function __wakeup() { - // Unserializing instances of the class is forbidden - _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'aryo-activity-log' ), '2.0.7' ); + _doing_it_wrong( + __FUNCTION__, + sprintf( 'Unserializing instances of the singleton "%s" class is forbidden.', get_class( $this ) ), + '1.0.0' + ); } /** diff --git a/readme.txt b/readme.txt index fa964e6..4c66974 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: elemntor, KingYes, ariel.k, maor Tags: Activity Log, User Log, Audit Log, Security, Email Log, Requires at least: 6.0 -Requires PHP: 7.0 -Tested up to: 6.7 +Requires PHP: 7.4 +Tested up to: 6.8 Stable tag: 2.11.2 License: GPLv2 or later @@ -20,7 +20,7 @@ Want to monitor and track your WordPress website activity? Find out exactly who * If a plugin/theme was activated/deactivated * Suspicious admin activity -It’s so essential; you’ll wonder how you ever managed your website without it. The plugin is also lightning fast and works behind the scenes, so it doesn\’t affect site and admin performance. For optimal performance, we built the plugin so that it runs on a separate table in the database. +It’s so essential; you’ll wonder how you ever managed your website without it. The plugin is also lightning fast and works behind the scenes, so it doesn’t affect site and admin performance. For optimal performance, we built the plugin so that it runs on a separate table in the database. If you have more than a handful of users, keeping track of who did what is virtually impossible. This plugin solves that issue by tracking what actions were initiated by which users, and displaying it in an easy-to-use and easy-to-filter view on the dashboard of your WordPress site. @@ -61,7 +61,7 @@ For each event recorded by the activity log, the following details are also logg * Source IP address from which the change originated * Affected object where the change occurred -The plugin doesn\’t require any kind of setup; it works right out of the box (just another reason people love it)! +The plugin doesn’t require any kind of setup; it works right out of the box (just another reason people love it)!

Data Storage and Performance Optimization

@@ -395,8 +395,8 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro * Added filter by date - All Time, Today, Yesterday, Week, Month * Added Avatar to author * Added role for author -* Added log for activeted theme -* Re-order Culoumns +* Added log for activated theme +* Re-order Columns * Compatible up to 3.8.1 * Settings page is now accessible directly from Activity Log's menu * Keep your log for any time your wants