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

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

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

```php
<?php

namespace Codelight\GDPR\Components\PrivacySafe;

class PrivacySafe {

	public function __construct() {
		 add_filter( 'gdpr/admin/tabs', array( $this, 'registerAdminTab' ), 90 );
	}

	public function registerAdminTab( $tabs ) {
		 $tabs['privacy-safe'] = new AdminTabPrivacySafe();
		return $tabs;
	}
}


```
