[go: up one dir, main page]

Menu

[r1]: / conf / acl.php  Maximize  Restore  History

Download this file

95 lines (77 with data), 2.7 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
<?php
global $ac_list;
/**
* see userlevel ngremacs_init.php:initUserLevels
*
* '000', 'Gast (nur Lesen)'
* '111', 'Obmann (Lesen / Schreiben)'
* '222', 'Mitglied (Lesen / Schreiben)'
* '333', 'Buero (Schreiben / Lesen)'
* '444', 'Ziel (Lesen / Schreiben)'
* '555', 'Kasse (Lesen / Schreiben)'
* '777', 'Leitung (Lesen / Schreiben)'
* '888', 'Admin (Lesen / Schreiben)',
* '999', 'Webmaster'
*/
$ac_list['maintUserProf'] = 1;
$ac_list['csvExport'] = 2;
$ac_list['getRemacsMaintPage'] = 9;
$ac_list['getImportRegattaMeldungDialog'] = 9;
$ac_list['importRegatta'] = 8;
$ac_list['newRegatta'] = 8;
$ac_list['editRegatta'] = 8;
$ac_list['viewRegattaStatistic'] = 1;
$ac_list['viewRegattaCashStatistic'] = 5;
$ac_list['newRegattaCharges'] = 8;
$ac_list['editRegattaCharges'] = 8;
$ac_list['deleteRegattaCharges'] = 8;
$ac_list['newRegattaChargingRules'] = 9;
$ac_list['editRegattaChargingRules'] = 9;
$ac_list['deleteRegattaChargingRules'] = 9;
$ac_list['importSportler'] = 9;
$ac_list['newSportler'] = 2;
$ac_list['editSportler'] = 2;
$ac_list['deleteSportler'] = 9;
$ac_list['newSportlerId'] = 9;
$ac_list['importVereine'] = 9;
$ac_list['newVerein'] = 2;
$ac_list['editVerein'] = 2;
$ac_list['deleteVerein'] = 9;
$ac_list['newReferee'] = 3;
$ac_list['editReferee'] = 3;
$ac_list['deleteReferee'] = 9;
$ac_list['newRennen'] = 9;
$ac_list['editRennen'] = 0;
$ac_list['deleteRennen'] = 9;
$ac_list['moveRennen'] = 9;
$ac_list['importTeams'] = 9; //Import DRV Meldung
$ac_list['newTeam'] = 1;
$ac_list['editTeam'] = 1;
$ac_list['newTeamForAll'] = 3; //Level for OrgBuero
$ac_list['newTeamVereinForAll'] = 9; //must be higher level then newTeamForAll
$ac_list['editTeamForAll'] = 3; //Level for OrgBuero
$ac_list['getDeleteTeamOfRennenDialog'] = 1; //Abmeldung
$ac_list['deleteTeam'] = 1; //must be higher level then getDeleteTeamOfRennenDialog
$ac_list['deleteTeamFromDB'] = 9; //must be higher level then deleteTeam
$ac_list['editAthlet'] = 2;
$ac_list['editVereinRegatta'] = 2;
$ac_list['raceDrawing'] = 3;
$ac_list['raceStartFinish'] = 3;
$ac_list['printMeldeergebnis'] = 3;
$ac_list['printDialog'] = 3;
// ---------------------
// User Guide
// ---------------------
$ac_list['viewGeneralUG'] = 0;
$ac_list['viewGeneralGridsUG'] = 1;
$ac_list['viewGeneralFilterUG'] = 1;
$ac_list['viewGeneralDialogsUG'] = 9;
$ac_list['viewControlBarUG'] = 2;
$ac_list['viewConfigurationUG'] = 9;
$ac_list['viewXinhaUG']=9;
$ac_list['viewApiUG'] = 9;
$ac_list['viewDevPortableUG'] = 9;
$ac_list['viewDevXamppUG'] = 9;
$ac_list['viewDevEclipseUG'] = 9;
$ac_list['viewDevTestUG'] = 9;
?>