-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.conf.php
More file actions
132 lines (98 loc) · 3.15 KB
/
module.conf.php
File metadata and controls
132 lines (98 loc) · 3.15 KB
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
<?php
$module["name"] = "client";
$module["title"] = "top_menu_client";
$module["template"] = "module.tpl.htm";
$module["startpage"] = "client/client_list.php";
$module["tab_width"] = '';
$module['order'] = '20';
$items[] = array( 'title' => "Edit Client",
'target' => 'content',
'link' => 'client/client_list.php',
'html_id' => 'client_list');
$items[] = array( 'title' => "Add Client",
'target' => 'content',
'link' => 'client/client_edit.php',
'html_id' => 'client_add');
$module["nav"][] = array( 'title' => 'Clients',
'open' => 1,
'items' => $items);
unset($items);
if($_SESSION["s"]["user"]["typ"] == 'admin'){
$items[] = array( 'title' => "Edit Reseller",
'target' => 'content',
'link' => 'client/reseller_list.php',
'html_id' => 'reseller_list');
$items[] = array( 'title' => "Add Reseller",
'target' => 'content',
'link' => 'client/reseller_edit.php',
'html_id' => 'reseller_add');
$module["nav"][] = array( 'title' => 'Resellers',
'open' => 1,
'items' => $items);
unset($items);
}
$items[] = array( 'title' => "Edit Client Circle",
'target' => 'content',
'link' => 'client/client_circle_list.php',
'html_id' => 'client_circle_list');
$items[] = array( 'title' => "Send email",
'target' => 'content',
'link' => 'client/client_message.php',
'html_id' => 'reseller_add');
$module["nav"][] = array( 'title' => 'Messaging',
'open' => 1,
'items' => $items);
unset($items);
$items[] = array( 'title' => "Limit-Templates",
'target' => 'content',
'link' => 'client/client_template_list.php',
'html_id' => 'client_template_list');
$items[] = array( 'title' => "Email-Templates",
'target' => 'content',
'link' => 'client/message_template_list.php',
'html_id' => 'message_template_list');
$module["nav"][] = array( 'title' => 'Templates',
'open' => 1,
'items' => $items);
unset($items);
$app->uses('ini_parser,getconf');
$settings = $app->getconf->get_global_config('domains');
if ($settings['use_domain_module'] == 'y') {
$items = array();
$items[] = array( 'title' => 'Domains',
'target' => 'content',
'link' => 'client/domain_list.php');
$items[] = array( 'title' => 'Add Domain',
'target' => 'content',
'link' => 'client/domain_edit.php');
$module['nav'][] = array( 'title' => 'Domains',
'open' => 1,
'items' => $items);
unset($items);
}
/*
// GDPR functions for admin only, might be extended for resellers later
if($_SESSION["s"]["user"]["typ"] == 'admin'){
$items = array();
$items[] = array( 'title' => 'Send Personal Data',
'target' => 'content',
'link' => 'client/gdpr_send.php');
$module['nav'][] = array( 'title' => 'GDPR',
'open' => 1,
'items' => $items);
unset($items);
}
*/
/*
if($_SESSION["s"]["user"]["typ"] == 'admin'){
$items[] = array( 'title' => "Interface Settings",
'target' => 'content',
'link' => 'client/reseller_admin_interface.php',
'html_id' => 'reseller_admin_interface');
$module["nav"][] = array( 'title' => 'Reseller Panel',
'open' => 1,
'items' => $items);
unset($items);
}
*/
?>