heimrichhannot/contao-privacy-protocol-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

heimrichhannot/contao-privacy-protocol-bundle

最新稳定版本:2.0.0

Composer 安装命令:

composer require heimrichhannot/contao-privacy-protocol-bundle

包简介

This bundle add a privacy logging entity to contao as required by the General Data Protection Regulation.

README 文档

README

This bundle add a privacy logging entity to contao as required by the European Union's "General Data Protection Regulation" ( GDPR, in German: "Datenschutz-Grundverordnung", DSGVO).

Note

Legal disclaimer

Use this bundle at your own risk. Although we as the developer try our best to design this bundle to fulfill the legal requirements we CAN'T GUARANTEE anything in terms completeness and correctness. Also we don't offer any legal consulting. We strongly encourage you to consult a lawyer if you have any questions or concerns.

Usage

  1. Install with composer or contao manager: composer require heimrichhannot/contao-privacy-protocol-bundle
  2. Update database
  3. Find a new menu entry "Protocol" within the section "Privacy" in the contao backend menu
  4. Create a new protocol archive and configure it

Add logs from your code

use HeimrichHannot\PrivacyProtocolBundle\Protocol\PrivacyProtocolLogger;
use HeimrichHannot\PrivacyProtocolBundle\Protocol\ProtocolEntry;
use HeimrichHannot\PrivacyProtocolBundle\Protocol\ProtocolType;

class ExampleController
{
    public function __construct(
        private readonly PrivacyProtocolLogger $logger,
    ) {}
    
    public function __invoke()
    {
        // create a new protocol entry
        $entry = new ProtocolEntry(
            person: ['email' => 'someone@example.org',],
            target: ['dataContainer' => 'tl_mailing_list', 'id' => 43,],
            type: ProtocolType::FIRST_OPT_IN,
            archiveId: 2,
            packageName: 'vendor/example-bundle',
        );
        
        // add an optional description
        $entry->description = 'someone@example.org has subscribed to the mailing list with ID 43.';
        
        $this->logger->log($entry);
        
    }
}

Explanation:

  • The ProtocolEntry parameters:
    • person (array): An array containing the personal data of the person that is affected by the action, e.g. an email address, a name, etc.
    • target (array): An array containing information about the target (e.g. a mailing list, subscription list, ...) of the action, e.g. the data container, the id, etc.
    • type (ProtocolType): The type of the protocol entry, e.g. first opt-in, opt-in, opt-out, etc.
    • archiveId (int): The protocol archive id
    • packageName (string): The package name of the bundle that triggers the protocol entry

统计信息

  • 总下载量: 120
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 5
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: LGPL-3.0-or-later
  • 更新时间: 2025-02-11