-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.php
executable file
·106 lines (96 loc) · 2.48 KB
/
module.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
<?php
class wfm_admin extends wf_module {
public function __construct($wf) {
$this->wf = $wf;
}
public function get_name() { return("admin"); }
public function get_description() { return("OWF Native Administration module"); }
public function get_banner() { return("admin/1.4.0"); }
public function get_version() { return("1.4.0"); }
public function get_authors() { return(array("Michael VERGOZ")); }
public function get_depends() {
return(array("core", "ppjQuery"));
}
public function session_permissions() {
return(array(
"admin" => $this->ts("Allow access to administration"),
"admin:system" => $this->ts("Allow access to system view"),
"admin:system:preferences" => $this->ts("Allow access to system preferences")
));
}
public function get_actions() {
return(array(
"/" => array(
WF_ROUTE_REDIRECT,
"/admin",
"",
WF_ROUTE_HIDE,
array("session:ranon"),
),
"/admin" => array(
WF_ROUTE_ACTION,
"admin",
"show",
$this->ts("Administration"),
WF_ROUTE_SHOW,
array("session:admin"),
),
"/admin/options" => array(
WF_ROUTE_ACTION,
"admin/options",
"show",
$this->ts("Options"),
WF_ROUTE_HIDE,
array("session:simple"),
),
"/admin/options/edit" => array(
WF_ROUTE_ACTION,
"admin/options",
"edit",
"",
WF_ROUTE_HIDE,
array("session:simple"),
),
/* system management */
"/admin/system" => array(
WF_ROUTE_ACTION,
"admin/system",
"show",
$this->ts("Préférences systèmes"),
WF_ROUTE_SHOW,
array("admin:system"),
// "/data/admin/img/menu_system.png"
),
"/admin/system/information" => array(
WF_ROUTE_ACTION,
"admin/system/information",
"show",
$this->ts("Informations système"),
WF_ROUTE_SHOW,
array("admin:system")
),
"/admin/system/variables" => array(
WF_ROUTE_ACTION,
"admin/system/preferences",
"show",
$this->ts("Préférences des variables"),
WF_ROUTE_SHOW,
array("admin:system:preferences")
),
"/admin/system/variables/edit" => array(
WF_ROUTE_ACTION,
"admin/system/preferences",
"edit",
"",
WF_ROUTE_HIDE,
array("admin:system:preferences")
),
));
}
public function get_index() {
$tpl = new core_tpl($this->wf);
$tpl->set('nb_users', count($this->wf->core_session()->user_list()));
$tpl->set('nb_pref_groups', count($this->wf->core_pref()->group_find()));
return($tpl->fetch('admin/system/index'));
}
}