automattic/jetpack-terms-of-service

此包已被弃用且不再维护。作者建议使用 automattic/jetpack-connection 包。

用于管理服务条款状态的全部内容。这是一个已弃用的包,请使用 automattic/jetpack-connection。

安装量: 503,887

依赖者: 0

建议者: 0

安全: 0

星标: 1

关注者: 3

分支: 2

类型:jetpack-library


README

一个服务条款包,告诉我们主用户已同意本站的服务条款。

使用方法

同意服务条款。

use Automattic\Jetpack\Terms_Of_Service;

$terms_of_service = new Terms_Of_Service();
$terms_of_service->agree();

拒绝服务条款。

use Automattic\Jetpack\Terms_Of_Service;

$terms_of_service = new Terms_Of_Service();
$terms_of_service->revoke();

网站是否已同意服务条款?

use Automattic\Jetpack\Terms_Of_Service;

$terms_of_service = new Terms_Of_Service();
$has_agreed = $terms_of_service->has_agreed();