@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | //Add the JS needed to use the jqgrid |
14 | 14 | $htmlHeadXtra[] = api_get_jqgrid_js(); |
15 | 15 | |
16 | -$interbreadcrumb[] = array("url" => "index.php","name" => get_lang('Skills')); |
|
16 | +$interbreadcrumb[] = array("url" => "index.php", "name" => get_lang('Skills')); |
|
17 | 17 | |
18 | 18 | //jqgrid will use this URL to do the selects |
19 | 19 | $url = api_get_path(WEB_AJAX_PATH).'model.ajax.php?a=get_user_skill_ranking'; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | get_lang('Rank') |
29 | 29 | ); |
30 | 30 | |
31 | -$column_model = array( |
|
31 | +$column_model = array( |
|
32 | 32 | array( |
33 | 33 | 'name' => 'photo', |
34 | 34 | 'index' => 'photo', |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | require_once '../inc/global.inc.php'; |
11 | 11 | |
12 | 12 | api_block_anonymous_users(); |
13 | -if (api_get_setting('allow_social_tool') !='true') { |
|
13 | +if (api_get_setting('allow_social_tool') != 'true') { |
|
14 | 14 | api_not_allowed(); |
15 | 15 | } |
16 | 16 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | if ($_POST['action'] == 'edit_message_group') { |
67 | - $edit_message_id = intval($_POST['message_id']); |
|
67 | + $edit_message_id = intval($_POST['message_id']); |
|
68 | 68 | $res = MessageManager::send_message( |
69 | 69 | 0, |
70 | 70 | $title, |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | // display error messages |
98 | 98 | if (!$res) { |
99 | - $social_right_content .= Display::return_message(get_lang('Error'),'error'); |
|
99 | + $social_right_content .= Display::return_message(get_lang('Error'), 'error'); |
|
100 | 100 | } |
101 | 101 | $topic_id = isset($_GET['topic_id']) ? intval($_GET['topic_id']) : null; |
102 | 102 | if ($_POST['action'] == 'add_message_group') { |
@@ -194,9 +194,9 @@ discard block |
||
194 | 194 | </script>'; |
195 | 195 | |
196 | 196 | $this_section = SECTION_SOCIAL; |
197 | -$interbreadcrumb[] = array('url' => 'groups.php', 'name' => get_lang('Groups')); |
|
197 | +$interbreadcrumb[] = array('url' => 'groups.php', 'name' => get_lang('Groups')); |
|
198 | 198 | $interbreadcrumb[] = array('url' => 'group_view.php?id='.$group_id, 'name' => Security::remove_XSS($group_info['name'])); |
199 | -$interbreadcrumb[] = array('url' => '#', 'name' => get_lang('Discussions')); |
|
199 | +$interbreadcrumb[] = array('url' => '#', 'name' => get_lang('Discussions')); |
|
200 | 200 | |
201 | 201 | $social_left_content = SocialManager::show_social_menu('member_list', $group_id); |
202 | 202 | $show_message = null; |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $group_id |
118 | 118 | ); |
119 | 119 | $social_menu_block = SocialManager::show_social_menu('member_list', $group_id); |
120 | -$social_right_content = '<h2>' . $group_info['name'] . '</h2>'; |
|
120 | +$social_right_content = '<h2>'.$group_info['name'].'</h2>'; |
|
121 | 121 | |
122 | 122 | foreach ($users as $user) { |
123 | 123 | switch ($user['relation_type']) { |
@@ -136,24 +136,24 @@ discard block |
||
136 | 136 | ) |
137 | 137 | ) |
138 | 138 | ) { |
139 | - $user['link'] = '<a href="group_members.php?id=' . $group_id . '&u=' . $user['id'] . '&action=delete">' . |
|
139 | + $user['link'] = '<a href="group_members.php?id='.$group_id.'&u='.$user['id'].'&action=delete">'. |
|
140 | 140 | Display::return_icon( |
141 | 141 | 'delete.png', |
142 | 142 | get_lang('DeleteFromGroup') |
143 | - ) . '</a>' . |
|
144 | - '<a href="group_members.php?id=' . $group_id . '&u=' . $user['id'] . '&action=set_moderator">' . |
|
143 | + ).'</a>'. |
|
144 | + '<a href="group_members.php?id='.$group_id.'&u='.$user['id'].'&action=set_moderator">'. |
|
145 | 145 | Display::return_icon( |
146 | 146 | 'social_moderator_add.png', |
147 | 147 | get_lang('AddModerator') |
148 | - ) . '</a>'; |
|
148 | + ).'</a>'; |
|
149 | 149 | } |
150 | 150 | break; |
151 | 151 | case GROUP_USER_PERMISSION_PENDING_INVITATION: |
152 | - $user['link'] = '<a href="group_members.php?id=' . $group_id . '&u=' . $user['id'] . '&action=add">' . |
|
152 | + $user['link'] = '<a href="group_members.php?id='.$group_id.'&u='.$user['id'].'&action=add">'. |
|
153 | 153 | Display::return_icon( |
154 | 154 | 'pending_invitation.png', |
155 | 155 | get_lang('PendingInvitation') |
156 | - ) . '</a>'; |
|
156 | + ).'</a>'; |
|
157 | 157 | break; |
158 | 158 | case GROUP_USER_PERMISSION_MODERATOR: |
159 | 159 | $user['link'] = Display::return_icon( |
@@ -162,17 +162,17 @@ discard block |
||
162 | 162 | ); |
163 | 163 | //only group admin can manage moderators |
164 | 164 | if ($user_role == GROUP_USER_PERMISSION_ADMIN) { |
165 | - $user['link'] .= '<a href="group_members.php?id=' . $group_id . '&u=' . $user['id'] . '&action=delete_moderator">'. |
|
165 | + $user['link'] .= '<a href="group_members.php?id='.$group_id.'&u='.$user['id'].'&action=delete_moderator">'. |
|
166 | 166 | Display::return_icon( |
167 | 167 | 'social_moderator_delete.png', |
168 | 168 | get_lang('DeleteModerator') |
169 | - ) . '</a>'; |
|
169 | + ).'</a>'; |
|
170 | 170 | } |
171 | 171 | break; |
172 | 172 | } |
173 | 173 | |
174 | 174 | $userPicture = UserManager::getUserPicture($user['id']); |
175 | - $user['image'] = '<img src="' . $userPicture . '" width="50px" height="50px" />'; |
|
175 | + $user['image'] = '<img src="'.$userPicture.'" width="50px" height="50px" />'; |
|
176 | 176 | $new_member_list[] = $user; |
177 | 177 | } |
178 | 178 | if (count($new_member_list) > 0) { |
@@ -11,13 +11,13 @@ discard block |
||
11 | 11 | require_once '../inc/global.inc.php'; |
12 | 12 | |
13 | 13 | api_block_anonymous_users(); |
14 | -if (api_get_setting('allow_social_tool') !='true') { |
|
14 | +if (api_get_setting('allow_social_tool') != 'true') { |
|
15 | 15 | api_not_allowed(); |
16 | 16 | } |
17 | 17 | |
18 | 18 | $this_section = SECTION_SOCIAL; |
19 | 19 | |
20 | -$group_id= intval($_GET['id']); |
|
20 | +$group_id = intval($_GET['id']); |
|
21 | 21 | $usergroup = new UserGroup(); |
22 | 22 | |
23 | 23 | //todo @this validation could be in a function in group_portal_manager |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | } |
36 | 36 | } |
37 | 37 | |
38 | -$interbreadcrumb[]= array ('url' =>'groups.php','name' => get_lang('Groups')); |
|
38 | +$interbreadcrumb[] = array('url' =>'groups.php', 'name' => get_lang('Groups')); |
|
39 | 39 | $interbreadcrumb[] = array('url' => 'group_view.php?id='.$group_id, 'name' => $group_info['name']); |
40 | -$interbreadcrumb[]= array ('url' =>'#','name' => get_lang('WaitingList')); |
|
40 | +$interbreadcrumb[] = array('url' =>'#', 'name' => get_lang('WaitingList')); |
|
41 | 41 | |
42 | 42 | // Group information |
43 | 43 | $admins = $usergroup->get_users_by_group( |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | ); |
50 | 50 | $show_message = ''; |
51 | 51 | |
52 | -if (isset($_GET['action']) && $_GET['action']=='accept') { |
|
52 | +if (isset($_GET['action']) && $_GET['action'] == 'accept') { |
|
53 | 53 | // we add a user only if is a open group |
54 | 54 | $user_join = intval($_GET['u']); |
55 | 55 | //if i'm a moderator |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | } |
60 | 60 | } |
61 | 61 | |
62 | -if (isset($_GET['action']) && $_GET['action']=='deny') { |
|
62 | +if (isset($_GET['action']) && $_GET['action'] == 'deny') { |
|
63 | 63 | // we add a user only if is a open group |
64 | 64 | $user_join = intval($_GET['u']); |
65 | 65 | //if i'm a moderator |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
72 | -if (isset($_GET['action']) && $_GET['action']=='set_moderator') { |
|
72 | +if (isset($_GET['action']) && $_GET['action'] == 'set_moderator') { |
|
73 | 73 | // we add a user only if is a open group |
74 | - $user_moderator= intval($_GET['u']); |
|
74 | + $user_moderator = intval($_GET['u']); |
|
75 | 75 | //if i'm the admin |
76 | 76 | if ($usergroup->is_group_admin($group_id)) { |
77 | 77 | $usergroup->update_user_role($user_moderator, $group_id, GROUP_USER_PERMISSION_MODERATOR); |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $social_left_content = SocialManager::show_social_menu('waiting_list', $group_id); |
92 | 92 | |
93 | 93 | // Display form |
94 | -foreach($users as $user) { |
|
94 | +foreach ($users as $user) { |
|
95 | 95 | switch ($user['relation_type']) { |
96 | 96 | case GROUP_USER_PERMISSION_PENDING_INVITATION_SENT_BY_USER: |
97 | 97 | $user['link'] = '<a href="group_waiting_list.php?id='.$group_id.'&u='.$user['user_id'].'&action=accept">'. |
@@ -128,7 +128,7 @@ |
||
128 | 128 | if (isset($friends[$j])) { |
129 | 129 | $friend = $friends[$j]; |
130 | 130 | $user_name = api_xml_http_response_encode($friend['firstName'].' '.$friend['lastName']); |
131 | - $userPicture = UserManager::getUserPicture($friend['friend_user_id']); |
|
131 | + $userPicture = UserManager::getUserPicture($friend['friend_user_id']); |
|
132 | 132 | |
133 | 133 | $friend_html .= ' |
134 | 134 | <div class="col-md-3"> |
@@ -132,15 +132,15 @@ |
||
132 | 132 | |
133 | 133 | $friend_html .= ' |
134 | 134 | <div class="col-md-3"> |
135 | - <div class="thumbnail text-center" id="div_' . $friends[$j]['friend_user_id'] . '"> |
|
136 | - <img src="' . $userPicture . '" class="img-responsive" id="imgfriend_' . $friend['friend_user_id'] . '" title="'.$user_name.'"> |
|
135 | + <div class="thumbnail text-center" id="div_' . $friends[$j]['friend_user_id'].'"> |
|
136 | + <img src="' . $userPicture.'" class="img-responsive" id="imgfriend_'.$friend['friend_user_id'].'" title="'.$user_name.'"> |
|
137 | 137 | <div class="caption"> |
138 | 138 | <h3> |
139 | - <a href="profile.php?u=' . $friend['friend_user_id'] . '">' . $user_name . '</a> |
|
139 | + <a href="profile.php?u=' . $friend['friend_user_id'].'">'.$user_name.'</a> |
|
140 | 140 | </h3> |
141 | 141 | <p> |
142 | - <button class="btn btn-danger" onclick="delete_friend(this)" id=img_' . $friend['friend_user_id'] . '> |
|
143 | - ' . get_lang('Delete') . ' |
|
142 | + <button class="btn btn-danger" onclick="delete_friend(this)" id=img_' . $friend['friend_user_id'].'> |
|
143 | + ' . get_lang('Delete').' |
|
144 | 144 | </button> |
145 | 145 | </p> |
146 | 146 | </div> |
@@ -15,27 +15,27 @@ discard block |
||
15 | 15 | // --------------------------------------------------- |
16 | 16 | if ($_POST['StoreGroupPermissions'] and $setting_visualisation=='checkbox') |
17 | 17 | { |
18 | - $result_message=store_permissions('group', $group_id); |
|
19 | - if ($result_message) |
|
20 | - { |
|
21 | - Display::display_normal_message($result_message); |
|
22 | - } |
|
18 | + $result_message=store_permissions('group', $group_id); |
|
19 | + if ($result_message) |
|
20 | + { |
|
21 | + Display::display_normal_message($result_message); |
|
22 | + } |
|
23 | 23 | } |
24 | 24 | if (isset($_GET['action'])) |
25 | 25 | { |
26 | - if (($_GET['action']=='grant' OR $_GET['action']=='revoke') AND isset($_GET['permission']) AND isset($_GET['tool'])) |
|
27 | - { |
|
28 | - $result_message=store_one_permission('group', $_GET['action'], $group_id, $_GET['tool'], $_GET['permission']); |
|
29 | - } |
|
30 | - if (isset($_GET['role']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
31 | - { |
|
32 | - $result_message=assign_role('group', $_GET['action'], $group_id, $_GET['role'], $_GET['scope']); |
|
33 | - echo 'hier'; |
|
34 | - } |
|
26 | + if (($_GET['action']=='grant' OR $_GET['action']=='revoke') AND isset($_GET['permission']) AND isset($_GET['tool'])) |
|
27 | + { |
|
28 | + $result_message=store_one_permission('group', $_GET['action'], $group_id, $_GET['tool'], $_GET['permission']); |
|
29 | + } |
|
30 | + if (isset($_GET['role']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
31 | + { |
|
32 | + $result_message=assign_role('group', $_GET['action'], $group_id, $_GET['role'], $_GET['scope']); |
|
33 | + echo 'hier'; |
|
34 | + } |
|
35 | 35 | } |
36 | 36 | if (isset($result_message)) |
37 | 37 | { |
38 | - Display::display_normal_message($result_message); |
|
38 | + Display::display_normal_message($result_message); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | // --------------------------------------------------- |
@@ -59,11 +59,11 @@ discard block |
||
59 | 59 | $inherited_permissions=limited_or_full($inherited_permissions); |
60 | 60 | if (api_get_setting('permissions')=='limited') |
61 | 61 | { |
62 | - $header_array=$rights_limited; |
|
62 | + $header_array=$rights_limited; |
|
63 | 63 | } |
64 | 64 | if (api_get_setting('permissions')=='full') |
65 | 65 | { |
66 | - $header_array=$rights_full; |
|
66 | + $header_array=$rights_full; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | echo "<form method=\"post\" action=\"".str_replace('&', '&', $_SERVER['REQUEST_URI'])."\">"; |
@@ -72,12 +72,12 @@ discard block |
||
72 | 72 | // --------------------------------------------------- |
73 | 73 | if (api_get_setting('group_roles')=='true') |
74 | 74 | { |
75 | - // the list of the roles for the user |
|
76 | - echo '<strong>'.get_lang('GroupRoles').'</strong><br />'; |
|
77 | - $current_group_course_roles=get_roles('group',$group_id); |
|
78 | - $current_group_platform_roles=get_roles('group',$group_id, 'platform'); |
|
79 | - display_role_list($current_group_course_roles, $current_group_platform_roles); |
|
80 | - echo '<br />'; |
|
75 | + // the list of the roles for the user |
|
76 | + echo '<strong>'.get_lang('GroupRoles').'</strong><br />'; |
|
77 | + $current_group_course_roles=get_roles('group',$group_id); |
|
78 | + $current_group_platform_roles=get_roles('group',$group_id, 'platform'); |
|
79 | + display_role_list($current_group_course_roles, $current_group_platform_roles); |
|
80 | + echo '<br />'; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
@@ -92,47 +92,47 @@ discard block |
||
92 | 92 | echo "\t\t<th>".get_lang('Module')."</th>\n"; |
93 | 93 | foreach ($header_array as $header_key=>$header_value) |
94 | 94 | { |
95 | - echo "\t\t<th>".get_lang($header_value)."</th>\n"; |
|
95 | + echo "\t\t<th>".get_lang($header_value)."</th>\n"; |
|
96 | 96 | } |
97 | 97 | echo "\t</tr>\n"; |
98 | 98 | |
99 | 99 | // the main area with the checkboxes or images |
100 | 100 | foreach ($tool_rights as $tool=>$rights) // $tool_rights contains all the possible tools and their rights |
101 | 101 | { |
102 | - echo "\t<tr>\n"; |
|
103 | - echo "\t\t<td>\n"; |
|
104 | - echo get_lang($tool); |
|
105 | - echo "\t\t</td>\n"; |
|
102 | + echo "\t<tr>\n"; |
|
103 | + echo "\t\t<td>\n"; |
|
104 | + echo get_lang($tool); |
|
105 | + echo "\t\t</td>\n"; |
|
106 | 106 | |
107 | - foreach ($header_array as $key=>$value) |
|
108 | - { |
|
109 | - echo "\t\t<td align='center'>\n"; |
|
110 | - if (in_array($value,$rights)) |
|
111 | - { |
|
112 | - if ($setting_visualisation=='checkbox') |
|
113 | - { |
|
114 | - //display_checkbox_matrix($current_group_permissions, $tool, $value); |
|
115 | - display_checkbox_matrix($current_group_permissions, $tool, $value, $inherited_permissions,$course_admin); |
|
116 | - } |
|
117 | - if ($setting_visualisation=='image') |
|
118 | - { |
|
119 | - //display_image_matrix($current_group_permissions, $tool, $value); |
|
120 | - display_image_matrix($current_group_permissions, $tool, $value,$inherited_permissions, $course_admin); |
|
121 | - } |
|
122 | - } |
|
123 | - // note: in a later stage this part will be replaced by a function |
|
124 | - // so that we can easily switch between a checkbox approach or an image approach |
|
125 | - // where every click is in fact a change of status. In the checkbox approach you first have to |
|
126 | - // do the changes and then store them by clicking the submit button. |
|
127 | - echo "\t\t</td>\n"; |
|
128 | - } |
|
129 | - echo "\t</tr>\n"; |
|
107 | + foreach ($header_array as $key=>$value) |
|
108 | + { |
|
109 | + echo "\t\t<td align='center'>\n"; |
|
110 | + if (in_array($value,$rights)) |
|
111 | + { |
|
112 | + if ($setting_visualisation=='checkbox') |
|
113 | + { |
|
114 | + //display_checkbox_matrix($current_group_permissions, $tool, $value); |
|
115 | + display_checkbox_matrix($current_group_permissions, $tool, $value, $inherited_permissions,$course_admin); |
|
116 | + } |
|
117 | + if ($setting_visualisation=='image') |
|
118 | + { |
|
119 | + //display_image_matrix($current_group_permissions, $tool, $value); |
|
120 | + display_image_matrix($current_group_permissions, $tool, $value,$inherited_permissions, $course_admin); |
|
121 | + } |
|
122 | + } |
|
123 | + // note: in a later stage this part will be replaced by a function |
|
124 | + // so that we can easily switch between a checkbox approach or an image approach |
|
125 | + // where every click is in fact a change of status. In the checkbox approach you first have to |
|
126 | + // do the changes and then store them by clicking the submit button. |
|
127 | + echo "\t\t</td>\n"; |
|
128 | + } |
|
129 | + echo "\t</tr>\n"; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | echo "</table>\n"; |
133 | 133 | if ($setting_visualisation=='checkbox') |
134 | 134 | { |
135 | - echo "<input type=\"Submit\" name=\"StoreGroupPermissions\" value=\"".get_lang('StorePermissions')."\">"; |
|
135 | + echo "<input type=\"Submit\" name=\"StoreGroupPermissions\" value=\"".get_lang('StorePermissions')."\">"; |
|
136 | 136 | } |
137 | 137 | echo "</form>"; |
138 | 138 |
@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | // --------------------------------------------------- |
14 | 14 | // ACTIONS |
15 | 15 | // --------------------------------------------------- |
16 | -if ($_POST['StoreGroupPermissions'] and $setting_visualisation=='checkbox') |
|
16 | +if ($_POST['StoreGroupPermissions'] and $setting_visualisation == 'checkbox') |
|
17 | 17 | { |
18 | - $result_message=store_permissions('group', $group_id); |
|
18 | + $result_message = store_permissions('group', $group_id); |
|
19 | 19 | if ($result_message) |
20 | 20 | { |
21 | 21 | Display::display_normal_message($result_message); |
@@ -23,13 +23,13 @@ discard block |
||
23 | 23 | } |
24 | 24 | if (isset($_GET['action'])) |
25 | 25 | { |
26 | - if (($_GET['action']=='grant' OR $_GET['action']=='revoke') AND isset($_GET['permission']) AND isset($_GET['tool'])) |
|
26 | + if (($_GET['action'] == 'grant' OR $_GET['action'] == 'revoke') AND isset($_GET['permission']) AND isset($_GET['tool'])) |
|
27 | 27 | { |
28 | - $result_message=store_one_permission('group', $_GET['action'], $group_id, $_GET['tool'], $_GET['permission']); |
|
28 | + $result_message = store_one_permission('group', $_GET['action'], $group_id, $_GET['tool'], $_GET['permission']); |
|
29 | 29 | } |
30 | - if (isset($_GET['role']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
30 | + if (isset($_GET['role']) AND ($_GET['action'] == 'grant' OR $_GET['action'] == 'revoke')) |
|
31 | 31 | { |
32 | - $result_message=assign_role('group', $_GET['action'], $group_id, $_GET['role'], $_GET['scope']); |
|
32 | + $result_message = assign_role('group', $_GET['action'], $group_id, $_GET['role'], $_GET['scope']); |
|
33 | 33 | echo 'hier'; |
34 | 34 | } |
35 | 35 | } |
@@ -41,41 +41,41 @@ discard block |
||
41 | 41 | // --------------------------------------------------- |
42 | 42 | // RETRIEVING THE PERMISSIONS |
43 | 43 | // --------------------------------------------------- |
44 | -$current_group_permissions=array(); |
|
45 | -$current_group_permissions=get_permissions('group',$group_id); |
|
44 | +$current_group_permissions = array(); |
|
45 | +$current_group_permissions = get_permissions('group', $group_id); |
|
46 | 46 | // @todo current group permissions and current role permissions |
47 | 47 | |
48 | 48 | // --------------------------------------------------- |
49 | 49 | // INHERITED PERMISSIONS (group roles) |
50 | 50 | // --------------------------------------------------- |
51 | -$group_course_roles_permissions=get_roles_permissions('group',$group_id, 'course'); |
|
52 | -$group_platform_roles_permissions=get_roles_permissions('group',$group_id, 'platform'); |
|
53 | -$inherited_permissions=permission_array_merge($group_course_roles_permissions,$group_platform_roles_permissions); |
|
51 | +$group_course_roles_permissions = get_roles_permissions('group', $group_id, 'course'); |
|
52 | +$group_platform_roles_permissions = get_roles_permissions('group', $group_id, 'platform'); |
|
53 | +$inherited_permissions = permission_array_merge($group_course_roles_permissions, $group_platform_roles_permissions); |
|
54 | 54 | |
55 | 55 | // --------------------------------------------------- |
56 | 56 | // LIMITED OR FULL |
57 | 57 | // --------------------------------------------------- |
58 | -$current_group_permissions=limited_or_full($current_group_permissions); |
|
59 | -$inherited_permissions=limited_or_full($inherited_permissions); |
|
60 | -if (api_get_setting('permissions')=='limited') |
|
58 | +$current_group_permissions = limited_or_full($current_group_permissions); |
|
59 | +$inherited_permissions = limited_or_full($inherited_permissions); |
|
60 | +if (api_get_setting('permissions') == 'limited') |
|
61 | 61 | { |
62 | - $header_array=$rights_limited; |
|
62 | + $header_array = $rights_limited; |
|
63 | 63 | } |
64 | -if (api_get_setting('permissions')=='full') |
|
64 | +if (api_get_setting('permissions') == 'full') |
|
65 | 65 | { |
66 | - $header_array=$rights_full; |
|
66 | + $header_array = $rights_full; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | echo "<form method=\"post\" action=\"".str_replace('&', '&', $_SERVER['REQUEST_URI'])."\">"; |
70 | 70 | // --------------------------------------------------- |
71 | 71 | // DISPLAYING THE ROLES LIST |
72 | 72 | // --------------------------------------------------- |
73 | -if (api_get_setting('group_roles')=='true') |
|
73 | +if (api_get_setting('group_roles') == 'true') |
|
74 | 74 | { |
75 | 75 | // the list of the roles for the user |
76 | 76 | echo '<strong>'.get_lang('GroupRoles').'</strong><br />'; |
77 | - $current_group_course_roles=get_roles('group',$group_id); |
|
78 | - $current_group_platform_roles=get_roles('group',$group_id, 'platform'); |
|
77 | + $current_group_course_roles = get_roles('group', $group_id); |
|
78 | + $current_group_platform_roles = get_roles('group', $group_id, 'platform'); |
|
79 | 79 | display_role_list($current_group_course_roles, $current_group_platform_roles); |
80 | 80 | echo '<br />'; |
81 | 81 | } |
@@ -107,17 +107,17 @@ discard block |
||
107 | 107 | foreach ($header_array as $key=>$value) |
108 | 108 | { |
109 | 109 | echo "\t\t<td align='center'>\n"; |
110 | - if (in_array($value,$rights)) |
|
110 | + if (in_array($value, $rights)) |
|
111 | 111 | { |
112 | - if ($setting_visualisation=='checkbox') |
|
112 | + if ($setting_visualisation == 'checkbox') |
|
113 | 113 | { |
114 | 114 | //display_checkbox_matrix($current_group_permissions, $tool, $value); |
115 | - display_checkbox_matrix($current_group_permissions, $tool, $value, $inherited_permissions,$course_admin); |
|
115 | + display_checkbox_matrix($current_group_permissions, $tool, $value, $inherited_permissions, $course_admin); |
|
116 | 116 | } |
117 | - if ($setting_visualisation=='image') |
|
117 | + if ($setting_visualisation == 'image') |
|
118 | 118 | { |
119 | 119 | //display_image_matrix($current_group_permissions, $tool, $value); |
120 | - display_image_matrix($current_group_permissions, $tool, $value,$inherited_permissions, $course_admin); |
|
120 | + display_image_matrix($current_group_permissions, $tool, $value, $inherited_permissions, $course_admin); |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | // note: in a later stage this part will be replaced by a function |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | } |
131 | 131 | |
132 | 132 | echo "</table>\n"; |
133 | -if ($setting_visualisation=='checkbox') |
|
133 | +if ($setting_visualisation == 'checkbox') |
|
134 | 134 | { |
135 | 135 | echo "<input type=\"Submit\" name=\"StoreGroupPermissions\" value=\"".get_lang('StorePermissions')."\">"; |
136 | 136 | } |
@@ -97,9 +97,11 @@ |
||
97 | 97 | echo "\t</tr>\n"; |
98 | 98 | |
99 | 99 | // the main area with the checkboxes or images |
100 | -foreach ($tool_rights as $tool=>$rights) // $tool_rights contains all the possible tools and their rights |
|
100 | +foreach ($tool_rights as $tool=>$rights) { |
|
101 | + // $tool_rights contains all the possible tools and their rights |
|
101 | 102 | { |
102 | 103 | echo "\t<tr>\n"; |
104 | +} |
|
103 | 105 | echo "\t\t<td>\n"; |
104 | 106 | echo get_lang($tool); |
105 | 107 | echo "\t\t</td>\n"; |
@@ -10,15 +10,15 @@ discard block |
||
10 | 10 | * Code |
11 | 11 | */ |
12 | 12 | // possible permissions |
13 | -$rights_full=array("View","Add","Edit","Delete","Visibility","Move"); |
|
14 | -$rights_limited=array("Add","Edit","Delete"); |
|
13 | +$rights_full = array("View", "Add", "Edit", "Delete", "Visibility", "Move"); |
|
14 | +$rights_limited = array("Add", "Edit", "Delete"); |
|
15 | 15 | |
16 | 16 | |
17 | 17 | // first we determine what can be done in each tool. We do this for each tool. |
18 | -$tool_rights[TOOL_LINK]=array("View","Add","Edit","Delete","Visibility", "Move"); |
|
19 | -$tool_rights[TOOL_DOCUMENT]=array("View","Add","Edit","Delete","Visibility","Move"); |
|
18 | +$tool_rights[TOOL_LINK] = array("View", "Add", "Edit", "Delete", "Visibility", "Move"); |
|
19 | +$tool_rights[TOOL_DOCUMENT] = array("View", "Add", "Edit", "Delete", "Visibility", "Move"); |
|
20 | 20 | //$tool_rights[TOOL_CALENDAR_EVENT]=array("View","Add","Edit","Delete","Visibility"); |
21 | -$tool_rights[TOOL_ANNOUNCEMENT]=array("View","Add","Edit","Delete","Visibility", "Move"); |
|
21 | +$tool_rights[TOOL_ANNOUNCEMENT] = array("View", "Add", "Edit", "Delete", "Visibility", "Move"); |
|
22 | 22 | //$tool_rights[TOOL_STUDENTPUBLICATION]=array("View","Edit","Delete","Visibility"); |
23 | 23 | //$tool_rights[TOOL_COURSE_DESCRIPTION]=array("View","Add","Edit","Delete","Visibility"); |
24 | 24 | //$tool_rights[TOOL_LEARNPATH]=array("View","Add","Edit","Delete","Visibility"); |
@@ -26,13 +26,13 @@ discard block |
||
26 | 26 | //$tool_rights[TOOL_BB_POST]=array("View","Add","Edit","Delete"); |
27 | 27 | //$tool_rights[TOOL_DROPBOX]=array("View","Add","Delete"); |
28 | 28 | //$tool_rights[TOOL_QUIZ]=array("View","Add","Edit","Delete","Visibility"); |
29 | -$tool_rights[TOOL_USER]=array("View","Add","Edit","Delete"); |
|
29 | +$tool_rights[TOOL_USER] = array("View", "Add", "Edit", "Delete"); |
|
30 | 30 | //$tool_rights[TOOL_GROUP]=array("View","Add","Edit","Delete"); |
31 | 31 | //$tool_rights[TOOL_CHAT]=array("View","Delete"); |
32 | 32 | //$tool_rights[TOOL_CONFERENCE]=array("View","Add","Edit","Delete"); |
33 | 33 | //$tool_rights[TOOL_STUDENTPUBLICATION]=array("View","Add","Edit","Delete"); |
34 | 34 | |
35 | 35 | // this value can be checkbox or image |
36 | -$setting_visualisation='image'; |
|
36 | +$setting_visualisation = 'image'; |
|
37 | 37 | |
38 | 38 | ?> |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | WHERE status = '1' AND c_id = '".api_get_course_int_id()."'"; |
50 | 50 | $result = Database::query($sql); |
51 | 51 | while ($user = Database::fetch_assoc($result)) { |
52 | - unset($blog_users[$user['user_id']]); |
|
52 | + unset($blog_users[$user['user_id']]); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | //$user_id=$userIdViewed; |
@@ -84,30 +84,30 @@ discard block |
||
84 | 84 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE USER |
85 | 85 | // ------------------------------------------------------------------ |
86 | 86 | if (api_get_setting('user_roles')=='true') { |
87 | - // course roles that are assigned to the user |
|
88 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
89 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
90 | - // NOTE: deze array moet nog gemerged worden met de $inherited_permissions array |
|
91 | - // (heet momenteel nog $current_group_permissions_of_user omdat voorlopig enkel de |
|
92 | - // groepsge�rfde permissions in beschouwing worden genomen |
|
93 | - // dit moet ook de rol permissies van rollen die toegekend worden aan een gebruiker |
|
94 | - // en de rol permissies van rollen die toegekend worden aan de groepen van een gebruiker |
|
95 | - // omvatten. |
|
96 | - // NOTE: checken als de rollen brol wel degelijk geactiveerd is voordat we dit allemaal |
|
97 | - // ophalen. |
|
98 | - // platform roles that are assigned to the user |
|
99 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id, 'platform'); |
|
100 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
87 | + // course roles that are assigned to the user |
|
88 | + $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
89 | + $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
90 | + // NOTE: deze array moet nog gemerged worden met de $inherited_permissions array |
|
91 | + // (heet momenteel nog $current_group_permissions_of_user omdat voorlopig enkel de |
|
92 | + // groepsge�rfde permissions in beschouwing worden genomen |
|
93 | + // dit moet ook de rol permissies van rollen die toegekend worden aan een gebruiker |
|
94 | + // en de rol permissies van rollen die toegekend worden aan de groepen van een gebruiker |
|
95 | + // omvatten. |
|
96 | + // NOTE: checken als de rollen brol wel degelijk geactiveerd is voordat we dit allemaal |
|
97 | + // ophalen. |
|
98 | + // platform roles that are assigned to the user |
|
99 | + $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id, 'platform'); |
|
100 | + $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
101 | 101 | } |
102 | 102 | // ------------------------------------------------------------------ |
103 | 103 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE GROUPS OF THE USER |
104 | 104 | // ------------------------------------------------------------------ |
105 | 105 | if (api_get_setting('group_roles')=='true') { |
106 | - // NOTE: DIT MOET NOG VERDER UITGEWERKT WORDEN |
|
107 | - foreach ($groups_of_user as $group) { |
|
108 | - $this_current_group_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
109 | - //$inherited_permissions[$tool][]=$permission; |
|
110 | - } |
|
106 | + // NOTE: DIT MOET NOG VERDER UITGEWERKT WORDEN |
|
107 | + foreach ($groups_of_user as $group) { |
|
108 | + $this_current_group_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
109 | + //$inherited_permissions[$tool][]=$permission; |
|
110 | + } |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | echo "<form method=\"post\" action=\"".str_replace('&', '&', $_SERVER['REQUEST_URI'])."\">"; |
@@ -118,12 +118,12 @@ discard block |
||
118 | 118 | |
119 | 119 | if (api_get_setting('user_roles')=='true') |
120 | 120 | { |
121 | - // the list of the roles for the user |
|
122 | - echo '<strong>'.get_lang('UserRoles').'</strong><br />'; |
|
123 | - $current_user_course_roles=get_roles('user',$user_id); |
|
124 | - $current_user_platform_roles=get_roles('user',$user_id, 'platform'); |
|
125 | - display_role_list($current_user_course_roles, $current_user_platform_roles); |
|
126 | - echo '<br />'; |
|
121 | + // the list of the roles for the user |
|
122 | + echo '<strong>'.get_lang('UserRoles').'</strong><br />'; |
|
123 | + $current_user_course_roles=get_roles('user',$user_id); |
|
124 | + $current_user_platform_roles=get_roles('user',$user_id, 'platform'); |
|
125 | + display_role_list($current_user_course_roles, $current_user_platform_roles); |
|
126 | + echo '<br />'; |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | // --------------------------------------------------- |
@@ -133,59 +133,59 @@ discard block |
||
133 | 133 | |
134 | 134 | // the header |
135 | 135 | echo "\t<tr>\n"; |
136 | - echo "\t\t<th rowspan=\"2\">".get_lang('Module')."</th>\n"; |
|
137 | - echo "\t\t<th colspan=\"4\">".get_lang('ArticleManager')."</th>\n"; |
|
138 | - echo "\t\t<th colspan=\"3\">".get_lang('CommentManager')."</th>\n"; |
|
139 | - echo "\t\t<th colspan=\"3\">".get_lang('BlogManager')."</th>\n"; |
|
136 | + echo "\t\t<th rowspan=\"2\">".get_lang('Module')."</th>\n"; |
|
137 | + echo "\t\t<th colspan=\"4\">".get_lang('ArticleManager')."</th>\n"; |
|
138 | + echo "\t\t<th colspan=\"3\">".get_lang('CommentManager')."</th>\n"; |
|
139 | + echo "\t\t<th colspan=\"3\">".get_lang('BlogManager')."</th>\n"; |
|
140 | 140 | echo "\t</tr>\n"; |
141 | 141 | |
142 | 142 | // Subheader |
143 | 143 | echo "\t<tr>\n"; |
144 | - echo "\t\t<th align='center'>".get_lang('Add')."</th>\n"; |
|
145 | - echo "\t\t<th align='center'>".get_lang('Delete')."</th>\n"; |
|
146 | - echo "\t\t<th align='center'>".get_lang('Edit')."</th>\n"; |
|
147 | - echo "\t\t<th align='center'>".get_lang('Rate')."</th>\n"; |
|
148 | - echo "\t\t<th align='center'>".get_lang('Add')."</th>\n"; |
|
149 | - echo "\t\t<th align='center'>".get_lang('Delete')."</th>\n"; |
|
150 | - echo "\t\t<th align='center'>".get_lang('Rate')."</th>\n"; |
|
151 | - echo "\t\t<th align='center'>".get_lang('Tasks')."</th>\n"; |
|
152 | - echo "\t\t<th align='center'>".get_lang('Members')."</th>\n"; |
|
153 | - echo "\t\t<th align='center'>".get_lang('Roles')."</th>\n"; |
|
144 | + echo "\t\t<th align='center'>".get_lang('Add')."</th>\n"; |
|
145 | + echo "\t\t<th align='center'>".get_lang('Delete')."</th>\n"; |
|
146 | + echo "\t\t<th align='center'>".get_lang('Edit')."</th>\n"; |
|
147 | + echo "\t\t<th align='center'>".get_lang('Rate')."</th>\n"; |
|
148 | + echo "\t\t<th align='center'>".get_lang('Add')."</th>\n"; |
|
149 | + echo "\t\t<th align='center'>".get_lang('Delete')."</th>\n"; |
|
150 | + echo "\t\t<th align='center'>".get_lang('Rate')."</th>\n"; |
|
151 | + echo "\t\t<th align='center'>".get_lang('Tasks')."</th>\n"; |
|
152 | + echo "\t\t<th align='center'>".get_lang('Members')."</th>\n"; |
|
153 | + echo "\t\t<th align='center'>".get_lang('Roles')."</th>\n"; |
|
154 | 154 | echo "\t</tr>\n"; |
155 | 155 | |
156 | 156 | // the main area with the checkboxes or images |
157 | 157 | foreach ($blog_users as $user_id => $user_name) { // $blog_users contains all the users in this blog |
158 | - // --------------------------------------------------- |
|
159 | - // RETRIEVING THE PERMISSIONS OF THE USER |
|
160 | - // --------------------------------------------------- |
|
161 | - $current_user_permissions = array(); |
|
162 | - $current_user_permissions = get_permissions('user', $user_id); |
|
163 | - |
|
164 | - echo "\t<tr>\n"; |
|
165 | - echo "\t\t<td>\n"; |
|
166 | - echo $user_name; |
|
167 | - echo "\t\t</td>\n"; |
|
168 | - |
|
169 | - foreach ($rights_full as $key => $value) { |
|
170 | - |
|
171 | - echo "\t\t<td align='center'>\n"; |
|
172 | - if (in_array($value,$rights_blog)) { |
|
173 | - display_image_matrix_for_blogs( |
|
174 | - $current_user_permissions, |
|
175 | - $user_id, |
|
176 | - 'BLOG_'.$blog_id, |
|
177 | - $value, |
|
178 | - (isset($inherited_permissions) ? $inherited_permissions : null), |
|
179 | - (isset($course_admin) ? $course_admin : null) |
|
180 | - ); |
|
181 | - } |
|
182 | - // note: in a later stage this part will be replaced by a function |
|
183 | - // so that we can easily switch between a checkbox approach or an image approach |
|
184 | - // where every click is in fact a change of status. In the checkbox approach you first have to |
|
185 | - // do the changes and then store them by clicking the submit button. |
|
186 | - echo "\t\t</td>\n"; |
|
187 | - } |
|
188 | - echo "\t</tr>\n"; |
|
158 | + // --------------------------------------------------- |
|
159 | + // RETRIEVING THE PERMISSIONS OF THE USER |
|
160 | + // --------------------------------------------------- |
|
161 | + $current_user_permissions = array(); |
|
162 | + $current_user_permissions = get_permissions('user', $user_id); |
|
163 | + |
|
164 | + echo "\t<tr>\n"; |
|
165 | + echo "\t\t<td>\n"; |
|
166 | + echo $user_name; |
|
167 | + echo "\t\t</td>\n"; |
|
168 | + |
|
169 | + foreach ($rights_full as $key => $value) { |
|
170 | + |
|
171 | + echo "\t\t<td align='center'>\n"; |
|
172 | + if (in_array($value,$rights_blog)) { |
|
173 | + display_image_matrix_for_blogs( |
|
174 | + $current_user_permissions, |
|
175 | + $user_id, |
|
176 | + 'BLOG_'.$blog_id, |
|
177 | + $value, |
|
178 | + (isset($inherited_permissions) ? $inherited_permissions : null), |
|
179 | + (isset($course_admin) ? $course_admin : null) |
|
180 | + ); |
|
181 | + } |
|
182 | + // note: in a later stage this part will be replaced by a function |
|
183 | + // so that we can easily switch between a checkbox approach or an image approach |
|
184 | + // where every click is in fact a change of status. In the checkbox approach you first have to |
|
185 | + // do the changes and then store them by clicking the submit button. |
|
186 | + echo "\t\t</td>\n"; |
|
187 | + } |
|
188 | + echo "\t</tr>\n"; |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | echo "</table>\n"; |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | // Remove the blog creater because he has all the rights automatically |
45 | 45 | // and we want to keep it that way. |
46 | -$tbl_course_rel_user = $table=Database::get_main_table(TABLE_MAIN_COURSE_USER); |
|
46 | +$tbl_course_rel_user = $table = Database::get_main_table(TABLE_MAIN_COURSE_USER); |
|
47 | 47 | $sql = "SELECT user_id |
48 | 48 | FROM $tbl_course_rel_user |
49 | 49 | WHERE status = '1' AND c_id = '".api_get_course_int_id()."'"; |
@@ -83,10 +83,10 @@ discard block |
||
83 | 83 | // ------------------------------------------------------------------ |
84 | 84 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE USER |
85 | 85 | // ------------------------------------------------------------------ |
86 | -if (api_get_setting('user_roles')=='true') { |
|
86 | +if (api_get_setting('user_roles') == 'true') { |
|
87 | 87 | // course roles that are assigned to the user |
88 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
89 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
88 | + $current_user_role_permissions_of_user = get_roles_permissions('user', $user_id); |
|
89 | + $inherited_permissions = permission_array_merge($inherited_permissions, $current_user_role_permissions_of_user); |
|
90 | 90 | // NOTE: deze array moet nog gemerged worden met de $inherited_permissions array |
91 | 91 | // (heet momenteel nog $current_group_permissions_of_user omdat voorlopig enkel de |
92 | 92 | // groepsge�rfde permissions in beschouwing worden genomen |
@@ -96,16 +96,16 @@ discard block |
||
96 | 96 | // NOTE: checken als de rollen brol wel degelijk geactiveerd is voordat we dit allemaal |
97 | 97 | // ophalen. |
98 | 98 | // platform roles that are assigned to the user |
99 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id, 'platform'); |
|
100 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
99 | + $current_user_role_permissions_of_user = get_roles_permissions('user', $user_id, 'platform'); |
|
100 | + $inherited_permissions = permission_array_merge($inherited_permissions, $current_user_role_permissions_of_user); |
|
101 | 101 | } |
102 | 102 | // ------------------------------------------------------------------ |
103 | 103 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE GROUPS OF THE USER |
104 | 104 | // ------------------------------------------------------------------ |
105 | -if (api_get_setting('group_roles')=='true') { |
|
105 | +if (api_get_setting('group_roles') == 'true') { |
|
106 | 106 | // NOTE: DIT MOET NOG VERDER UITGEWERKT WORDEN |
107 | 107 | foreach ($groups_of_user as $group) { |
108 | - $this_current_group_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
108 | + $this_current_group_role_permissions_of_user = get_roles_permissions('user', $user_id); |
|
109 | 109 | //$inherited_permissions[$tool][]=$permission; |
110 | 110 | } |
111 | 111 | } |
@@ -116,12 +116,12 @@ discard block |
||
116 | 116 | // DISPLAYING THE ROLES LIST |
117 | 117 | // --------------------------------------------------- |
118 | 118 | |
119 | -if (api_get_setting('user_roles')=='true') |
|
119 | +if (api_get_setting('user_roles') == 'true') |
|
120 | 120 | { |
121 | 121 | // the list of the roles for the user |
122 | 122 | echo '<strong>'.get_lang('UserRoles').'</strong><br />'; |
123 | - $current_user_course_roles=get_roles('user',$user_id); |
|
124 | - $current_user_platform_roles=get_roles('user',$user_id, 'platform'); |
|
123 | + $current_user_course_roles = get_roles('user', $user_id); |
|
124 | + $current_user_platform_roles = get_roles('user', $user_id, 'platform'); |
|
125 | 125 | display_role_list($current_user_course_roles, $current_user_platform_roles); |
126 | 126 | echo '<br />'; |
127 | 127 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | foreach ($rights_full as $key => $value) { |
170 | 170 | |
171 | 171 | echo "\t\t<td align='center'>\n"; |
172 | - if (in_array($value,$rights_blog)) { |
|
172 | + if (in_array($value, $rights_blog)) { |
|
173 | 173 | display_image_matrix_for_blogs( |
174 | 174 | $current_user_permissions, |
175 | 175 | $user_id, |
@@ -5,10 +5,10 @@ discard block |
||
5 | 5 | /** |
6 | 6 | * Code |
7 | 7 | */ |
8 | -$user_id=$userIdViewed; |
|
9 | -if ($mainUserInfo['status']==1) |
|
8 | +$user_id = $userIdViewed; |
|
9 | +if ($mainUserInfo['status'] == 1) |
|
10 | 10 | { |
11 | - $course_admin=1; |
|
11 | + $course_admin = 1; |
|
12 | 12 | } |
13 | 13 | include_once('permissions_functions.inc.php'); |
14 | 14 | include_once('all_permissions.inc.php'); |
@@ -17,9 +17,9 @@ discard block |
||
17 | 17 | // --------------------------------------------------- |
18 | 18 | // ACTIONS |
19 | 19 | // --------------------------------------------------- |
20 | -if ($_POST['StoreUserPermissions'] and $setting_visualisation=='checkbox') |
|
20 | +if ($_POST['StoreUserPermissions'] and $setting_visualisation == 'checkbox') |
|
21 | 21 | { |
22 | - $result_message=store_permissions('user', $user_id); |
|
22 | + $result_message = store_permissions('user', $user_id); |
|
23 | 23 | if ($result_message) |
24 | 24 | { |
25 | 25 | Display::display_normal_message($result_message); |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | } |
28 | 28 | if (isset($_GET['action'])) |
29 | 29 | { |
30 | - if ( isset($_GET['permission']) AND isset($_GET['tool']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
30 | + if (isset($_GET['permission']) AND isset($_GET['tool']) AND ($_GET['action'] == 'grant' OR $_GET['action'] == 'revoke')) |
|
31 | 31 | { |
32 | - $result_message=store_one_permission('user', $_GET['action'], $user_id, $_GET['tool'], $_GET['permission']); |
|
32 | + $result_message = store_one_permission('user', $_GET['action'], $user_id, $_GET['tool'], $_GET['permission']); |
|
33 | 33 | } |
34 | - if (isset($_GET['role']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
34 | + if (isset($_GET['role']) AND ($_GET['action'] == 'grant' OR $_GET['action'] == 'revoke')) |
|
35 | 35 | { |
36 | - $result_message=assign_role('user', $_GET['action'], $user_id, $_GET['role'], $_GET['scope']); |
|
36 | + $result_message = assign_role('user', $_GET['action'], $user_id, $_GET['role'], $_GET['scope']); |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 | if (isset($result_message)) |
@@ -44,33 +44,33 @@ discard block |
||
44 | 44 | // --------------------------------------------------- |
45 | 45 | // RETRIEVING THE PERMISSIONS OF THE USER |
46 | 46 | // --------------------------------------------------- |
47 | -$current_user_permissions=array(); |
|
48 | -$current_user_permissions=get_permissions('user',$user_id); |
|
47 | +$current_user_permissions = array(); |
|
48 | +$current_user_permissions = get_permissions('user', $user_id); |
|
49 | 49 | |
50 | 50 | |
51 | 51 | // INHERITED PERMISSIONS (group permissions, user roles, group roles) |
52 | 52 | |
53 | 53 | // RETRIEVING THE PERMISSIONS OF THE GROUPS OF THE USER |
54 | -$groups_of_user=array(); |
|
55 | -$groups_of_user=GroupManager::get_group_ids($_course['real_id'],$user_id); |
|
54 | +$groups_of_user = array(); |
|
55 | +$groups_of_user = GroupManager::get_group_ids($_course['real_id'], $user_id); |
|
56 | 56 | foreach ($groups_of_user as $group) |
57 | 57 | { |
58 | - $this_group_permissions=get_permissions('group',$group); |
|
58 | + $this_group_permissions = get_permissions('group', $group); |
|
59 | 59 | foreach ($this_group_permissions as $tool=>$permissions) |
60 | 60 | { |
61 | 61 | foreach ($permissions as $permission) |
62 | 62 | { |
63 | - $inherited_group_permissions[$tool][]=$permission; |
|
63 | + $inherited_group_permissions[$tool][] = $permission; |
|
64 | 64 | } |
65 | 65 | } |
66 | 66 | } |
67 | -$inherited_permissions=$inherited_group_permissions; |
|
67 | +$inherited_permissions = $inherited_group_permissions; |
|
68 | 68 | |
69 | 69 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE USER |
70 | -if (api_get_setting('user_roles')=='true') { |
|
70 | +if (api_get_setting('user_roles') == 'true') { |
|
71 | 71 | // course roles that are assigned to the user |
72 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
73 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
72 | + $current_user_role_permissions_of_user = get_roles_permissions('user', $user_id); |
|
73 | + $inherited_permissions = permission_array_merge($inherited_permissions, $current_user_role_permissions_of_user); |
|
74 | 74 | // NOTE: deze array moet nog gemerged worden met de $inherited_permissions array |
75 | 75 | // (heet momenteel nog $current_group_permissions_of_user omdat voorlopig enkel de |
76 | 76 | // groepsge�rfde permissions in beschouwing worden genomen |
@@ -80,16 +80,16 @@ discard block |
||
80 | 80 | // NOTE: checken als de rollen brol wel degelijk geactiveerd is voordat we dit allemaal |
81 | 81 | // ophalen. |
82 | 82 | // platform roles that are assigned to the user |
83 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id, 'platform'); |
|
84 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
83 | + $current_user_role_permissions_of_user = get_roles_permissions('user', $user_id, 'platform'); |
|
84 | + $inherited_permissions = permission_array_merge($inherited_permissions, $current_user_role_permissions_of_user); |
|
85 | 85 | } |
86 | 86 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE GROUPS OF THE USER |
87 | -if (api_get_setting('group_roles')=='true') |
|
87 | +if (api_get_setting('group_roles') == 'true') |
|
88 | 88 | { |
89 | 89 | // NOTE: DIT MOET NOG VERDER UITGEWERKT WORDEN |
90 | 90 | foreach ($groups_of_user as $group) |
91 | 91 | { |
92 | - $this_current_group_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
92 | + $this_current_group_role_permissions_of_user = get_roles_permissions('user', $user_id); |
|
93 | 93 | //$inherited_permissions[$tool][]=$permission; |
94 | 94 | } |
95 | 95 | } |
@@ -97,15 +97,15 @@ discard block |
||
97 | 97 | // --------------------------------------------------- |
98 | 98 | // LIMITED OR FULL |
99 | 99 | // --------------------------------------------------- |
100 | -$current_user_permissions=limited_or_full($current_user_permissions); |
|
101 | -$inherited_permissions=limited_or_full($inherited_permissions); |
|
102 | -if (api_get_setting('permissions')=='limited') |
|
100 | +$current_user_permissions = limited_or_full($current_user_permissions); |
|
101 | +$inherited_permissions = limited_or_full($inherited_permissions); |
|
102 | +if (api_get_setting('permissions') == 'limited') |
|
103 | 103 | { |
104 | - $header_array=$rights_limited; |
|
104 | + $header_array = $rights_limited; |
|
105 | 105 | } |
106 | -if (api_get_setting('permissions')=='full') |
|
106 | +if (api_get_setting('permissions') == 'full') |
|
107 | 107 | { |
108 | - $header_array=$rights_full; |
|
108 | + $header_array = $rights_full; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | |
@@ -114,12 +114,12 @@ discard block |
||
114 | 114 | // --------------------------------------------------- |
115 | 115 | // DISPLAYING THE ROLES LIST |
116 | 116 | // --------------------------------------------------- |
117 | -if (api_get_setting('user_roles')=='true') |
|
117 | +if (api_get_setting('user_roles') == 'true') |
|
118 | 118 | { |
119 | 119 | // the list of the roles for the user |
120 | 120 | echo '<strong>'.get_lang('UserRoles').'</strong><br />'; |
121 | - $current_user_course_roles=get_roles('user',$user_id); |
|
122 | - $current_user_platform_roles=get_roles('user',$user_id, 'platform'); |
|
121 | + $current_user_course_roles = get_roles('user', $user_id); |
|
122 | + $current_user_platform_roles = get_roles('user', $user_id, 'platform'); |
|
123 | 123 | display_role_list($current_user_course_roles, $current_user_platform_roles); |
124 | 124 | echo '<br />'; |
125 | 125 | } |
@@ -144,12 +144,12 @@ discard block |
||
144 | 144 | { |
145 | 145 | echo "\t<tr>\n"; |
146 | 146 | echo "\t\t<td>\n"; |
147 | - if (strstr($tool,'BLOG')) |
|
147 | + if (strstr($tool, 'BLOG')) |
|
148 | 148 | { |
149 | 149 | // Not dealing with a real tool here, get name of this blog |
150 | 150 | // Strip blog id |
151 | - $tmp = strpos($tool,'_')+1; |
|
152 | - $blog_id = substr($tool,$tmp,strlen($tool)); |
|
151 | + $tmp = strpos($tool, '_') + 1; |
|
152 | + $blog_id = substr($tool, $tmp, strlen($tool)); |
|
153 | 153 | // Get title |
154 | 154 | echo get_lang('Blog').": ".Blog::get_blog_title($blog_id); |
155 | 155 | } |
@@ -164,15 +164,15 @@ discard block |
||
164 | 164 | { |
165 | 165 | |
166 | 166 | echo "\t\t<td align='center'>\n"; |
167 | - if (in_array($value,$rights)) |
|
167 | + if (in_array($value, $rights)) |
|
168 | 168 | { |
169 | - if ($setting_visualisation=='checkbox') |
|
169 | + if ($setting_visualisation == 'checkbox') |
|
170 | 170 | { |
171 | - display_checkbox_matrix($current_user_permissions, $tool, $value, $inherited_permissions,$course_admin); |
|
171 | + display_checkbox_matrix($current_user_permissions, $tool, $value, $inherited_permissions, $course_admin); |
|
172 | 172 | } |
173 | - if ($setting_visualisation=='image') |
|
173 | + if ($setting_visualisation == 'image') |
|
174 | 174 | { |
175 | - display_image_matrix($current_user_permissions, $tool, $value,$inherited_permissions, $course_admin); |
|
175 | + display_image_matrix($current_user_permissions, $tool, $value, $inherited_permissions, $course_admin); |
|
176 | 176 | } |
177 | 177 | } |
178 | 178 | // note: in a later stage this part will be replaced by a function |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | } |
186 | 186 | |
187 | 187 | echo "</table>\n"; |
188 | -if ($setting_visualisation=='checkbox') |
|
188 | +if ($setting_visualisation == 'checkbox') |
|
189 | 189 | { |
190 | 190 | echo "<input type=\"Submit\" name=\"StoreUserPermissions\" value=\"".get_lang('StorePermissions')."\">"; |
191 | 191 | } |
@@ -140,9 +140,11 @@ discard block |
||
140 | 140 | echo "\t</tr>\n"; |
141 | 141 | |
142 | 142 | // the main area with the checkboxes or images |
143 | -foreach ($tool_rights as $tool=>$rights) // $tool_rights contains all the possible tools and their rights |
|
143 | +foreach ($tool_rights as $tool=>$rights) { |
|
144 | + // $tool_rights contains all the possible tools and their rights |
|
144 | 145 | { |
145 | 146 | echo "\t<tr>\n"; |
147 | +} |
|
146 | 148 | echo "\t\t<td>\n"; |
147 | 149 | if (strstr($tool,'BLOG')) |
148 | 150 | { |
@@ -152,8 +154,7 @@ discard block |
||
152 | 154 | $blog_id = substr($tool,$tmp,strlen($tool)); |
153 | 155 | // Get title |
154 | 156 | echo get_lang('Blog').": ".Blog::get_blog_title($blog_id); |
155 | - } |
|
156 | - else |
|
157 | + } else |
|
157 | 158 | { |
158 | 159 | echo get_lang($tool); |
159 | 160 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | $user_id=$userIdViewed; |
9 | 9 | if ($mainUserInfo['status']==1) |
10 | 10 | { |
11 | - $course_admin=1; |
|
11 | + $course_admin=1; |
|
12 | 12 | } |
13 | 13 | include_once('permissions_functions.inc.php'); |
14 | 14 | include_once('all_permissions.inc.php'); |
@@ -19,26 +19,26 @@ discard block |
||
19 | 19 | // --------------------------------------------------- |
20 | 20 | if ($_POST['StoreUserPermissions'] and $setting_visualisation=='checkbox') |
21 | 21 | { |
22 | - $result_message=store_permissions('user', $user_id); |
|
23 | - if ($result_message) |
|
24 | - { |
|
25 | - Display::display_normal_message($result_message); |
|
26 | - } |
|
22 | + $result_message=store_permissions('user', $user_id); |
|
23 | + if ($result_message) |
|
24 | + { |
|
25 | + Display::display_normal_message($result_message); |
|
26 | + } |
|
27 | 27 | } |
28 | 28 | if (isset($_GET['action'])) |
29 | 29 | { |
30 | - if ( isset($_GET['permission']) AND isset($_GET['tool']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
31 | - { |
|
32 | - $result_message=store_one_permission('user', $_GET['action'], $user_id, $_GET['tool'], $_GET['permission']); |
|
33 | - } |
|
34 | - if (isset($_GET['role']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
35 | - { |
|
36 | - $result_message=assign_role('user', $_GET['action'], $user_id, $_GET['role'], $_GET['scope']); |
|
37 | - } |
|
30 | + if ( isset($_GET['permission']) AND isset($_GET['tool']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
31 | + { |
|
32 | + $result_message=store_one_permission('user', $_GET['action'], $user_id, $_GET['tool'], $_GET['permission']); |
|
33 | + } |
|
34 | + if (isset($_GET['role']) AND ($_GET['action']=='grant' OR $_GET['action']=='revoke')) |
|
35 | + { |
|
36 | + $result_message=assign_role('user', $_GET['action'], $user_id, $_GET['role'], $_GET['scope']); |
|
37 | + } |
|
38 | 38 | } |
39 | 39 | if (isset($result_message)) |
40 | 40 | { |
41 | - Display::display_normal_message($result_message); |
|
41 | + Display::display_normal_message($result_message); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | // --------------------------------------------------- |
@@ -55,43 +55,43 @@ discard block |
||
55 | 55 | $groups_of_user=GroupManager::get_group_ids($_course['real_id'],$user_id); |
56 | 56 | foreach ($groups_of_user as $group) |
57 | 57 | { |
58 | - $this_group_permissions=get_permissions('group',$group); |
|
59 | - foreach ($this_group_permissions as $tool=>$permissions) |
|
60 | - { |
|
61 | - foreach ($permissions as $permission) |
|
62 | - { |
|
63 | - $inherited_group_permissions[$tool][]=$permission; |
|
64 | - } |
|
65 | - } |
|
58 | + $this_group_permissions=get_permissions('group',$group); |
|
59 | + foreach ($this_group_permissions as $tool=>$permissions) |
|
60 | + { |
|
61 | + foreach ($permissions as $permission) |
|
62 | + { |
|
63 | + $inherited_group_permissions[$tool][]=$permission; |
|
64 | + } |
|
65 | + } |
|
66 | 66 | } |
67 | 67 | $inherited_permissions=$inherited_group_permissions; |
68 | 68 | |
69 | 69 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE USER |
70 | 70 | if (api_get_setting('user_roles')=='true') { |
71 | - // course roles that are assigned to the user |
|
72 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
73 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
74 | - // NOTE: deze array moet nog gemerged worden met de $inherited_permissions array |
|
75 | - // (heet momenteel nog $current_group_permissions_of_user omdat voorlopig enkel de |
|
76 | - // groepsge�rfde permissions in beschouwing worden genomen |
|
77 | - // dit moet ook de rol permissies van rollen die toegekend worden aan een gebruiker |
|
78 | - // en de rol permissies van rollen die toegekend worden aan de groepen van een gebruiker |
|
79 | - // omvatten. |
|
80 | - // NOTE: checken als de rollen brol wel degelijk geactiveerd is voordat we dit allemaal |
|
81 | - // ophalen. |
|
82 | - // platform roles that are assigned to the user |
|
83 | - $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id, 'platform'); |
|
84 | - $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
71 | + // course roles that are assigned to the user |
|
72 | + $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
73 | + $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
74 | + // NOTE: deze array moet nog gemerged worden met de $inherited_permissions array |
|
75 | + // (heet momenteel nog $current_group_permissions_of_user omdat voorlopig enkel de |
|
76 | + // groepsge�rfde permissions in beschouwing worden genomen |
|
77 | + // dit moet ook de rol permissies van rollen die toegekend worden aan een gebruiker |
|
78 | + // en de rol permissies van rollen die toegekend worden aan de groepen van een gebruiker |
|
79 | + // omvatten. |
|
80 | + // NOTE: checken als de rollen brol wel degelijk geactiveerd is voordat we dit allemaal |
|
81 | + // ophalen. |
|
82 | + // platform roles that are assigned to the user |
|
83 | + $current_user_role_permissions_of_user=get_roles_permissions('user',$user_id, 'platform'); |
|
84 | + $inherited_permissions=permission_array_merge($inherited_permissions,$current_user_role_permissions_of_user); |
|
85 | 85 | } |
86 | 86 | // RETRIEVING THE PERMISSIONS OF THE ROLES OF THE GROUPS OF THE USER |
87 | 87 | if (api_get_setting('group_roles')=='true') |
88 | 88 | { |
89 | - // NOTE: DIT MOET NOG VERDER UITGEWERKT WORDEN |
|
90 | - foreach ($groups_of_user as $group) |
|
91 | - { |
|
92 | - $this_current_group_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
93 | - //$inherited_permissions[$tool][]=$permission; |
|
94 | - } |
|
89 | + // NOTE: DIT MOET NOG VERDER UITGEWERKT WORDEN |
|
90 | + foreach ($groups_of_user as $group) |
|
91 | + { |
|
92 | + $this_current_group_role_permissions_of_user=get_roles_permissions('user',$user_id); |
|
93 | + //$inherited_permissions[$tool][]=$permission; |
|
94 | + } |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | // --------------------------------------------------- |
@@ -101,11 +101,11 @@ discard block |
||
101 | 101 | $inherited_permissions=limited_or_full($inherited_permissions); |
102 | 102 | if (api_get_setting('permissions')=='limited') |
103 | 103 | { |
104 | - $header_array=$rights_limited; |
|
104 | + $header_array=$rights_limited; |
|
105 | 105 | } |
106 | 106 | if (api_get_setting('permissions')=='full') |
107 | 107 | { |
108 | - $header_array=$rights_full; |
|
108 | + $header_array=$rights_full; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | |
@@ -116,12 +116,12 @@ discard block |
||
116 | 116 | // --------------------------------------------------- |
117 | 117 | if (api_get_setting('user_roles')=='true') |
118 | 118 | { |
119 | - // the list of the roles for the user |
|
120 | - echo '<strong>'.get_lang('UserRoles').'</strong><br />'; |
|
121 | - $current_user_course_roles=get_roles('user',$user_id); |
|
122 | - $current_user_platform_roles=get_roles('user',$user_id, 'platform'); |
|
123 | - display_role_list($current_user_course_roles, $current_user_platform_roles); |
|
124 | - echo '<br />'; |
|
119 | + // the list of the roles for the user |
|
120 | + echo '<strong>'.get_lang('UserRoles').'</strong><br />'; |
|
121 | + $current_user_course_roles=get_roles('user',$user_id); |
|
122 | + $current_user_platform_roles=get_roles('user',$user_id, 'platform'); |
|
123 | + display_role_list($current_user_course_roles, $current_user_platform_roles); |
|
124 | + echo '<br />'; |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | // --------------------------------------------------- |
@@ -135,59 +135,59 @@ discard block |
||
135 | 135 | echo "\t\t<th>".get_lang('Module')."</th>\n"; |
136 | 136 | foreach ($header_array as $header_key=>$header_value) |
137 | 137 | { |
138 | - echo "\t\t<th>".get_lang($header_value)."</th>\n"; |
|
138 | + echo "\t\t<th>".get_lang($header_value)."</th>\n"; |
|
139 | 139 | } |
140 | 140 | echo "\t</tr>\n"; |
141 | 141 | |
142 | 142 | // the main area with the checkboxes or images |
143 | 143 | foreach ($tool_rights as $tool=>$rights) // $tool_rights contains all the possible tools and their rights |
144 | 144 | { |
145 | - echo "\t<tr>\n"; |
|
146 | - echo "\t\t<td>\n"; |
|
147 | - if (strstr($tool,'BLOG')) |
|
148 | - { |
|
149 | - // Not dealing with a real tool here, get name of this blog |
|
150 | - // Strip blog id |
|
151 | - $tmp = strpos($tool,'_')+1; |
|
152 | - $blog_id = substr($tool,$tmp,strlen($tool)); |
|
153 | - // Get title |
|
154 | - echo get_lang('Blog').": ".Blog::get_blog_title($blog_id); |
|
155 | - } |
|
156 | - else |
|
157 | - { |
|
158 | - echo get_lang($tool); |
|
159 | - } |
|
160 | - |
|
161 | - echo "\t\t</td>\n"; |
|
162 | - |
|
163 | - foreach ($header_array as $key=>$value) |
|
164 | - { |
|
165 | - |
|
166 | - echo "\t\t<td align='center'>\n"; |
|
167 | - if (in_array($value,$rights)) |
|
168 | - { |
|
169 | - if ($setting_visualisation=='checkbox') |
|
170 | - { |
|
171 | - display_checkbox_matrix($current_user_permissions, $tool, $value, $inherited_permissions,$course_admin); |
|
172 | - } |
|
173 | - if ($setting_visualisation=='image') |
|
174 | - { |
|
175 | - display_image_matrix($current_user_permissions, $tool, $value,$inherited_permissions, $course_admin); |
|
176 | - } |
|
177 | - } |
|
178 | - // note: in a later stage this part will be replaced by a function |
|
179 | - // so that we can easily switch between a checkbox approach or an image approach |
|
180 | - // where every click is in fact a change of status. In the checkbox approach you first have to |
|
181 | - // do the changes and then store them by clicking the submit button. |
|
182 | - echo "\t\t</td>\n"; |
|
183 | - } |
|
184 | - echo "\t</tr>\n"; |
|
145 | + echo "\t<tr>\n"; |
|
146 | + echo "\t\t<td>\n"; |
|
147 | + if (strstr($tool,'BLOG')) |
|
148 | + { |
|
149 | + // Not dealing with a real tool here, get name of this blog |
|
150 | + // Strip blog id |
|
151 | + $tmp = strpos($tool,'_')+1; |
|
152 | + $blog_id = substr($tool,$tmp,strlen($tool)); |
|
153 | + // Get title |
|
154 | + echo get_lang('Blog').": ".Blog::get_blog_title($blog_id); |
|
155 | + } |
|
156 | + else |
|
157 | + { |
|
158 | + echo get_lang($tool); |
|
159 | + } |
|
160 | + |
|
161 | + echo "\t\t</td>\n"; |
|
162 | + |
|
163 | + foreach ($header_array as $key=>$value) |
|
164 | + { |
|
165 | + |
|
166 | + echo "\t\t<td align='center'>\n"; |
|
167 | + if (in_array($value,$rights)) |
|
168 | + { |
|
169 | + if ($setting_visualisation=='checkbox') |
|
170 | + { |
|
171 | + display_checkbox_matrix($current_user_permissions, $tool, $value, $inherited_permissions,$course_admin); |
|
172 | + } |
|
173 | + if ($setting_visualisation=='image') |
|
174 | + { |
|
175 | + display_image_matrix($current_user_permissions, $tool, $value,$inherited_permissions, $course_admin); |
|
176 | + } |
|
177 | + } |
|
178 | + // note: in a later stage this part will be replaced by a function |
|
179 | + // so that we can easily switch between a checkbox approach or an image approach |
|
180 | + // where every click is in fact a change of status. In the checkbox approach you first have to |
|
181 | + // do the changes and then store them by clicking the submit button. |
|
182 | + echo "\t\t</td>\n"; |
|
183 | + } |
|
184 | + echo "\t</tr>\n"; |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | echo "</table>\n"; |
188 | 188 | if ($setting_visualisation=='checkbox') |
189 | 189 | { |
190 | - echo "<input type=\"Submit\" name=\"StoreUserPermissions\" value=\"".get_lang('StorePermissions')."\">"; |
|
190 | + echo "<input type=\"Submit\" name=\"StoreUserPermissions\" value=\"".get_lang('StorePermissions')."\">"; |
|
191 | 191 | } |
192 | 192 | echo "</form><br />"; |
193 | 193 |