# gdpr-framework/trunk/src/Admin/AdminPrivacySafe.php

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

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

```php
<?php

namespace Codelight\GDPR\Admin;

use Codelight\GDPR\Admin\AdminNotice;

class AdminPrivacySafe extends AdminNotice
{
    public function render()
    {
        if (!$this->template) {
            return;
        }

        echo gdpr('view')->render('admin/notices/header-privacy-safe');
        echo gdpr('view')->render($this->template, $this->data);
        echo gdpr('view')->render('admin/notices/footer-step');
    }
}
```
