forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adm_permissions_report.php
198 lines (167 loc) · 8.09 KB
/
adm_permissions_report.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Permissions Report
* @package MantisBT
* @author Marcello Scata' <marcelloscata at users.sourceforge.net> ITALY
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses access_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses helper_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses string_api.php
*/
require_once( 'core.php' );
require_api( 'access_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'helper_api.php' );
require_api( 'html_api.php' );
require_api( 'lang_api.php' );
require_api( 'string_api.php' );
access_ensure_project_level( config_get( 'manage_configuration_threshold' ) );
layout_page_header( lang_get( 'permissions_summary_report' ) );
layout_page_begin( 'manage_overview_page.php' );
print_manage_menu( PAGE_CONFIG_DEFAULT );
print_manage_config_menu( 'adm_permissions_report.php' );
/**
* return html for start of administration report section
* @param string $p_section_name Section name.
* @return string
*/
function get_section_begin_apr( $p_section_name ) {
$t_access_levels = MantisEnum::getValues( config_get( 'access_levels_enum_string' ) );
$t_output = '<div class="col-md-12 col-xs-12">';
$t_output .= '<div class="space-10"></div>';
$t_output .= '<div class="widget-box widget-color-blue2">';
$t_output .= ' <div class="widget-header widget-header-small">';
$t_output .= ' <h4 class="widget-title lighter uppercase">';
$t_output .= ' ' . icon_get( 'fa-lock', 'ace-icon' );
$t_output .= $p_section_name;
$t_output .= ' </h4>';
$t_output .= ' </div>';
$t_output .= ' <div class="widget-body">';
$t_output .= ' <div class="widget-main no-padding">';
$t_output .= ' <div class="table-responsive">';
$t_output .= ' <table class="table table-striped table-hover table-bordered table-condensed">';
$t_output .= '<thead>';
$t_output .= '<tr>';
$t_output .= '<th class="bold">' . lang_get( 'perm_rpt_capability' ) . '</th>';
foreach( $t_access_levels as $t_access_level ) {
$t_output .= '<th class="bold" style="text-align:center"> ' . MantisEnum::getLabel( lang_get( 'access_levels_enum_string' ), $t_access_level ) . ' </th>';
}
$t_output .= '</tr>' . "\n";
$t_output .= '</thead>';
$t_output .= '<tbody>';
return $t_output;
}
/**
* Return html for a row
* @param string $p_caption Caption.
* @param integer $p_access_level Access level.
* @return string
*/
function get_capability_row( $p_caption, $p_access_level ) {
$t_access_levels = MantisEnum::getValues( config_get( 'access_levels_enum_string' ) );
$t_output = '<tr><td>' . string_display_line( $p_caption ) . '</td>';
foreach( $t_access_levels as $t_access_level ) {
if( $t_access_level >= (int)$p_access_level ) {
$t_value = icon_get( 'fa-check', 'fa-lg blue' );
} else {
$t_value = ' ';
}
$t_output .= '<td class="center">' . $t_value . '</td>';
}
$t_output .= '</tr>' . "\n";
return $t_output;
}
/**
* return html for end of administration report section
* @return string
*/
function get_section_end() {
$t_output = '</tbody></table></div> ' . "\n";
$t_output .= '</div></div></div></div> ' . "\n";
$t_output .= '<div class="space-10"></div>';
return $t_output;
}
# News
if( config_get( 'news_enabled' ) == ON ) {
echo get_section_begin_apr( lang_get( 'news' ) );
echo get_capability_row( lang_get( 'view_private_news' ), config_get( 'private_news_threshold' ) );
echo get_capability_row( lang_get( 'manage_news' ), config_get( 'manage_news_threshold' ) );
echo get_section_end();
}
# Attachments
if( config_get( 'allow_file_upload' ) == ON ) {
echo get_section_begin_apr( lang_get( 'attachments' ) );
echo get_capability_row( lang_get( 'view_list_of_attachments' ), config_get( 'view_attachments_threshold' ) );
echo get_capability_row( lang_get( 'download_attachments' ), config_get( 'download_attachments_threshold' ) );
echo get_capability_row( lang_get( 'delete_attachments' ), config_get( 'delete_attachments_threshold' ) );
echo get_capability_row( lang_get( 'upload_issue_attachments' ), config_get( 'upload_bug_file_threshold' ) );
echo get_section_end();
}
# Filters
echo get_section_begin_apr( lang_get( 'filters' ) );
echo get_capability_row( lang_get( 'save_filters' ), config_get( 'stored_query_create_threshold' ) );
echo get_capability_row( lang_get( 'save_filters_as_shared' ), config_get( 'stored_query_create_shared_threshold' ) );
echo get_capability_row( lang_get( 'use_saved_filters' ), config_get( 'stored_query_use_threshold' ) );
echo get_section_end();
# Projects
echo get_section_begin_apr( lang_get( 'projects_link' ) );
echo get_capability_row( lang_get( 'create_project' ), config_get( 'create_project_threshold' ) );
echo get_capability_row( lang_get( 'delete_project' ), config_get( 'delete_project_threshold' ) );
echo get_capability_row( lang_get( 'manage_projects_link' ), config_get( 'manage_project_threshold' ) );
echo get_capability_row( lang_get( 'manage_user_access_to_project' ), config_get( 'project_user_threshold' ) );
echo get_capability_row( lang_get( 'automatically_included_in_private_projects' ), config_get( 'private_project_threshold' ) );
echo get_section_end();
# Project Documents
if( config_get( 'enable_project_documentation' ) == ON ) {
echo get_section_begin_apr( lang_get( 'project_documents' ) );
echo get_capability_row( lang_get( 'view_project_documents' ), config_get( 'view_proj_doc_threshold' ) );
echo get_capability_row( lang_get( 'upload_project_documents' ), config_get( 'upload_project_file_threshold' ) );
echo get_section_end();
}
# Custom Fields
echo get_section_begin_apr( lang_get( 'custom_fields_setup' ) );
echo get_capability_row( lang_get( 'manage_custom_field_link' ), config_get( 'manage_custom_fields_threshold' ) );
echo get_capability_row( lang_get( 'link_custom_fields_to_projects' ), config_get( 'custom_field_link_threshold' ) );
echo get_section_end();
# Sponsorships
if( config_get( 'enable_sponsorship' ) == ON ) {
echo get_section_begin_apr( lang_get( 'sponsorships' ) );
echo get_capability_row( lang_get( 'view_sponsorship_details' ), config_get( 'view_sponsorship_details_threshold' ) );
echo get_capability_row( lang_get( 'view_sponsorship_total' ), config_get( 'view_sponsorship_total_threshold' ) );
echo get_capability_row( lang_get( 'sponsor_issue' ), config_get( 'sponsor_threshold' ) );
echo get_capability_row( lang_get( 'assign_sponsored_issue' ), config_get( 'assign_sponsored_bugs_threshold' ) );
echo get_capability_row( lang_get( 'handle_sponsored_issue' ), config_get( 'handle_sponsored_bugs_threshold' ) );
echo get_section_end();
}
# Others
echo get_section_begin_apr( lang_get( 'others' ) );
echo get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'summary_link' ), config_get( 'view_summary_threshold' ) );
echo get_capability_row( lang_get( 'see_email_addresses_of_other_users' ), config_get( 'show_user_email_threshold' ) );
echo get_capability_row( lang_get( 'send_reminders' ), config_get( 'bug_reminder_threshold' ) );
echo get_capability_row( lang_get( 'add_profiles' ), config_get( 'add_profile_threshold' ) );
echo get_capability_row( lang_get( 'manage_users_link' ), config_get( 'manage_user_threshold' ) );
echo get_capability_row( lang_get( 'notify_of_new_user_created' ), config_get( 'notify_new_user_created_threshold_min' ) );
echo get_section_end();
layout_page_end();