plugin / owc-activity-log
Tracks all WordPress activity such as meta, options, users, posts, and more.
Package info
github.com/OpenWebconcept/plugin-owc-activity-log
Type:wordpress-plugin
pkg:composer/plugin/owc-activity-log
v1.0.2
2026-05-12 11:49 UTC
Requires
- php: ^8.1
- composer/installers: ^2.0
Requires (Dev)
- 10up/wp_mock: ^1.0
- brianhenryie/strauss: ^0.15.0
- dealerdirect/phpcodesniffer-composer-installer: ^1.0
- mockery/mockery: ^1.6
- pestphp/pest: ^1.0
- squizlabs/php_codesniffer: ^3.7
- wp-coding-standards/wpcs: ^3.0
This package is auto-updated.
Last update: 2026-05-12 11:50:18 UTC
README
Tracks all WordPress activity such as posts, meta, options, users, taxonomy, comments, plugins, themes and more.
Requirements
- PHP 8.1 or higher
- WordPress 6.7 or higher
Installation
Manual installation
- Upload the 'owc-activity-log' folder in to the
/wp-content/plugins/directory. cd /wp-content/plugins/owc-activity-log- Run composer install, NPM asset build is in version control already.
- Activate the plugin in via the WordPress admin.
Composer installation
composer source git@github.com:OpenWebconcept/plugin-owc-activity-log.gitcomposer require plugin/owc-activity-logcd /wp-content/plugins/owc-activity-log
Hooks
Admin overview page access
By default, the overview page inside the WordPress admin of this plugin is only accessible to administrators.
Some projects may require users with different roles or capabilities to access this page as well.
This filter allows you to customize the required capability.
add_filter('owc_activity_log_admin_page_overview_cap', function ($cap) { return 'superuser'; // Or any other capability. });
Development
Install dependencies
composer install
Run tests
composer test
Code style
composer phpcs composer phpcbf
Prefix vendor dependencies
composer prefix-dependencies