PluginProbe
Age Gate / 3.7.3
Age Gate v3.7.3
3.7.3 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 All 113 releases
age-gate / src / Admin / Settings / Tools.php

Tools.php in Age Gate 3.7.3, at src/Admin/Settings/Tools.php

38 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace AgeGate\Admin\Settings;
4
5 trait Tools
6 {
7 protected function getToolsFields()
8 {
9 return [
10 [
11 'title' => 'Disable Age Gate',
12 'subtitle' => '',
13 'fields' => [
14 'disable_age_gate' => [
15 'type' => 'checkbox',
16 'label' => __('Disable Age Gate', 'age-gate'),
17 'default' => false,
18 'subtext' => __('Disable all Age Gates to users', 'age-gate'),
19 ],
20 ]
21 ],
22 [
23 'title' => 'Developer options',
24 'subtitle' => '',
25 'fields' => [
26
27 'feedback' => [
28 'type' => 'checkbox',
29 'label' => __('Send feedback', 'age-gate'),
30 'default' => false,
31 'subtext' => __('Occasionally send settings information to the developers', 'age-gate'),
32 ],
33 ]
34 ],
35 ];
36 }
37 }
38