| 开发者 | beziworld |
|---|---|
| 更新时间 | 2026年6月15日 15:58 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
wp bzal verify-integrity).beziworld-activity-log folder to /wp-content/plugins/.In dedicated custom database tables created on activation, not in the WordPress posts table, so your content queries are never affected.
Non-critical events are buffered and written in a single batched query on shutdown; security events are written immediately. Indexed columns keep the viewer responsive even on large logs.
No. Like every hook-based activity logger, it records actions that flow through WordPress. Direct SQL modifications bypass WordPress hooks and cannot be observed.
No. There is no tracking or telemetry, and the plugin never loads code from external servers. The only outbound requests are the optional integrations described under "External services" below — every one is off by default and is sent only to an endpoint you configure yourself.
Yes:
wp bzal verify-integrity — verify the per-row signatures and the checkpoint chain, reporting any detected tampering.wp bzal checkpoint — seal a new integrity checkpoint immediately.wp bzal purge — apply the retention policy now.wp bzal stats — print the number of recorded events for the current site.Yes. The plugin exposes hooks for integration:
do_action( 'bzal_event_logged', array $columns ) — fires after each event is stored; receives the event's column map, for forwarding to your own systems.apply_filters( 'bzal_geolocate_country', string $country, string $ip ) — return an ISO country code for an IP to power optional login geolocation (no provider is bundled).apply_filters( 'bzal_user_meta_denied', bool $denied, string $meta_key ) — return true to keep a specific user-meta key out of the log.do_action( 'bzal_plugin_booted' ) — fires once the plugin has finished booting, for registering your own extensions.load_plugin_textdomain() call; bundled Polish, German and Czech translations load through WordPress just-in-time loading (the Text Domain and Domain Path headers are declared).wp bzal verify-integrity; per-site partitioned on multisite networks.