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

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

- Page: https://pluginprobe.com/plugins/gdpr-framework/trunk/code/src/Components/Support/Support.php
- Raw: https://pluginprobe.com/plugins/gdpr-framework/trunk/raw/src/Components/Support/Support.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/Support/Support.php#L10-L20`.

```php
<?php

namespace Codelight\GDPR\Components\Support;

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

class Support
{
    public function __construct()
    {
        add_filter('gdpr/admin/tabs', [$this, 'registerTab'], 40);
    }

    public function registerTab($tabs)
    {
        $tabs['support'] = new AdminTabSupport();

        return $tabs;
    }
}

```
