PluginProbe
The GDPR Framework By Data443 / trunk
The GDPR Framework By Data443 vtrunk
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 / Support / AdminTabSupport.php

AdminTabSupport.php in The GDPR Framework By Data443 trunk, at src/Components/Support/AdminTabSupport.php

35 lines 690 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\Support;
4
5 use Codelight\GDPR\Admin\AdminTab;
6
7 class AdminTabSupport extends AdminTab
8 {
9 protected $slug = 'support';
10
11 public function __construct()
12 {
13 $this->title = _x('Support', '(Admin)', 'gdpr-framework');
14 }
15
16 public function init()
17 {
18 $this->registerSettingSection(
19 'gdpr-section-support',
20 _x('Support', '(Admin)', 'gdpr-framework'),
21 [$this, 'renderTab']
22 );
23 }
24
25 public function renderTab()
26 {
27 echo gdpr('view')->render('admin/support/contents');
28 }
29
30 public function renderSubmitButton()
31 {
32 // Intentionally left blank
33 }
34 }
35