# gdpr-framework/trunk/src/Components/AdvancedIntegration/AdvancedIntegration.php

The GDPR Framework By Data443, version trunk. 27 lines.

- Page: https://pluginprobe.com/plugins/gdpr-framework/trunk/code/src/Components/AdvancedIntegration/AdvancedIntegration.php
- Raw: https://pluginprobe.com/plugins/gdpr-framework/trunk/raw/src/Components/AdvancedIntegration/AdvancedIntegration.php
- Modified: 2026-05-26T15:35:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gdpr-framework/trunk/code/src/Components/AdvancedIntegration/AdvancedIntegration.php#L10-L20`.

```php
<?php

namespace Codelight\GDPR\Components\AdvancedIntegration;

if ( ! defined( 'ABSPATH' ) ) exit;

/**
 * Handles putting together and rendering the privacy policy page
 *
 * Class AdvancedIntegration
 *
 * @package Codelight\GDPR\Components\AdvancedIntegration
 */
class AdvancedIntegration
{
    public function __construct()
    {
        add_filter('gdpr/admin/tabs', [$this, 'registerAdminTab'], 70);
    }

    public function registerAdminTab($tabs)
    {    
        $tabs['advanced-integration'] = new AdminTabAdvancedIntegration();
        return $tabs;
    }
}

```
