PluginProbe
The GDPR Framework By Data443 / 2.1.0
The GDPR Framework By Data443 v2.1.0
2.5.0 2.4.0 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.3 1.0.33 1.0.34 1.0.35 1.0.36 1.0.37 1.0.39 1.0.4 1.0.40 1.0.41 1.0.42 1.0.43 1.0.44 1.0.45 1.0.46 All 41 releases
gdpr-framework / src / Components / AdvancedIntegration / AdminTabAdvancedIntegration.php

AdminTabAdvancedIntegration.php in The GDPR Framework By Data443 2.1.0, at src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php

41 lines 1003 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Codelight\GDPR\Components\AdvancedIntegration;
4
5 use Codelight\GDPR\Admin\AdminTab;
6
7 class AdminTabAdvancedIntegration extends AdminTab
8 {
9 /* @var string */
10 protected $slug = 'advanced-integration';
11
12 /* @var PolicyGenerator */
13 protected $policyGenerator;
14
15 public function __construct()
16 {
17 $this->title = _x('Data Hound', '(Admin)', 'gdpr-framework');
18
19 add_action('gdpr/admin/action/AdvancedIntegration/generate', [$this, 'generateAdvancedIntegration']);
20 }
21
22 public function init()
23 {
24 $this->registerSettingSection(
25 'gdpr_section_privacy_policy',
26 _x('Data Hound', '(Admin)', 'gdpr-framework'),
27 [$this, 'renderHeader']
28 );
29 }
30
31 public function renderHeader()
32 {
33 echo gdpr('view')->render('admin/advanced-integration/header');
34 }
35
36 public function renderSubmitButton()
37 {
38 // leave an empty method to prevent the placement of the default save button
39 }
40 }
41