-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin_config.php
159 lines (122 loc) · 4.89 KB
/
admin_config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
/**
* EU cookies plugin for CMS e107 v2
*
* @author OxigenO2 (oxigen.rg@gmail.com)
* @copyright Copyright (C) 2017 OxigenO2
* @license GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
* @link http://oxigen.mablog.eu/
*/
require_once('../../class2.php');
if (!getperms('P'))
{
header('location:'.e_BASE.'index.php');
exit;
}
e107::lan('eu_cookies',true,true);
class eu_cookies_adminArea extends e_admin_dispatcher
{
protected $modes = array(
'main' => array(
'controller' => 'eu_cookies_ui',
'path' => null,
'ui' => 'eu_cookies_form_ui',
'uipath' => null
),
);
protected $adminMenu = array(
'main/prefs' => array('caption'=> LAN_PREFS, 'perm' => 'P'),
);
protected $adminMenuAliases = array(
'main/edit' => 'main/list'
);
protected $menuTitle = 'EU cookies';
}
class eu_cookies_ui extends e_admin_ui
{
protected $pluginTitle = 'EU cookies';
protected $pluginName = 'eu_cookies';
protected $table = '';
protected $pid = '';
protected $perPage = 10;
protected $batchDelete = true;
protected $preftabs = array(LAN_SETTINGS,LAN_PLUGIN_EUC_STYLE);
protected $listOrder = ' DESC';
protected $fields = NULL;
protected $fieldpref = array();
protected $prefs = array(
'eu_cookie_text' => array('title'=> LAN_PLUGIN_EUC_TEXT, 'tab'=>0, 'type'=>'textarea', 'data' => 'str', 'help'=> LAN_PLUGIN_EUC_HELP_TEXT),
'eu_cookie_policylink' => array('title'=> LAN_PLUGIN_EUC_POLICYLINK, 'tab'=>0, 'type'=>'text', 'data' => 'str', 'help'=> LAN_PLUGIN_EUC_HELP_POLICYLINK),
'eu_cookie_btn' => array('title'=> LAN_PLUGIN_EUC_BTN, 'tab'=>0, 'type'=>'text', 'data' => 'str', 'help'=> LAN_PLUGIN_EUC_HELP_BTN),
'eu_cookie_position' => array('title'=> LAN_PLUGIN_EUC_POSITION, 'tab'=>0, 'type'=>'dropdown', 'data' => 'str'),
'eu_cookie_theme' => array('title'=> LAN_PLUGIN_EUC_THEME, 'tab'=>1, 'type'=>'dropdown', 'data' => 'str'),
'eu_cookie_openeffect' => array('title'=> LAN_PLUGIN_EUC_OPENEFFECT, 'tab'=>1, 'type'=>'dropdown', 'data' => 'str'),
'eu_cookie_openeffectduration' => array('title'=> LAN_PLUGIN_EUC_OPENEFFECTDURATION, 'tab'=>1, 'type'=>'number', 'data' => 'str'),
'eu_cookie_openeffecteasing' => array('title'=> LAN_PLUGIN_EUC_OPENEFFECTEASING, 'tab'=>1, 'type'=>'dropdown', 'data' => 'str'),
'eu_cookie_closeeffect' => array('title'=> LAN_PLUGIN_EUC_CLOSEEFFECT, 'tab'=>1, 'type'=>'dropdown', 'data' => 'str'),
'eu_cookie_closeeffectduration' => array('title'=> LAN_PLUGIN_EUC_CLOSEEFFECTDURATION, 'tab'=>1, 'type'=>'number', 'data' => 'str'),
'eu_cookie_closeeffecteasing' => array('title'=> LAN_PLUGIN_EUC_CLOSEEFFECTEASING, 'tab'=>1, 'type'=>'dropdown', 'data' => 'str'),
);
public function init()
{
$position = array(
'top' => LAN_PLUGIN_EUC_TOP,
'bottom' => LAN_PLUGIN_EUC_BOTTOM
);
$this->prefs['eu_cookie_position']['writeParms'] = $position;
$this->prefs['eu_cookie_position']['readParms'] = $position;
$theme = array(
'dark' => LAN_PLUGIN_EUC_DARK,
'light' => LAN_PLUGIN_EUC_LIGHT
);
$this->prefs['eu_cookie_theme']['writeParms'] = $theme;
$this->prefs['eu_cookie_theme']['readParms'] = $theme;
$openeffect = array(
'fade' => LAN_PLUGIN_EUC_FADE,
'slideUp' => LAN_PLUGIN_EUC_SLIDE_UP,
'slideDown' => LAN_PLUGIN_EUC_SLIDE_DOWN,
'slideLeft' => LAN_PLUGIN_EUC_SLIDE_LEFT,
'slideRight' => LAN_PLUGIN_EUC_SLIDE_RIGHT
);
$this->prefs['eu_cookie_openeffect']['writeParms'] = $openeffect;
$this->prefs['eu_cookie_openeffect']['readParms'] = $openeffect;
$openeffecteasing = array(
'swing' => LAN_PLUGIN_EUC_SWING,
'linear' => LAN_PLUGIN_EUC_LINEAR
);
$this->prefs['eu_cookie_openeffecteasing']['writeParms'] = $openeffecteasing;
$this->prefs['eu_cookie_openeffecteasing']['readParms'] = $openeffecteasing;
$closeeffect = array(
'fade' => LAN_PLUGIN_EUC_FADE,
'slideUp' => LAN_PLUGIN_EUC_SLIDE_UP,
'slideDown' => LAN_PLUGIN_EUC_SLIDE_DOWN,
'slideLeft' => LAN_PLUGIN_EUC_SLIDE_LEFT,
'slideRight' => LAN_PLUGIN_EUC_SLIDE_RIGHT
);
$this->prefs['eu_cookie_closeeffect']['writeParms'] = $closeeffect;
$this->prefs['eu_cookie_closeeffect']['readParms'] = $closeeffect;
$closeeffecteasing = array(
'swing' => LAN_PLUGIN_EUC_SWING,
'linear' => LAN_PLUGIN_EUC_LINEAR
);
$this->prefs['eu_cookie_closeeffecteasing']['writeParms'] = $closeeffecteasing;
$this->prefs['eu_cookie_closeeffecteasing']['readParms'] = $closeeffecteasing;
}
public function beforeCreate($new_data)
{
return $new_data;
}
public function beforeUpdate($new_data, $old_data, $id)
{
return $new_data;
}
}
class eu_cookies_form_ui extends e_admin_form_ui
{
}
new eu_cookies_adminArea();
require_once(e_ADMIN."auth.php");
e107::getAdminUI()->runPage();
require_once(e_ADMIN."footer.php");
exit;
?>