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

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

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

```php
<?php

namespace Codelight\GDPR\Components\PrivacyPolicy;

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

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

        add_shortcode('gdpr_privacy', [$this, 'doShortcode']);
        add_shortcode('gdpr_privacy_policy_url', [$this, 'renderUrlShortcode']);
        add_shortcode('gdpr_privacy_policy_link', [$this, 'renderLinkShortcode']);
    }

    public function registerAdminTab($tabs)
    {

        $tabs['privacy-policy'] = new AdminTabPrivacyPolicy(new PolicyGenerator());

        return $tabs;
    }

    public function doShortcode($attributes)
    {
        global $gdpr;
        $attributes = shortcode_atts([
            'item' => null,
        ], $attributes);

        switch ($attributes['item']) {
            case 'company_name':
                return esc_html($gdpr->Options->get('company_name'));
            case 'company_email':
                return esc_html($gdpr->Options->get('contact_email'));
            case 'company_email_link':
                $email = antispambot($gdpr->Options->get('contact_email'));
                return "<a href='mailto:{$email}'>{$email}</a>";
            case 'dpo_name':
                return esc_html($gdpr->Options->get('dpo_name'));
            case 'dpo_email':
                return esc_html($gdpr->Options->get('dpo_email'));
            case 'dpo_email_link':
                $email = antispambot($gdpr->Options->get('dpo_email'));
                return "<a href='mailto:{$email}'>{$email}</a>";
            case 'rep_name':
                return esc_html($gdpr->Options->get('representative_contact_name'));
            case 'rep_email':
                return esc_html($gdpr->Options->get('representative_contact_email'));
            case 'rep_email_link':
                $email = antispambot($gdpr->Options->get('representative_contact_email'));
                return "<a href='mailto:{$email}'>{$email}</a>";
            case 'authority_website':
                return esc_html($gdpr->Options->get('dpa_website'));
            case 'authority_email':
                return esc_html($gdpr->Options->get('dpa_email'));
            case 'authority_email_link':
                $email = antispambot($gdpr->Options->get('dpa_email'));
                return "<a href='mailto:{$email}'>{$email}</a>";
            case 'authority_phone':
                return esc_html($gdpr->Options->get('dpa_phone'));
            case null:
                return '';
        }

        return '';
    }

    public function renderUrlShortcode()
    {
        global $gdpr;
        return gdpr('helpers')->getPrivacyPolicyPageUrl();
    }

    public function renderLinkShortcode($attributes)
    {
        global $gdpr;
        $attributes = shortcode_atts([
            'title' => __('Privacy Policy', 'gdpr-framework'),
        ], $attributes);

        $url = gdpr('helpers')->getPrivacyPolicyPageUrl();

        return
            "<a href='{$url}'>" .
            esc_html($attributes['title']) .
            "</a>";
    }
}

```
