webbuilders-group/silverstripe-kapost-bridge-logger

为我们的 SilverStripe Kapost Bridge 模块提供的包装器,记录所有发送到 kapost 服务的请求

0.3.1 2017-05-03 14:12 UTC

This package is auto-updated.

Last update: 2024-08-29 01:54:08 UTC


README

Build Status

为我们的 SilverStripe Kapost Bridge 模块提供的包装器,记录所有发送到 kapost 服务的请求。

维护者联系方式

要求

安装

Composer(推荐)

composer require webbuilders-group/silverstripe-kapost-bridge-logger

如果您愿意,也可以手动安装

配置选项

KapostBridgeLog:
    log_expire_days: 30 #Number of days that logs are kept

KapostBridgeLogViewer:
    log_page_length: 20 #Number of logs to include per page

LoggedKapostService:
    ignore_not_found: true #Whether to log 404 errors for example when the request is not post or user agent checking is enabled and does not match

扩展点

有一个扩展点允许您挂钩到目标对象的查找过程。这个扩展点称为 updateObjectLookup,位于 KapostBridgeLog 类上。这个扩展点接收一个参数,即 Kapost 引用 ID。使用此扩展点的扩展应返回一个对象(或 null),如果要在日志中显示链接,则必须定义 CMSEditLink 方法。CMSEditLink 方法必须返回对象的编辑页面 URL。第一个返回对象的扩展被使用。

文档

有关模块的更多文档可以在这里找到。