-
Notifications
You must be signed in to change notification settings - Fork 76
/
help_uac.php
26 lines (23 loc) · 930 Bytes
/
help_uac.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
<?php
require_once 'includes/init.php';
require_once 'includes/help_list.php';
$descStr =
translate ( 'Allows for fine control of user access and permissions. Users can also grant default and per individual permission if authorized by the administrator.' );
print_header ( [], '', '', true, false, true );
echo $helpListStr . '
<div class="helpbody">
<h2>' . translate ( 'Help' ) . ': '
. translate ( 'User Access Control' ) . '</h2>
<p>' . $descStr . '</p>';
$tmp_arr = [
translate ( 'Can Email' ) =>
translate ( 'If disabled, this user cannot send you emails.' ),
translate ( 'Can Invite' ) =>
translate ( 'If disabled, this user cannot see you in the participants list.' ),
translate ( 'Can See Time Only' ) =>
translate ( 'If enabled, this user cannot view the details of any of your entries.' )];
list_help ( $tmp_arr );
echo '
</div>
' . print_trailer ( false, true, true );
?>