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

The GDPR Framework By Data443, version 2.1.0. 25 lines.

- Page: https://pluginprobe.com/plugins/gdpr-framework/2.1.0/code/src/Components/AdvancedIntegration/AdvancedIntegration.php
- Raw: https://pluginprobe.com/plugins/gdpr-framework/2.1.0/raw/src/Components/AdvancedIntegration/AdvancedIntegration.php
- Modified: 2022-03-03T17:26:16+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/2.1.0/code/src/Components/AdvancedIntegration/AdvancedIntegration.php#L10-L20`.

```php
<?php

namespace Codelight\GDPR\Components\AdvancedIntegration;

/**
 * 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;
    }
}

```
