Commit | Line | Data |
---|---|---|
d9cb06dc | 1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
5 | // Moodle is free software: you can redistribute it and/or modify | |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
14 | // | |
15 | // You should have received a copy of the GNU General Public License | |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | /** | |
19 | * Library of useful functions | |
20 | * | |
21 | * @copyright 1999 Martin Dougiamas http://dougiamas.com | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | * @package course | |
24 | */ | |
f9903ed0 | 25 | |
4e781c7b | 26 | require_once($CFG->libdir.'/completionlib.php'); |
8bdc9cac | 27 | require_once($CFG->libdir.'/filelib.php'); |
f9903ed0 | 28 | |
92890025 | 29 | define('COURSE_MAX_LOG_DISPLAY', 150); // days |
30 | define('COURSE_MAX_LOGS_PER_PAGE', 1000); // records | |
31 | define('COURSE_LIVELOG_REFRESH', 60); // Seconds | |
32 | define('COURSE_MAX_RECENT_PERIOD', 172800); // Two days, in seconds | |
33 | define('COURSE_MAX_SUMMARIES_PER_PAGE', 10); // courses | |
950c35a9 | 34 | define('COURSE_MAX_COURSES_PER_DROPDOWN',1000); // max courses in log dropdown before switching to optional |
92890025 | 35 | define('COURSE_MAX_USERS_PER_DROPDOWN',1000); // max users in log dropdown before switching to optional |
220a90c5 | 36 | define('FRONTPAGENEWS', '0'); |
37 | define('FRONTPAGECOURSELIST', '1'); | |
38 | define('FRONTPAGECATEGORYNAMES', '2'); | |
39 | define('FRONTPAGETOPICONLY', '3'); | |
40 | define('FRONTPAGECATEGORYCOMBO', '4'); | |
6f24e48e | 41 | define('FRONTPAGECOURSELIMIT', 200); // maximum number of courses displayed on the frontpage |
42 | define('EXCELROWS', 65535); | |
43 | define('FIRSTUSEDEXCELROW', 3); | |
60fdc714 | 44 | |
89bfeee0 | 45 | define('MOD_CLASS_ACTIVITY', 0); |
46 | define('MOD_CLASS_RESOURCE', 1); | |
47 | ||
2f48819b | 48 | if (!defined('MAX_MODINFO_CACHE_SIZE')) { |
4d10247f | 49 | define('MAX_MODINFO_CACHE_SIZE', 10); |
50 | } | |
f9903ed0 | 51 | |
600149be | 52 | function make_log_url($module, $url) { |
53 | switch ($module) { | |
bd7be234 | 54 | case 'course': |
55 | case 'file': | |
56 | case 'login': | |
57 | case 'lib': | |
58 | case 'admin': | |
bd7be234 | 59 | case 'calendar': |
bd5d0ce5 | 60 | case 'mnet course': |
11003188 | 61 | if (strpos($url, '../') === 0) { |
62 | $url = ltrim($url, '.'); | |
63 | } else { | |
64 | $url = "/course/$url"; | |
65 | } | |
bd5d0ce5 | 66 | break; |
01d5d399 | 67 | case 'user': |
bd7be234 | 68 | case 'blog': |
11003188 | 69 | $url = "/$module/$url"; |
600149be | 70 | break; |
bd7be234 | 71 | case 'upload': |
11003188 | 72 | $url = $url; |
c80b7585 | 73 | break; |
38fb8190 | 74 | case 'coursetags': |
11003188 | 75 | $url = '/'.$url; |
38fb8190 | 76 | break; |
bd7be234 | 77 | case 'library': |
78 | case '': | |
11003188 | 79 | $url = '/'; |
de2dfe68 | 80 | break; |
4597d533 | 81 | case 'message': |
11003188 | 82 | $url = "/message/$url"; |
83 | break; | |
84 | case 'notes': | |
85 | $url = "/notes/$url"; | |
4597d533 | 86 | break; |
b89e4ad8 | 87 | case 'tag': |
88 | $url = "/tag/$url"; | |
89 | break; | |
dbcf271b | 90 | case 'role': |
91 | $url = '/'.$url; | |
92 | break; | |
600149be | 93 | default: |
11003188 | 94 | $url = "/mod/$module/$url"; |
600149be | 95 | break; |
96 | } | |
11003188 | 97 | |
98 | //now let's sanitise urls - there might be some ugly nasties:-( | |
99 | $parts = explode('?', $url); | |
100 | $script = array_shift($parts); | |
101 | if (strpos($script, 'http') === 0) { | |
102 | $script = clean_param($script, PARAM_URL); | |
103 | } else { | |
104 | $script = clean_param($script, PARAM_PATH); | |
105 | } | |
106 | ||
107 | $query = ''; | |
108 | if ($parts) { | |
109 | $query = implode('', $parts); | |
110 | $query = str_replace('&', '&', $query); // both & and & are stored in db :-| | |
111 | $parts = explode('&', $query); | |
112 | $eq = urlencode('='); | |
113 | foreach ($parts as $key=>$part) { | |
114 | $part = urlencode(urldecode($part)); | |
115 | $part = str_replace($eq, '=', $part); | |
116 | $parts[$key] = $part; | |
117 | } | |
118 | $query = '?'.implode('&', $parts); | |
119 | } | |
120 | ||
121 | return $script.$query; | |
600149be | 122 | } |
123 | ||
92890025 | 124 | |
c215b32b | 125 | function build_mnet_logs_array($hostid, $course, $user=0, $date=0, $order="l.time ASC", $limitfrom='', $limitnum='', |
126 | $modname="", $modid=0, $modaction="", $groupid=0) { | |
cb6fec1f | 127 | global $CFG, $DB; |
c215b32b | 128 | |
129 | // It is assumed that $date is the GMT time of midnight for that day, | |
130 | // and so the next 86400 seconds worth of logs are printed. | |
131 | ||
132 | /// Setup for group handling. | |
238c0dd9 | 133 | |
134 | // TODO: I don't understand group/context/etc. enough to be able to do | |
c215b32b | 135 | // something interesting with it here |
136 | // What is the context of a remote course? | |
238c0dd9 | 137 | |
c215b32b | 138 | /// If the group mode is separate, and this user does not have editing privileges, |
139 | /// then only the user's group can be viewed. | |
140 | //if ($course->groupmode == SEPARATEGROUPS and !has_capability('moodle/course:managegroups', get_context_instance(CONTEXT_COURSE, $course->id))) { | |
141 | // $groupid = get_current_group($course->id); | |
142 | //} | |
143 | /// If this course doesn't have groups, no groupid can be specified. | |
144 | //else if (!$course->groupmode) { | |
145 | // $groupid = 0; | |
146 | //} | |
cb6fec1f | 147 | |
148 | $ILIKE = $DB->sql_ilike(); | |
149 | ||
c215b32b | 150 | $groupid = 0; |
151 | ||
152 | $joins = array(); | |
153 | ||
cb6fec1f | 154 | $qry = "SELECT l.*, u.firstname, u.lastname, u.picture |
155 | FROM {mnet_log} l | |
156 | LEFT JOIN {user} u ON l.userid = u.id | |
157 | WHERE "; | |
158 | $params = array(); | |
159 | ||
160 | $where .= "l.hostid = :hostid"; | |
161 | $params['hostid'] = $hostid; | |
c215b32b | 162 | |
163 | // TODO: Is 1 really a magic number referring to the sitename? | |
cb6fec1f | 164 | if ($course != SITEID || $modid != 0) { |
165 | $where .= " AND l.course=:courseid"; | |
166 | $params['courseid'] = $course; | |
c215b32b | 167 | } |
168 | ||
169 | if ($modname) { | |
cb6fec1f | 170 | $where .= " AND l.module = :modname"; |
171 | $params['modname'] = $modname; | |
c215b32b | 172 | } |
173 | ||
174 | if ('site_errors' === $modid) { | |
cb6fec1f | 175 | $where .= " AND ( l.action='error' OR l.action='infected' )"; |
c215b32b | 176 | } else if ($modid) { |
238c0dd9 | 177 | //TODO: This assumes that modids are the same across sites... probably |
c215b32b | 178 | //not true |
cb6fec1f | 179 | $where .= " AND l.cmid = :modid"; |
180 | $params['modid'] = $modid; | |
c215b32b | 181 | } |
182 | ||
183 | if ($modaction) { | |
184 | $firstletter = substr($modaction, 0, 1); | |
c659559f | 185 | if (preg_match('/[[:alpha:]]/', $firstletter)) { |
cb6fec1f | 186 | $where .= " AND lower(l.action) $ILIKE :modaction"; |
187 | $params['modaction'] = "%$modaction%"; | |
c215b32b | 188 | } else if ($firstletter == '-') { |
cb6fec1f | 189 | $where .= " AND lower(l.action) NOT $ILIKE :modaction"; |
190 | $params['modaction'] = "%$modaction%"; | |
c215b32b | 191 | } |
192 | } | |
193 | ||
194 | if ($user) { | |
cb6fec1f | 195 | $where .= " AND l.userid = :user"; |
196 | $params['user'] = $user; | |
c215b32b | 197 | } |
198 | ||
199 | if ($date) { | |
200 | $enddate = $date + 86400; | |
cb6fec1f | 201 | $where .= " AND l.time > :date AND l.time < :enddate"; |
202 | $params['date'] = $date; | |
203 | $params['enddate'] = $enddate; | |
c215b32b | 204 | } |
205 | ||
206 | $result = array(); | |
cb6fec1f | 207 | $result['totalcount'] = $DB->count_records_sql("SELECT COUNT('x') FROM {mnet_log} l WHERE $where", $params); |
c215b32b | 208 | if(!empty($result['totalcount'])) { |
cb6fec1f | 209 | $where .= " ORDER BY $order"; |
210 | $result['logs'] = $DB->get_records_sql("$qry $where", $params, $limitfrom, $limitnum); | |
c215b32b | 211 | } else { |
212 | $result['logs'] = array(); | |
213 | } | |
214 | return $result; | |
215 | } | |
216 | ||
92890025 | 217 | function build_logs_array($course, $user=0, $date=0, $order="l.time ASC", $limitfrom='', $limitnum='', |
218 | $modname="", $modid=0, $modaction="", $groupid=0) { | |
928d4738 | 219 | global $DB, $SESSION; |
e0161bff | 220 | // It is assumed that $date is the GMT time of midnight for that day, |
221 | // and so the next 86400 seconds worth of logs are printed. | |
f9903ed0 | 222 | |
69c76405 | 223 | /// Setup for group handling. |
264867fd | 224 | |
69c76405 | 225 | /// If the group mode is separate, and this user does not have editing privileges, |
226 | /// then only the user's group can be viewed. | |
3924b988 | 227 | if ($course->groupmode == SEPARATEGROUPS and !has_capability('moodle/course:managegroups', get_context_instance(CONTEXT_COURSE, $course->id))) { |
928d4738 | 228 | if (isset($SESSION->currentgroup[$course->id])) { |
229 | $groupid = $SESSION->currentgroup[$course->id]; | |
230 | } else { | |
231 | $groupid = groups_get_all_groups($course->id, $USER->id); | |
232 | if (is_array($groupid)) { | |
233 | $groupid = array_shift(array_keys($groupid)); | |
234 | $SESSION->currentgroup[$course->id] = $groupid; | |
235 | } else { | |
236 | $groupid = 0; | |
237 | } | |
238 | } | |
69c76405 | 239 | } |
240 | /// If this course doesn't have groups, no groupid can be specified. | |
241 | else if (!$course->groupmode) { | |
242 | $groupid = 0; | |
243 | } | |
244 | ||
e0161bff | 245 | $joins = array(); |
c3df0901 | 246 | $oarams = array(); |
a2ab3b05 | 247 | |
e15ef260 | 248 | if ($course->id != SITEID || $modid != 0) { |
c3df0901 | 249 | $joins[] = "l.course = :courseid"; |
250 | $params['courseid'] = $course->id; | |
e15ef260 | 251 | } |
f9903ed0 | 252 | |
c469a7ef | 253 | if ($modname) { |
c3df0901 | 254 | $joins[] = "l.module = :modname"; |
238c0dd9 | 255 | $params['modname'] = $modname; |
f24cffb9 | 256 | } |
257 | ||
e21922f0 | 258 | if ('site_errors' === $modid) { |
bf35eb15 | 259 | $joins[] = "( l.action='error' OR l.action='infected' )"; |
e21922f0 | 260 | } else if ($modid) { |
c3df0901 | 261 | $joins[] = "l.cmid = :modid"; |
262 | $params['modid'] = $modid; | |
69d79bc3 | 263 | } |
264 | ||
265 | if ($modaction) { | |
c3df0901 | 266 | $ILIKE = $DB->sql_ilike(); |
ee35e0b8 | 267 | $firstletter = substr($modaction, 0, 1); |
c659559f | 268 | if (preg_match('/[[:alpha:]]/', $firstletter)) { |
c3df0901 | 269 | $joins[] = "l.action $ILIKE :modaction"; |
270 | $params['modaction'] = '%'.$modaction.'%'; | |
ee35e0b8 | 271 | } else if ($firstletter == '-') { |
c3df0901 | 272 | $joins[] = "l.action NOT $ILIKE :modaction"; |
273 | $params['modaction'] = '%'.substr($modaction, 1).'%'; | |
ee35e0b8 | 274 | } |
f24cffb9 | 275 | } |
276 | ||
238c0dd9 | 277 | |
69c76405 | 278 | /// Getting all members of a group. |
279 | if ($groupid and !$user) { | |
62d63838 | 280 | if ($gusers = groups_get_members($groupid)) { |
281 | $gusers = array_keys($gusers); | |
1e95d7b7 | 282 | $joins[] = 'l.userid IN (' . implode(',', $gusers) . ')'; |
283 | } else { | |
05a33439 | 284 | $joins[] = 'l.userid = 0'; // No users in groups, so we want something that will always be false. |
69c76405 | 285 | } |
286 | } | |
287 | else if ($user) { | |
c3df0901 | 288 | $joins[] = "l.userid = :userid"; |
289 | $params['userid'] = $user; | |
f9903ed0 | 290 | } |
291 | ||
292 | if ($date) { | |
293 | $enddate = $date + 86400; | |
c3df0901 | 294 | $joins[] = "l.time > :date AND l.time < :enddate"; |
295 | $params['date'] = $date; | |
296 | $params['enddate'] = $enddate; | |
f9903ed0 | 297 | } |
298 | ||
1e95d7b7 | 299 | $selector = implode(' AND ', $joins); |
e0161bff | 300 | |
d09f3c80 | 301 | $totalcount = 0; // Initialise |
92890025 | 302 | $result = array(); |
c3df0901 | 303 | $result['logs'] = get_logs($selector, $params, $order, $limitfrom, $limitnum, $totalcount); |
92890025 | 304 | $result['totalcount'] = $totalcount; |
305 | return $result; | |
306 | } | |
264867fd | 307 | |
308 | ||
92890025 | 309 | function print_log($course, $user=0, $date=0, $order="l.time ASC", $page=0, $perpage=100, |
310 | $url="", $modname="", $modid=0, $modaction="", $groupid=0) { | |
264867fd | 311 | |
d60c1124 | 312 | global $CFG, $DB, $OUTPUT; |
264867fd | 313 | |
92890025 | 314 | if (!$logs = build_logs_array($course, $user, $date, $order, $page*$perpage, $perpage, |
315 | $modname, $modid, $modaction, $groupid)) { | |
e6db3026 | 316 | echo $OUTPUT->notification("No logs found!"); |
d60c1124 | 317 | echo $OUTPUT->footer(); |
f9903ed0 | 318 | exit; |
319 | } | |
264867fd | 320 | |
ea49a66c | 321 | $courses = array(); |
322 | ||
92890025 | 323 | if ($course->id == SITEID) { |
324 | $courses[0] = ''; | |
bf221aca | 325 | if ($ccc = get_courses('all', 'c.id ASC', 'c.id,c.shortname')) { |
92890025 | 326 | foreach ($ccc as $cc) { |
bf221aca | 327 | $courses[$cc->id] = $cc->shortname; |
92890025 | 328 | } |
329 | } | |
ea49a66c | 330 | } else { |
bf221aca | 331 | $courses[$course->id] = $course->shortname; |
92890025 | 332 | } |
264867fd | 333 | |
92890025 | 334 | $totalcount = $logs['totalcount']; |
f9903ed0 | 335 | $count=0; |
2eb68e6f | 336 | $ldcache = array(); |
f9903ed0 | 337 | $tt = getdate(time()); |
338 | $today = mktime (0, 0, 0, $tt["mon"], $tt["mday"], $tt["year"]); | |
1c0200e0 | 339 | |
dcde9f02 | 340 | $strftimedatetime = get_string("strftimedatetime"); |
341 | ||
5577ceb3 | 342 | echo "<div class=\"info\">\n"; |
519d369f | 343 | print_string("displayingrecords", "", $totalcount); |
5577ceb3 | 344 | echo "</div>\n"; |
1c0200e0 | 345 | |
929d7a83 | 346 | echo $OUTPUT->paging_bar($totalcount, $page, $perpage, "$url&perpage=$perpage"); |
519d369f | 347 | |
337203a4 | 348 | $table = new html_table(); |
90723839 | 349 | $table->classes = array('logtable','generalbox'); |
337203a4 SH |
350 | $table->align = array('right', 'left', 'left'); |
351 | $table->head = array( | |
352 | get_string('time'), | |
353 | get_string('ip_address'), | |
354 | get_string('fullnamecourse'), | |
355 | get_string('action'), | |
356 | get_string('info') | |
357 | ); | |
358 | $table->data = array(); | |
359 | ||
1548978d | 360 | if ($course->id == SITEID) { |
337203a4 SH |
361 | array_unshift($table->align, 'left'); |
362 | array_unshift($table->head, get_string('course')); | |
1548978d | 363 | } |
1548978d | 364 | |
1e95d7b7 | 365 | // Make sure that the logs array is an array, even it is empty, to avoid warnings from the foreach. |
2b2d182a | 366 | if (empty($logs['logs'])) { |
1e95d7b7 | 367 | $logs['logs'] = array(); |
2b2d182a | 368 | } |
238c0dd9 | 369 | |
92890025 | 370 | foreach ($logs['logs'] as $log) { |
600149be | 371 | |
2eb68e6f | 372 | if (isset($ldcache[$log->module][$log->action])) { |
373 | $ld = $ldcache[$log->module][$log->action]; | |
374 | } else { | |
cb6fec1f | 375 | $ld = $DB->get_record('log_display', array('module'=>$log->module, 'action'=>$log->action)); |
2eb68e6f | 376 | $ldcache[$log->module][$log->action] = $ld; |
377 | } | |
edf3ef00 | 378 | if ($ld && is_numeric($log->info)) { |
181b888e | 379 | // ugly hack to make sure fullname is shown correctly |
337203a4 | 380 | if ($ld->mtable == 'user' && $ld->field == $DB->sql_concat('firstname', "' '" , 'lastname')) { |
cb6fec1f | 381 | $log->info = fullname($DB->get_record($ld->mtable, array('id'=>$log->info)), true); |
181b888e | 382 | } else { |
cb6fec1f | 383 | $log->info = $DB->get_field($ld->mtable, $ld->field, array('id'=>$log->info)); |
181b888e | 384 | } |
600149be | 385 | } |
386 | ||
264867fd | 387 | //Filter log->info |
c8b0a50b | 388 | $log->info = format_string($log->info); |
389 | ||
6c5a2108 | 390 | // If $log->url has been trimmed short by the db size restriction |
391 | // code in add_to_log, keep a note so we don't add a link to a broken url | |
392 | $tl=textlib_get_instance(); | |
393 | $brokenurl=($tl->strlen($log->url)==100 && $tl->substr($log->url,97)=='...'); | |
394 | ||
337203a4 | 395 | $row = array(); |
1548978d | 396 | if ($course->id == SITEID) { |
bd5d0ce5 | 397 | if (empty($log->course)) { |
337203a4 | 398 | $row[] = get_string('site'); |
bd5d0ce5 | 399 | } else { |
337203a4 | 400 | $row[] = "<a href=\"{$CFG->wwwroot}/course/view.php?id={$log->course}\">". format_string($courses[$log->course])."</a>"; |
bd5d0ce5 | 401 | } |
720a43ce | 402 | } |
337203a4 SH |
403 | |
404 | $row[] = userdate($log->time, '%a').' '.userdate($log->time, $strftimedatetime); | |
405 | ||
75015e5f PS |
406 | $link = new moodle_url("/iplookup/index.php?ip=$log->ip&user=$log->userid"); |
407 | $row[] = $OUTPUT->action_link($link, $log->ip, new popup_action('click', $link, 'iplookup', array('height' => 440, 'width' => 700))); | |
337203a4 | 408 | |
c63923bd | 409 | $row[] = html_writer::link(new moodle_url("/user/view.php?id={$log->userid}&course={$log->course}"), fullname($log, has_capability('moodle/site:viewfullnames', get_context_instance(CONTEXT_COURSE, $course->id)))); |
337203a4 | 410 | |
6c5a2108 | 411 | $displayaction="$log->module $log->action"; |
337203a4 SH |
412 | if ($brokenurl) { |
413 | $row[] = $displayaction; | |
6c5a2108 | 414 | } else { |
75015e5f PS |
415 | $link = make_log_url($log->module,$log->url); |
416 | $row[] = $OUTPUT->action_link($link, $displayaction, new popup_action('click', $link, 'fromloglive'), array('height' => 440, 'width' => 700)); | |
6c5a2108 | 417 | } |
337203a4 | 418 | $row[] = $log->info; |
755ee6d8 | 419 | $table->data[] = $row; |
f9903ed0 | 420 | } |
519d369f | 421 | |
16be8974 | 422 | echo html_writer::table($table); |
929d7a83 | 423 | echo $OUTPUT->paging_bar($totalcount, $page, $perpage, "$url&perpage=$perpage"); |
f9903ed0 | 424 | } |
425 | ||
426 | ||
c215b32b | 427 | function print_mnet_log($hostid, $course, $user=0, $date=0, $order="l.time ASC", $page=0, $perpage=100, |
428 | $url="", $modname="", $modid=0, $modaction="", $groupid=0) { | |
238c0dd9 | 429 | |
d60c1124 | 430 | global $CFG, $DB, $OUTPUT; |
238c0dd9 | 431 | |
c215b32b | 432 | if (!$logs = build_mnet_logs_array($hostid, $course, $user, $date, $order, $page*$perpage, $perpage, |
433 | $modname, $modid, $modaction, $groupid)) { | |
e6db3026 | 434 | echo $OUTPUT->notification("No logs found!"); |
d60c1124 | 435 | echo $OUTPUT->footer(); |
c215b32b | 436 | exit; |
437 | } | |
238c0dd9 | 438 | |
c215b32b | 439 | if ($course->id == SITEID) { |
440 | $courses[0] = ''; | |
441 | if ($ccc = get_courses('all', 'c.id ASC', 'c.id,c.shortname,c.visible')) { | |
442 | foreach ($ccc as $cc) { | |
443 | $courses[$cc->id] = $cc->shortname; | |
444 | } | |
445 | } | |
446 | } | |
238c0dd9 | 447 | |
c215b32b | 448 | $totalcount = $logs['totalcount']; |
449 | $count=0; | |
450 | $ldcache = array(); | |
451 | $tt = getdate(time()); | |
452 | $today = mktime (0, 0, 0, $tt["mon"], $tt["mday"], $tt["year"]); | |
453 | ||
454 | $strftimedatetime = get_string("strftimedatetime"); | |
455 | ||
5577ceb3 | 456 | echo "<div class=\"info\">\n"; |
c215b32b | 457 | print_string("displayingrecords", "", $totalcount); |
5577ceb3 | 458 | echo "</div>\n"; |
c215b32b | 459 | |
929d7a83 | 460 | echo $OUTPUT->paging_bar($totalcount, $page, $perpage, "$url&perpage=$perpage"); |
c215b32b | 461 | |
5577ceb3 | 462 | echo "<table class=\"logtable\" cellpadding=\"3\" cellspacing=\"0\">\n"; |
c215b32b | 463 | echo "<tr>"; |
464 | if ($course->id == SITEID) { | |
465 | echo "<th class=\"c0 header\">".get_string('course')."</th>\n"; | |
466 | } | |
467 | echo "<th class=\"c1 header\">".get_string('time')."</th>\n"; | |
468 | echo "<th class=\"c2 header\">".get_string('ip_address')."</th>\n"; | |
d6cc2341 | 469 | echo "<th class=\"c3 header\">".get_string('fullnamecourse')."</th>\n"; |
c215b32b | 470 | echo "<th class=\"c4 header\">".get_string('action')."</th>\n"; |
471 | echo "<th class=\"c5 header\">".get_string('info')."</th>\n"; | |
472 | echo "</tr>\n"; | |
473 | ||
474 | if (empty($logs['logs'])) { | |
475 | echo "</table>\n"; | |
476 | return; | |
477 | } | |
478 | ||
479 | $row = 1; | |
480 | foreach ($logs['logs'] as $log) { | |
238c0dd9 | 481 | |
c215b32b | 482 | $log->info = $log->coursename; |
483 | $row = ($row + 1) % 2; | |
484 | ||
485 | if (isset($ldcache[$log->module][$log->action])) { | |
486 | $ld = $ldcache[$log->module][$log->action]; | |
487 | } else { | |
6bb08163 | 488 | $ld = $DB->get_record('log_display', array('module'=>$log->module, 'action'=>$log->action)); |
c215b32b | 489 | $ldcache[$log->module][$log->action] = $ld; |
490 | } | |
491 | if (0 && $ld && !empty($log->info)) { | |
492 | // ugly hack to make sure fullname is shown correctly | |
cb6fec1f | 493 | if (($ld->mtable == 'user') and ($ld->field == $DB->sql_concat('firstname', "' '" , 'lastname'))) { |
494 | $log->info = fullname($DB->get_record($ld->mtable, array('id'=>$log->info)), true); | |
c215b32b | 495 | } else { |
cb6fec1f | 496 | $log->info = $DB->get_field($ld->mtable, $ld->field, array('id'=>$log->info)); |
c215b32b | 497 | } |
498 | } | |
499 | ||
238c0dd9 | 500 | //Filter log->info |
c215b32b | 501 | $log->info = format_string($log->info); |
502 | ||
c215b32b | 503 | echo '<tr class="r'.$row.'">'; |
504 | if ($course->id == SITEID) { | |
5577ceb3 | 505 | echo "<td class=\"r$row c0\" >\n"; |
c215b32b | 506 | echo " <a href=\"{$CFG->wwwroot}/course/view.php?id={$log->course}\">".$courses[$log->course]."</a>\n"; |
507 | echo "</td>\n"; | |
508 | } | |
5577ceb3 | 509 | echo "<td class=\"r$row c1\" align=\"right\">".userdate($log->time, '%a'). |
c215b32b | 510 | ' '.userdate($log->time, $strftimedatetime)."</td>\n"; |
5577ceb3 | 511 | echo "<td class=\"r$row c2\" >\n"; |
75015e5f PS |
512 | $link = new moodle_url("/iplookup/index.php?ip=$log->ip&user=$log->userid"); |
513 | echo $OUTPUT->action_link($link, $log->ip, new popup_action('click', $link, 'iplookup', array('height' => 400, 'width' => 700))); | |
c215b32b | 514 | echo "</td>\n"; |
515 | $fullname = fullname($log, has_capability('moodle/site:viewfullnames', get_context_instance(CONTEXT_COURSE, $course->id))); | |
5577ceb3 | 516 | echo "<td class=\"r$row c3\" >\n"; |
c215b32b | 517 | echo " <a href=\"$CFG->wwwroot/user/view.php?id={$log->userid}\">$fullname</a>\n"; |
518 | echo "</td>\n"; | |
5577ceb3 | 519 | echo "<td class=\"r$row c4\">\n"; |
c215b32b | 520 | echo $log->action .': '.$log->module; |
521 | echo "</td>\n";; | |
5577ceb3 | 522 | echo "<td class=\"r$row c5\">{$log->info}</td>\n"; |
c215b32b | 523 | echo "</tr>\n"; |
524 | } | |
525 | echo "</table>\n"; | |
526 | ||
929d7a83 | 527 | echo $OUTPUT->paging_bar($totalcount, $page, $perpage, "$url&perpage=$perpage"); |
c215b32b | 528 | } |
529 | ||
530 | ||
92890025 | 531 | function print_log_csv($course, $user, $date, $order='l.time DESC', $modname, |
532 | $modid, $modaction, $groupid) { | |
cb6fec1f | 533 | global $DB; |
4068bedb | 534 | |
954fdb42 | 535 | $text = get_string('course')."\t".get_string('time')."\t".get_string('ip_address')."\t". |
d6cc2341 | 536 | get_string('fullnamecourse')."\t".get_string('action')."\t".get_string('info'); |
264867fd | 537 | |
954fdb42 | 538 | if (!$logs = build_logs_array($course, $user, $date, $order, '', '', |
92890025 | 539 | $modname, $modid, $modaction, $groupid)) { |
540 | return false; | |
541 | } | |
264867fd | 542 | |
ea49a66c | 543 | $courses = array(); |
544 | ||
92890025 | 545 | if ($course->id == SITEID) { |
546 | $courses[0] = ''; | |
547 | if ($ccc = get_courses('all', 'c.id ASC', 'c.id,c.shortname')) { | |
548 | foreach ($ccc as $cc) { | |
549 | $courses[$cc->id] = $cc->shortname; | |
550 | } | |
551 | } | |
ea49a66c | 552 | } else { |
553 | $courses[$course->id] = $course->shortname; | |
92890025 | 554 | } |
264867fd | 555 | |
92890025 | 556 | $count=0; |
557 | $ldcache = array(); | |
558 | $tt = getdate(time()); | |
559 | $today = mktime (0, 0, 0, $tt["mon"], $tt["mday"], $tt["year"]); | |
560 | ||
561 | $strftimedatetime = get_string("strftimedatetime"); | |
92890025 | 562 | |
4248b15c | 563 | $filename = 'logs_'.userdate(time(),get_string('backupnameformat', 'langconfig'),99,false); |
954fdb42 | 564 | $filename .= '.txt'; |
264867fd | 565 | header("Content-Type: application/download\n"); |
954fdb42 | 566 | header("Content-Disposition: attachment; filename=$filename"); |
567 | header("Expires: 0"); | |
568 | header("Cache-Control: must-revalidate,post-check=0,pre-check=0"); | |
569 | header("Pragma: public"); | |
570 | ||
571 | echo get_string('savedat').userdate(time(), $strftimedatetime)."\n"; | |
572 | echo $text; | |
573 | ||
2b2d182a | 574 | if (empty($logs['logs'])) { |
575 | return true; | |
576 | } | |
577 | ||
954fdb42 | 578 | foreach ($logs['logs'] as $log) { |
579 | if (isset($ldcache[$log->module][$log->action])) { | |
580 | $ld = $ldcache[$log->module][$log->action]; | |
581 | } else { | |
6bb08163 | 582 | $ld = $DB->get_record('log_display', array('module'=>$log->module, 'action'=>$log->action)); |
954fdb42 | 583 | $ldcache[$log->module][$log->action] = $ld; |
584 | } | |
585 | if ($ld && !empty($log->info)) { | |
586 | // ugly hack to make sure fullname is shown correctly | |
cb6fec1f | 587 | if (($ld->mtable == 'user') and ($ld->field == $DB->sql_concat('firstname', "' '" , 'lastname'))) { |
588 | $log->info = fullname($DB->get_record($ld->mtable, array('id'=>$log->info)), true); | |
954fdb42 | 589 | } else { |
cb6fec1f | 590 | $log->info = $DB->get_field($ld->mtable, $ld->field, array('id'=>$log->info)); |
954fdb42 | 591 | } |
592 | } | |
593 | ||
264867fd | 594 | //Filter log->info |
954fdb42 | 595 | $log->info = format_string($log->info); |
954fdb42 | 596 | $log->info = strip_tags(urldecode($log->info)); // Some XSS protection |
954fdb42 | 597 | |
598 | $firstField = $courses[$log->course]; | |
1c45e42e | 599 | $fullname = fullname($log, has_capability('moodle/site:viewfullnames', get_context_instance(CONTEXT_COURSE, $course->id))); |
954fdb42 | 600 | $row = array($firstField, userdate($log->time, $strftimedatetime), $log->ip, $fullname, $log->module.' '.$log->action, $log->info); |
601 | $text = implode("\t", $row); | |
602 | echo $text." \n"; | |
603 | } | |
604 | return true; | |
92890025 | 605 | } |
606 | ||
607 | ||
608 | function print_log_xls($course, $user, $date, $order='l.time DESC', $modname, | |
609 | $modid, $modaction, $groupid) { | |
264867fd | 610 | |
cb6fec1f | 611 | global $CFG, $DB; |
92890025 | 612 | |
954fdb42 | 613 | require_once("$CFG->libdir/excellib.class.php"); |
264867fd | 614 | |
954fdb42 | 615 | if (!$logs = build_logs_array($course, $user, $date, $order, '', '', |
92890025 | 616 | $modname, $modid, $modaction, $groupid)) { |
617 | return false; | |
618 | } | |
264867fd | 619 | |
ea49a66c | 620 | $courses = array(); |
621 | ||
92890025 | 622 | if ($course->id == SITEID) { |
623 | $courses[0] = ''; | |
624 | if ($ccc = get_courses('all', 'c.id ASC', 'c.id,c.shortname')) { | |
625 | foreach ($ccc as $cc) { | |
626 | $courses[$cc->id] = $cc->shortname; | |
627 | } | |
628 | } | |
ea49a66c | 629 | } else { |
630 | $courses[$course->id] = $course->shortname; | |
92890025 | 631 | } |
264867fd | 632 | |
92890025 | 633 | $count=0; |
634 | $ldcache = array(); | |
635 | $tt = getdate(time()); | |
636 | $today = mktime (0, 0, 0, $tt["mon"], $tt["mday"], $tt["year"]); | |
637 | ||
638 | $strftimedatetime = get_string("strftimedatetime"); | |
92890025 | 639 | |
954fdb42 | 640 | $nroPages = ceil(count($logs)/(EXCELROWS-FIRSTUSEDEXCELROW+1)); |
4248b15c | 641 | $filename = 'logs_'.userdate(time(),get_string('backupnameformat', 'langconfig'),99,false); |
954fdb42 | 642 | $filename .= '.xls'; |
264867fd | 643 | |
92890025 | 644 | $workbook = new MoodleExcelWorkbook('-'); |
645 | $workbook->send($filename); | |
264867fd | 646 | |
954fdb42 | 647 | $worksheet = array(); |
648 | $headers = array(get_string('course'), get_string('time'), get_string('ip_address'), | |
d6cc2341 | 649 | get_string('fullnamecourse'), get_string('action'), get_string('info')); |
264867fd | 650 | |
954fdb42 | 651 | // Creating worksheets |
652 | for ($wsnumber = 1; $wsnumber <= $nroPages; $wsnumber++) { | |
0a013367 | 653 | $sheettitle = get_string('logs').' '.$wsnumber.'-'.$nroPages; |
954fdb42 | 654 | $worksheet[$wsnumber] =& $workbook->add_worksheet($sheettitle); |
655 | $worksheet[$wsnumber]->set_column(1, 1, 30); | |
656 | $worksheet[$wsnumber]->write_string(0, 0, get_string('savedat'). | |
657 | userdate(time(), $strftimedatetime)); | |
658 | $col = 0; | |
659 | foreach ($headers as $item) { | |
660 | $worksheet[$wsnumber]->write(FIRSTUSEDEXCELROW-1,$col,$item,''); | |
661 | $col++; | |
662 | } | |
663 | } | |
664 | ||
2b2d182a | 665 | if (empty($logs['logs'])) { |
666 | $workbook->close(); | |
667 | return true; | |
668 | } | |
669 | ||
954fdb42 | 670 | $formatDate =& $workbook->add_format(); |
671 | $formatDate->set_num_format(get_string('log_excel_date_format')); | |
672 | ||
673 | $row = FIRSTUSEDEXCELROW; | |
674 | $wsnumber = 1; | |
675 | $myxls =& $worksheet[$wsnumber]; | |
676 | foreach ($logs['logs'] as $log) { | |
677 | if (isset($ldcache[$log->module][$log->action])) { | |
678 | $ld = $ldcache[$log->module][$log->action]; | |
679 | } else { | |
cb6fec1f | 680 | $ld = $DB->get_record('log_display', array('module'=>$log->module, 'action'=>$log->action)); |
954fdb42 | 681 | $ldcache[$log->module][$log->action] = $ld; |
682 | } | |
683 | if ($ld && !empty($log->info)) { | |
684 | // ugly hack to make sure fullname is shown correctly | |
cb6fec1f | 685 | if (($ld->mtable == 'user') and ($ld->field == $DB->sql_concat('firstname', "' '" , 'lastname'))) { |
686 | $log->info = fullname($DB->get_record($ld->mtable, array('id'=>$log->info)), true); | |
954fdb42 | 687 | } else { |
cb6fec1f | 688 | $log->info = $DB->get_field($ld->mtable, $ld->field, array('id'=>$log->info)); |
954fdb42 | 689 | } |
690 | } | |
691 | ||
692 | // Filter log->info | |
693 | $log->info = format_string($log->info); | |
694 | $log->info = strip_tags(urldecode($log->info)); // Some XSS protection | |
695 | ||
696 | if ($nroPages>1) { | |
697 | if ($row > EXCELROWS) { | |
698 | $wsnumber++; | |
699 | $myxls =& $worksheet[$wsnumber]; | |
700 | $row = FIRSTUSEDEXCELROW; | |
701 | } | |
702 | } | |
264867fd | 703 | |
954fdb42 | 704 | $myxls->write($row, 0, $courses[$log->course], ''); |
5c34c4ba | 705 | $myxls->write_date($row, 1, $log->time, $formatDate); // write_date() does conversion/timezone support. MDL-14934 |
954fdb42 | 706 | $myxls->write($row, 2, $log->ip, ''); |
1c45e42e | 707 | $fullname = fullname($log, has_capability('moodle/site:viewfullnames', get_context_instance(CONTEXT_COURSE, $course->id))); |
954fdb42 | 708 | $myxls->write($row, 3, $fullname, ''); |
709 | $myxls->write($row, 4, $log->module.' '.$log->action, ''); | |
710 | $myxls->write($row, 5, $log->info, ''); | |
264867fd | 711 | |
954fdb42 | 712 | $row++; |
713 | } | |
714 | ||
715 | $workbook->close(); | |
ea49a66c | 716 | return true; |
717 | } | |
718 | ||
719 | function print_log_ods($course, $user, $date, $order='l.time DESC', $modname, | |
720 | $modid, $modaction, $groupid) { | |
721 | ||
cb6fec1f | 722 | global $CFG, $DB; |
ea49a66c | 723 | |
724 | require_once("$CFG->libdir/odslib.class.php"); | |
725 | ||
726 | if (!$logs = build_logs_array($course, $user, $date, $order, '', '', | |
727 | $modname, $modid, $modaction, $groupid)) { | |
728 | return false; | |
729 | } | |
730 | ||
731 | $courses = array(); | |
732 | ||
733 | if ($course->id == SITEID) { | |
734 | $courses[0] = ''; | |
735 | if ($ccc = get_courses('all', 'c.id ASC', 'c.id,c.shortname')) { | |
736 | foreach ($ccc as $cc) { | |
737 | $courses[$cc->id] = $cc->shortname; | |
738 | } | |
739 | } | |
740 | } else { | |
741 | $courses[$course->id] = $course->shortname; | |
742 | } | |
743 | ||
744 | $count=0; | |
745 | $ldcache = array(); | |
746 | $tt = getdate(time()); | |
747 | $today = mktime (0, 0, 0, $tt["mon"], $tt["mday"], $tt["year"]); | |
748 | ||
749 | $strftimedatetime = get_string("strftimedatetime"); | |
750 | ||
751 | $nroPages = ceil(count($logs)/(EXCELROWS-FIRSTUSEDEXCELROW+1)); | |
4248b15c | 752 | $filename = 'logs_'.userdate(time(),get_string('backupnameformat', 'langconfig'),99,false); |
ea49a66c | 753 | $filename .= '.ods'; |
754 | ||
755 | $workbook = new MoodleODSWorkbook('-'); | |
756 | $workbook->send($filename); | |
757 | ||
758 | $worksheet = array(); | |
759 | $headers = array(get_string('course'), get_string('time'), get_string('ip_address'), | |
d6cc2341 | 760 | get_string('fullnamecourse'), get_string('action'), get_string('info')); |
ea49a66c | 761 | |
762 | // Creating worksheets | |
763 | for ($wsnumber = 1; $wsnumber <= $nroPages; $wsnumber++) { | |
0a013367 | 764 | $sheettitle = get_string('logs').' '.$wsnumber.'-'.$nroPages; |
ea49a66c | 765 | $worksheet[$wsnumber] =& $workbook->add_worksheet($sheettitle); |
766 | $worksheet[$wsnumber]->set_column(1, 1, 30); | |
767 | $worksheet[$wsnumber]->write_string(0, 0, get_string('savedat'). | |
768 | userdate(time(), $strftimedatetime)); | |
769 | $col = 0; | |
770 | foreach ($headers as $item) { | |
771 | $worksheet[$wsnumber]->write(FIRSTUSEDEXCELROW-1,$col,$item,''); | |
772 | $col++; | |
773 | } | |
774 | } | |
775 | ||
776 | if (empty($logs['logs'])) { | |
777 | $workbook->close(); | |
778 | return true; | |
779 | } | |
780 | ||
781 | $formatDate =& $workbook->add_format(); | |
782 | $formatDate->set_num_format(get_string('log_excel_date_format')); | |
783 | ||
784 | $row = FIRSTUSEDEXCELROW; | |
785 | $wsnumber = 1; | |
786 | $myxls =& $worksheet[$wsnumber]; | |
787 | foreach ($logs['logs'] as $log) { | |
788 | if (isset($ldcache[$log->module][$log->action])) { | |
789 | $ld = $ldcache[$log->module][$log->action]; | |
790 | } else { | |
cb6fec1f | 791 | $ld = $DB->get_record('log_display', array('module'=>$log->module, 'action'=>$log->action)); |
ea49a66c | 792 | $ldcache[$log->module][$log->action] = $ld; |
793 | } | |
794 | if ($ld && !empty($log->info)) { | |
795 | // ugly hack to make sure fullname is shown correctly | |
7e60297f | 796 | if (($ld->mtable == 'user') and ($ld->field == $DB->sql_concat('firstname', "' '" , 'lastname'))) { |
cb6fec1f | 797 | $log->info = fullname($DB->get_record($ld->mtable, array('id'=>$log->info)), true); |
ea49a66c | 798 | } else { |
cb6fec1f | 799 | $log->info = $DB->get_field($ld->mtable, $ld->field, array('id'=>$log->info)); |
ea49a66c | 800 | } |
801 | } | |
802 | ||
803 | // Filter log->info | |
804 | $log->info = format_string($log->info); | |
805 | $log->info = strip_tags(urldecode($log->info)); // Some XSS protection | |
806 | ||
807 | if ($nroPages>1) { | |
808 | if ($row > EXCELROWS) { | |
809 | $wsnumber++; | |
810 | $myxls =& $worksheet[$wsnumber]; | |
811 | $row = FIRSTUSEDEXCELROW; | |
812 | } | |
813 | } | |
814 | ||
d81b7ffb | 815 | $myxls->write_string($row, 0, $courses[$log->course]); |
816 | $myxls->write_date($row, 1, $log->time); | |
817 | $myxls->write_string($row, 2, $log->ip); | |
ea49a66c | 818 | $fullname = fullname($log, has_capability('moodle/site:viewfullnames', get_context_instance(CONTEXT_COURSE, $course->id))); |
d81b7ffb | 819 | $myxls->write_string($row, 3, $fullname); |
820 | $myxls->write_string($row, 4, $log->module.' '.$log->action); | |
821 | $myxls->write_string($row, 5, $log->info); | |
ea49a66c | 822 | |
823 | $row++; | |
824 | } | |
825 | ||
826 | $workbook->close(); | |
954fdb42 | 827 | return true; |
92890025 | 828 | } |
829 | ||
92890025 | 830 | |
c2cb4545 | 831 | function print_log_graph($course, $userid=0, $type="course.png", $date=0) { |
a683deec | 832 | global $CFG, $USER; |
c2cb4545 | 833 | if (empty($CFG->gdversion)) { |
834 | echo "(".get_string("gdneed").")"; | |
d887b5a7 | 835 | } else { |
a683deec | 836 | // MDL-10818, do not display broken graph when user has no permission to view graph |
a2e4bf7f | 837 | if (has_capability('coursereport/log:view', get_context_instance(CONTEXT_COURSE, $course->id)) || |
a683deec | 838 | ($course->showreports and $USER->id == $userid)) { |
839 | echo '<img src="'.$CFG->wwwroot.'/course/report/log/graph.php?id='.$course->id. | |
840 | '&user='.$userid.'&type='.$type.'&date='.$date.'" alt="" />'; | |
841 | } | |
d887b5a7 | 842 | } |
843 | } | |
844 | ||
845 | ||
185cfb09 | 846 | function print_overview($courses) { |
7c5286cd | 847 | global $CFG, $USER, $DB, $OUTPUT; |
0d6b9d4f | 848 | |
185cfb09 | 849 | $htmlarray = array(); |
6bb08163 | 850 | if ($modules = $DB->get_records('modules')) { |
f8716988 | 851 | foreach ($modules as $mod) { |
852 | if (file_exists(dirname(dirname(__FILE__)).'/mod/'.$mod->name.'/lib.php')) { | |
f461e8ec | 853 | include_once(dirname(dirname(__FILE__)).'/mod/'.$mod->name.'/lib.php'); |
f8716988 | 854 | $fname = $mod->name.'_print_overview'; |
0d6b9d4f | 855 | if (function_exists($fname)) { |
185cfb09 | 856 | $fname($courses,$htmlarray); |
0d6b9d4f | 857 | } |
858 | } | |
859 | } | |
860 | } | |
185cfb09 | 861 | foreach ($courses as $course) { |
e6db3026 | 862 | echo $OUTPUT->box_start("coursebox"); |
185cfb09 | 863 | $linkcss = ''; |
864 | if (empty($course->visible)) { | |
865 | $linkcss = 'class="dimmed"'; | |
866 | } | |
7c5286cd | 867 | echo $OUTPUT->heading('<a title="'. format_string($course->fullname).'" '.$linkcss.' href="'.$CFG->wwwroot.'/course/view.php?id='.$course->id.'">'. format_string($course->fullname).'</a>'); |
185cfb09 | 868 | if (array_key_exists($course->id,$htmlarray)) { |
869 | foreach ($htmlarray[$course->id] as $modname => $html) { | |
870 | echo $html; | |
871 | } | |
872 | } | |
e6db3026 | 873 | echo $OUTPUT->box_end(); |
185cfb09 | 874 | } |
0d6b9d4f | 875 | } |
876 | ||
877 | ||
cb6fec1f | 878 | /** |
879 | * This function trawls through the logs looking for | |
880 | * anything new since the user's last login | |
881 | */ | |
600149be | 882 | function print_recent_activity($course) { |
883 | // $course is an object | |
008350b5 | 884 | global $CFG, $USER, $SESSION, $DB, $OUTPUT; |
600149be | 885 | |
e2a3a0e7 | 886 | $context = get_context_instance(CONTEXT_COURSE, $course->id); |
2ac64806 | 887 | |
dd97c328 | 888 | $viewfullnames = has_capability('moodle/site:viewfullnames', $context); |
889 | ||
890 | $timestart = round(time() - COURSE_MAX_RECENT_PERIOD, -2); // better db caching for guests - 100 seconds | |
0f87cb1d | 891 | |
4f0c2d00 | 892 | if (!isguestuser()) { |
e2a3a0e7 | 893 | if (!empty($USER->lastcourseaccess[$course->id])) { |
894 | if ($USER->lastcourseaccess[$course->id] > $timestart) { | |
895 | $timestart = $USER->lastcourseaccess[$course->id]; | |
896 | } | |
9e51847a | 897 | } |
3d891989 | 898 | } |
0f87cb1d | 899 | |
de785682 | 900 | echo '<div class="activitydate">'; |
27bf9e20 | 901 | echo get_string('activitysince', '', userdate($timestart)); |
de785682 | 902 | echo '</div>'; |
903 | echo '<div class="activityhead">'; | |
0f87cb1d | 904 | |
de785682 | 905 | echo '<a href="'.$CFG->wwwroot.'/course/recent.php?id='.$course->id.'">'.get_string('recentactivityreport').'</a>'; |
0f87cb1d | 906 | |
5fc835a5 | 907 | echo "</div>\n"; |
0f87cb1d | 908 | |
600149be | 909 | $content = false; |
1b5910c4 | 910 | |
dd97c328 | 911 | /// Firstly, have there been any new enrolments? |
912 | ||
6c38b7e0 | 913 | $users = get_recent_enrolments($course->id, $timestart); |
1b5910c4 | 914 | |
5fc835a5 | 915 | //Accessibility: new users now appear in an <OL> list. |
6c38b7e0 | 916 | if ($users) { |
27bf9e20 | 917 | echo '<div class="newusers">'; |
008350b5 | 918 | echo $OUTPUT->heading(get_string("newusers").':', 3); |
dd97c328 | 919 | $content = true; |
5fc835a5 | 920 | echo "<ol class=\"list\">\n"; |
6c38b7e0 | 921 | foreach ($users as $user) { |
dd97c328 | 922 | $fullname = fullname($user, $viewfullnames); |
923 | echo '<li class="name"><a href="'."$CFG->wwwroot/user/view.php?id=$user->id&course=$course->id\">$fullname</a></li>\n"; | |
600149be | 924 | } |
5fc835a5 | 925 | echo "</ol>\n</div>\n"; |
600149be | 926 | } |
927 | ||
dd97c328 | 928 | /// Next, have there been any modifications to the course structure? |
929 | ||
930 | $modinfo =& get_fast_modinfo($course); | |
931 | ||
932 | $changelist = array(); | |
1b5910c4 | 933 | |
cb6fec1f | 934 | $logs = $DB->get_records_select('log', "time > ? AND course = ? AND |
935 | module = 'course' AND | |
936 | (action = 'add mod' OR action = 'update mod' OR action = 'delete mod')", | |
937 | array($timestart, $course->id), "id ASC"); | |
1b5910c4 | 938 | |
939 | if ($logs) { | |
dd97c328 | 940 | $actions = array('add mod', 'update mod', 'delete mod'); |
941 | $newgones = array(); // added and later deleted items | |
1b5910c4 | 942 | foreach ($logs as $key => $log) { |
dd97c328 | 943 | if (!in_array($log->action, $actions)) { |
944 | continue; | |
945 | } | |
27bf9e20 | 946 | $info = split(' ', $log->info); |
c9f6251e | 947 | |
dd97c328 | 948 | if ($info[0] == 'label') { // Labels are ignored in recent activity |
c9f6251e | 949 | continue; |
950 | } | |
951 | ||
dd97c328 | 952 | if (count($info) != 2) { |
953 | debugging("Incorrect log entry info: id = ".$log->id, DEBUG_DEVELOPER); | |
954 | continue; | |
955 | } | |
956 | ||
957 | $modname = $info[0]; | |
958 | $instanceid = $info[1]; | |
959 | ||
960 | if ($log->action == 'delete mod') { | |
961 | // unfortunately we do not know if the mod was visible | |
962 | if (!array_key_exists($log->info, $newgones)) { | |
963 | $strdeleted = get_string('deletedactivity', 'moodle', get_string('modulename', $modname)); | |
964 | $changelist[$log->info] = array ('operation' => 'delete', 'text' => $strdeleted); | |
965 | } | |
966 | } else { | |
967 | if (!isset($modinfo->instances[$modname][$instanceid])) { | |
968 | if ($log->action == 'add mod') { | |
969 | // do not display added and later deleted activities | |
970 | $newgones[$log->info] = true; | |
971 | } | |
972 | continue; | |
973 | } | |
974 | $cm = $modinfo->instances[$modname][$instanceid]; | |
975 | if (!$cm->uservisible) { | |
ff96219d | 976 | continue; |
dd97c328 | 977 | } |
978 | ||
979 | if ($log->action == 'add mod') { | |
980 | $stradded = get_string('added', 'moodle', get_string('modulename', $modname)); | |
981 | $changelist[$log->info] = array('operation' => 'add', 'text' => "$stradded:<br /><a href=\"$CFG->wwwroot/mod/$cm->modname/view.php?id={$cm->id}\">".format_string($cm->name, true)."</a>"); | |
982 | ||
983 | } else if ($log->action == 'update mod' and empty($changelist[$log->info])) { | |
984 | $strupdated = get_string('updated', 'moodle', get_string('modulename', $modname)); | |
985 | $changelist[$log->info] = array('operation' => 'update', 'text' => "$strupdated:<br /><a href=\"$CFG->wwwroot/mod/$cm->modname/view.php?id={$cm->id}\">".format_string($cm->name, true)."</a>"); | |
600149be | 986 | } |
ef25340c | 987 | } |
988 | } | |
989 | } | |
990 | ||
9c9f7d77 | 991 | if (!empty($changelist)) { |
008350b5 | 992 | echo $OUTPUT->heading(get_string("courseupdates").':', 3); |
dd97c328 | 993 | $content = true; |
ef25340c | 994 | foreach ($changelist as $changeinfo => $change) { |
dd97c328 | 995 | echo '<p class="activity">'.$change['text'].'</p>'; |
600149be | 996 | } |
89adb174 | 997 | } |
bf40f9c1 | 998 | |
dd97c328 | 999 | /// Now display new things from each module |
0fd7da81 | 1000 | |
dd97c328 | 1001 | $usedmodules = array(); |
1002 | foreach($modinfo->cms as $cm) { | |
1003 | if (isset($usedmodules[$cm->modname])) { | |
1004 | continue; | |
1005 | } | |
1006 | if (!$cm->uservisible) { | |
1007 | continue; | |
1008 | } | |
1009 | $usedmodules[$cm->modname] = $cm->modname; | |
1010 | } | |
e2a3a0e7 | 1011 | |
dd97c328 | 1012 | foreach ($usedmodules as $modname) { // Each module gets it's own logs and prints them |
1013 | if (file_exists($CFG->dirroot.'/mod/'.$modname.'/lib.php')) { | |
1014 | include_once($CFG->dirroot.'/mod/'.$modname.'/lib.php'); | |
1015 | $print_recent_activity = $modname.'_print_recent_activity'; | |
296c6ac2 | 1016 | if (function_exists($print_recent_activity)) { |
dd97c328 | 1017 | // NOTE: original $isteacher (second parameter below) was replaced with $viewfullnames! |
1018 | $content = $print_recent_activity($course, $viewfullnames, $timestart) || $content; | |
600149be | 1019 | } |
296c6ac2 | 1020 | } else { |
238c0dd9 | 1021 | debugging("Missing lib.php in lib/{$modname} - please reinstall files or uninstall the module"); |
600149be | 1022 | } |
1023 | } | |
1024 | ||
1025 | if (! $content) { | |
27bf9e20 | 1026 | echo '<p class="message">'.get_string('nothingnew').'</p>'; |
600149be | 1027 | } |
600149be | 1028 | } |
1029 | ||
cb6fec1f | 1030 | /** |
1031 | * For a given course, returns an array of course activity objects | |
1032 | * Each item in the array contains he following properties: | |
1033 | */ | |
d897cae4 | 1034 | function get_array_of_activities($courseid) { |
d897cae4 | 1035 | // cm - course module id |
1036 | // mod - name of the module (eg forum) | |
1037 | // section - the number of the section (eg week or topic) | |
1038 | // name - the name of the instance | |
5867bfb5 | 1039 | // visible - is the instance visible or not |
13534ef7 ML |
1040 | // groupingid - grouping id |
1041 | // groupmembersonly - is this instance visible to group members only | |
86aa7ccf | 1042 | // extra - contains extra string to include in any link |
cb6fec1f | 1043 | global $CFG, $DB; |
82bd6a5e | 1044 | if(!empty($CFG->enableavailability)) { |
1045 | require_once($CFG->libdir.'/conditionlib.php'); | |
1046 | } | |
8dddba42 | 1047 | |
a0c30e1b | 1048 | $course = $DB->get_record('course', array('id'=>$courseid)); |
1049 | ||
1050 | if (empty($course)) { | |
1051 | throw new moodle_exception('courseidnotfound'); | |
1052 | } | |
1053 | ||
d897cae4 | 1054 | $mod = array(); |
1055 | ||
a0c30e1b | 1056 | $rawmods = get_course_mods($courseid); |
1057 | if (empty($rawmods)) { | |
dd97c328 | 1058 | return $mod; // always return array |
d897cae4 | 1059 | } |
1060 | ||
cb6fec1f | 1061 | if ($sections = $DB->get_records("course_sections", array("course"=>$courseid), "section ASC")) { |
d897cae4 | 1062 | foreach ($sections as $section) { |
74666583 | 1063 | if (!empty($section->sequence)) { |
d897cae4 | 1064 | $sequence = explode(",", $section->sequence); |
1065 | foreach ($sequence as $seq) { | |
7af6281f | 1066 | if (empty($rawmods[$seq])) { |
1067 | continue; | |
1068 | } | |
dd97c328 | 1069 | $mod[$seq]->id = $rawmods[$seq]->instance; |
1070 | $mod[$seq]->cm = $rawmods[$seq]->id; | |
1071 | $mod[$seq]->mod = $rawmods[$seq]->modname; | |
1072 | $mod[$seq]->section = $section->section; | |
dd97c328 | 1073 | $mod[$seq]->visible = $rawmods[$seq]->visible; |
1074 | $mod[$seq]->groupmode = $rawmods[$seq]->groupmode; | |
1075 | $mod[$seq]->groupingid = $rawmods[$seq]->groupingid; | |
13534ef7 | 1076 | $mod[$seq]->groupmembersonly = $rawmods[$seq]->groupmembersonly; |
82bd6a5e | 1077 | $mod[$seq]->indent = $rawmods[$seq]->indent; |
1078 | $mod[$seq]->completion = $rawmods[$seq]->completion; | |
dd97c328 | 1079 | $mod[$seq]->extra = ""; |
82bd6a5e | 1080 | if(!empty($CFG->enableavailability)) { |
1081 | condition_info::fill_availability_conditions($rawmods[$seq]); | |
1082 | $mod[$seq]->availablefrom = $rawmods[$seq]->availablefrom; | |
1083 | $mod[$seq]->availableuntil = $rawmods[$seq]->availableuntil; | |
1084 | $mod[$seq]->showavailability = $rawmods[$seq]->showavailability; | |
1085 | $mod[$seq]->conditionscompletion = $rawmods[$seq]->conditionscompletion; | |
1086 | $mod[$seq]->conditionsgrade = $rawmods[$seq]->conditionsgrade; | |
1087 | } | |
8dddba42 | 1088 | |
1089 | $modname = $mod[$seq]->mod; | |
1090 | $functionname = $modname."_get_coursemodule_info"; | |
1091 | ||
3a37b3f8 | 1092 | if (!file_exists("$CFG->dirroot/mod/$modname/lib.php")) { |
1093 | continue; | |
1094 | } | |
1095 | ||
8dddba42 | 1096 | include_once("$CFG->dirroot/mod/$modname/lib.php"); |
1097 | ||
1098 | if (function_exists($functionname)) { | |
9d361034 | 1099 | if ($info = $functionname($rawmods[$seq])) { |
1100 | if (!empty($info->extra)) { | |
1101 | $mod[$seq]->extra = $info->extra; | |
1102 | } | |
1103 | if (!empty($info->icon)) { | |
1104 | $mod[$seq]->icon = $info->icon; | |
1105 | } | |
9a9012dc PS |
1106 | if (!empty($info->iconcomponent)) { |
1107 | $mod[$seq]->iconcomponent = $info->iconcomponent; | |
1108 | } | |
1ea543df | 1109 | if (!empty($info->name)) { |
9a9012dc | 1110 | $mod[$seq]->name = $info->name; |
1ea543df | 1111 | } |
c9f6251e | 1112 | } |
1113 | } | |
1ea543df | 1114 | if (!isset($mod[$seq]->name)) { |
9a9012dc | 1115 | $mod[$seq]->name = $DB->get_field($rawmods[$seq]->modname, "name", array("id"=>$rawmods[$seq]->instance)); |
1ea543df | 1116 | } |
d897cae4 | 1117 | } |
1118 | } | |
1119 | } | |
1120 | } | |
1121 | return $mod; | |
1122 | } | |
1123 | ||
1124 | ||
cb6fec1f | 1125 | /** |
1126 | * Returns a number of useful structures for course displays | |
1127 | */ | |
90845098 | 1128 | function get_all_mods($courseid, &$mods, &$modnames, &$modnamesplural, &$modnamesused) { |
0edb4aad | 1129 | global $CFG, $DB, $COURSE; |
7468bf01 | 1130 | |
dd97c328 | 1131 | $mods = array(); // course modules indexed by id |
1132 | $modnames = array(); // all course module names (except resource!) | |
1133 | $modnamesplural= array(); // all course module names (plural form) | |
1134 | $modnamesused = array(); // course module names used | |
7468bf01 | 1135 | |
cb6fec1f | 1136 | if ($allmods = $DB->get_records("modules")) { |
90845098 | 1137 | foreach ($allmods as $mod) { |
0edb4aad PS |
1138 | if (!file_exists("$CFG->dirroot/mod/$mod->name/lib.php")) { |
1139 | continue; | |
1140 | } | |
5867bfb5 | 1141 | if ($mod->visible) { |
1142 | $modnames[$mod->name] = get_string("modulename", "$mod->name"); | |
1143 | $modnamesplural[$mod->name] = get_string("modulenameplural", "$mod->name"); | |
1144 | } | |
90845098 | 1145 | } |
91374f3e | 1146 | asort($modnames, SORT_LOCALE_STRING); |
90845098 | 1147 | } else { |
ba6018a9 | 1148 | print_error("nomodules", 'debug'); |
90845098 | 1149 | } |
1150 | ||
82bd6a5e | 1151 | $course = ($courseid==$COURSE->id) ? $COURSE : $DB->get_record('course',array('id'=>$courseid)); |
1152 | $modinfo = get_fast_modinfo($course); | |
1153 | ||
1154 | if ($rawmods=$modinfo->cms) { | |
7468bf01 | 1155 | foreach($rawmods as $mod) { // Index the mods |
959ae824 | 1156 | if (empty($modnames[$mod->modname])) { |
1157 | continue; | |
1158 | } | |
dd97c328 | 1159 | $mods[$mod->id] = $mod; |
1160 | $mods[$mod->id]->modfullname = $modnames[$mod->modname]; | |
1161 | if (!$mod->visible and !has_capability('moodle/course:viewhiddenactivities', get_context_instance(CONTEXT_COURSE, $courseid))) { | |
1162 | continue; | |
1163 | } | |
13534ef7 ML |
1164 | // Check groupings |
1165 | if (!groups_course_module_visible($mod)) { | |
1166 | continue; | |
1167 | } | |
dd97c328 | 1168 | $modnamesused[$mod->modname] = $modnames[$mod->modname]; |
7468bf01 | 1169 | } |
c7da6f7a | 1170 | if ($modnamesused) { |
dba21d4a | 1171 | asort($modnamesused, SORT_LOCALE_STRING); |
c7da6f7a | 1172 | } |
7468bf01 | 1173 | } |
7468bf01 | 1174 | } |
1175 | ||
9fa49e22 | 1176 | |
7468bf01 | 1177 | function get_all_sections($courseid) { |
cb6fec1f | 1178 | global $DB; |
1179 | return $DB->get_records("course_sections", array("course"=>"$courseid"), "section", | |
0f4ab67d | 1180 | "section, id, course, name, summary, sequence, visible"); |
7468bf01 | 1181 | } |
1182 | ||
b86fc0e2 | 1183 | function course_set_display($courseid, $display=0) { |
cb6fec1f | 1184 | global $USER, $DB; |
b86fc0e2 | 1185 | |
b86fc0e2 | 1186 | if ($display == "all" or empty($display)) { |
1187 | $display = 0; | |
1188 | } | |
1189 | ||
4f0c2d00 | 1190 | if (!isloggedin() or isguestuser()) { |
7b678e0a | 1191 | //do not store settings in db for guests |
238c0dd9 | 1192 | } else if ($DB->record_exists("course_display", array("userid" => $USER->id, "course"=>$courseid))) { |
cb6fec1f | 1193 | $DB->set_field("course_display", "display", $display, array("userid"=>$USER->id, "course"=>$courseid)); |
b86fc0e2 | 1194 | } else { |
dd97c328 | 1195 | $record = new object(); |
b86fc0e2 | 1196 | $record->userid = $USER->id; |
1197 | $record->course = $courseid; | |
1198 | $record->display = $display; | |
fc29e51b | 1199 | $DB->insert_record("course_display", $record); |
b86fc0e2 | 1200 | } |
1201 | ||
1202 | return $USER->display[$courseid] = $display; // Note: = not == | |
1203 | } | |
1204 | ||
cb6fec1f | 1205 | /** |
1206 | * For a given course section, markes it visible or hidden, | |
1207 | * and does the same for every activity in that section | |
1208 | */ | |
7d99d695 | 1209 | function set_section_visible($courseid, $sectionnumber, $visibility) { |
cb6fec1f | 1210 | global $DB; |
7d99d695 | 1211 | |
cb6fec1f | 1212 | if ($section = $DB->get_record("course_sections", array("course"=>$courseid, "section"=>$sectionnumber))) { |
1213 | $DB->set_field("course_sections", "visible", "$visibility", array("id"=>$section->id)); | |
7d99d695 | 1214 | if (!empty($section->sequence)) { |
1215 | $modules = explode(",", $section->sequence); | |
1216 | foreach ($modules as $moduleid) { | |
02f66c42 | 1217 | set_coursemodule_visible($moduleid, $visibility, true); |
7d99d695 | 1218 | } |
1219 | } | |
5867bfb5 | 1220 | rebuild_course_cache($courseid); |
7d99d695 | 1221 | } |
1222 | } | |
ba2e5d73 | 1223 | |
cb6fec1f | 1224 | /** |
1225 | * Prints a section full of activity modules | |
1226 | */ | |
4e781c7b | 1227 | function print_section($course, $section, $mods, $modnamesused, $absolute=false, $width="100%", $hidecompletion=false) { |
e63f88c9 | 1228 | global $CFG, $USER, $DB, $PAGE, $OUTPUT; |
7977cffd | 1229 | |
dd97c328 | 1230 | static $initialised; |
1231 | ||
3d575e6f | 1232 | static $groupbuttons; |
32d03b7b | 1233 | static $groupbuttonslink; |
52dcc2f9 | 1234 | static $isediting; |
7977cffd | 1235 | static $ismoving; |
1236 | static $strmovehere; | |
1237 | static $strmovefull; | |
54669989 | 1238 | static $strunreadpostsone; |
a2d71d8e | 1239 | static $usetracking; |
dd97c328 | 1240 | static $groupings; |
110a32e2 | 1241 | |
dd97c328 | 1242 | if (!isset($initialised)) { |
9fd9c29b | 1243 | $groupbuttons = ($course->groupmode or (!$course->groupmodeforce)); |
32d03b7b | 1244 | $groupbuttonslink = (!$course->groupmodeforce); |
830dd6e9 | 1245 | $isediting = $PAGE->user_is_editing(); |
dd97c328 | 1246 | $ismoving = $isediting && ismoving($course->id); |
3d575e6f | 1247 | if ($ismoving) { |
dd97c328 | 1248 | $strmovehere = get_string("movehere"); |
1249 | $strmovefull = strip_tags(get_string("movefull", "", "'$USER->activitycopyname'")); | |
3d575e6f | 1250 | } |
94a6a70f | 1251 | include_once($CFG->dirroot.'/mod/forum/lib.php'); |
1252 | if ($usetracking = forum_tp_can_track_forums()) { | |
dd97c328 | 1253 | $strunreadpostsone = get_string('unreadpostsone', 'forum'); |
a2d71d8e | 1254 | } |
dd97c328 | 1255 | $initialised = true; |
7977cffd | 1256 | } |
dd97c328 | 1257 | |
1258 | $labelformatoptions = new object(); | |
60bd11cf | 1259 | $labelformatoptions->noclean = true; |
94361e02 | 1260 | |
fea43a7f | 1261 | /// Casting $course->modinfo to string prevents one notice when the field is null |
dd97c328 | 1262 | $modinfo = get_fast_modinfo($course); |
984baa77 | 1263 | $completioninfo = new completion_info($course); |
94361e02 | 1264 | |
c6a55371 | 1265 | //Acccessibility: replace table with list <ul>, but don't output empty list. |
74666583 | 1266 | if (!empty($section->sequence)) { |
94361e02 | 1267 | |
f2d660dc | 1268 | // Fix bug #5027, don't want style=\"width:$width\". |
6285f8a8 | 1269 | echo "<ul class=\"section img-text\">\n"; |
94361e02 | 1270 | $sectionmods = explode(",", $section->sequence); |
1271 | ||
1272 | foreach ($sectionmods as $modnumber) { | |
9ae687af | 1273 | if (empty($mods[$modnumber])) { |
1274 | continue; | |
1275 | } | |
dd97c328 | 1276 | |
94361e02 | 1277 | $mod = $mods[$modnumber]; |
c9f6251e | 1278 | |
dd97c328 | 1279 | if ($ismoving and $mod->id == $USER->activitycopy) { |
1280 | // do not display moving mod | |
1281 | continue; | |
1282 | } | |
c9f6251e | 1283 | |
dd97c328 | 1284 | if (isset($modinfo->cms[$modnumber])) { |
85f55ba2 | 1285 | // We can continue (because it will not be displayed at all) |
1286 | // if: | |
1287 | // 1) The activity is not visible to users | |
1288 | // and | |
1289 | // 2a) The 'showavailability' option is not set (if that is set, | |
2f48819b | 1290 | // we need to display the activity so we can show |
85f55ba2 | 1291 | // availability info) |
1292 | // or | |
2f48819b | 1293 | // 2b) The 'availableinfo' is empty, i.e. the activity was |
1294 | // hidden in a way that leaves no info, such as using the | |
85f55ba2 | 1295 | // eye icon. |
82bd6a5e | 1296 | if (!$modinfo->cms[$modnumber]->uservisible && |
85f55ba2 | 1297 | (empty($modinfo->cms[$modnumber]->showavailability) || |
1298 | empty($modinfo->cms[$modnumber]->availableinfo))) { | |
dd97c328 | 1299 | // visibility shortcut |
1300 | continue; | |
86aa7ccf | 1301 | } |
dd97c328 | 1302 | } else { |
0f56c9da | 1303 | if (!file_exists("$CFG->dirroot/mod/$mod->modname/lib.php")) { |
1304 | // module not installed | |
1305 | continue; | |
1306 | } | |
82bd6a5e | 1307 | if (!coursemodule_visible_for_user($mod) && |
1308 | empty($mod->showavailability)) { | |
dd97c328 | 1309 | // full visibility check |
1310 | continue; | |
9d361034 | 1311 | } |
dd97c328 | 1312 | } |
1313 | ||
2f48819b | 1314 | // In some cases the activity is visible to user, but it is |
e8e50986 | 1315 | // dimmed. This is done if viewhiddenactivities is true and if: |
1316 | // 1. the activity is not visible, or | |
1317 | // 2. the activity has dates set which do not include current, or | |
1318 | // 3. the activity has any other conditions set (regardless of whether | |
1319 | // current user meets them) | |
1320 | $canviewhidden = has_capability( | |
1321 | 'moodle/course:viewhiddenactivities', | |
1322 | get_context_instance(CONTEXT_MODULE, $mod->id)); | |
1323 | $accessiblebutdim = false; | |
1324 | if ($canviewhidden) { | |
1325 | $accessiblebutdim = !$mod->visible; | |
1326 | if (!empty($CFG->enableavailability)) { | |
1327 | $accessiblebutdim = $accessiblebutdim || | |
1328 | $mod->availablefrom > time() || | |
1329 | ($mod->availableuntil && $mod->availableuntil < time()) || | |
2f48819b | 1330 | count($mod->conditionsgrade) > 0 || |
e8e50986 | 1331 | count($mod->conditionscompletion) > 0; |
1332 | } | |
1333 | } | |
1334 | ||
dd97c328 | 1335 | echo '<li class="activity '.$mod->modname.'" id="module-'.$modnumber.'">'; // Unique ID |
1336 | if ($ismoving) { | |
1337 | echo '<a title="'.$strmovefull.'"'. | |
d4a1fcaf | 1338 | ' href="'.$CFG->wwwroot.'/course/mod.php?moveto='.$mod->id.'&sesskey='.sesskey().'">'. |
b5d0cafc | 1339 | '<img class="movetarget" src="'.$OUTPUT->pix_url('movehere') . '" '. |
dd97c328 | 1340 | ' alt="'.$strmovehere.'" /></a><br /> |
1341 | '; | |
1342 | } | |
9d361034 | 1343 | |
dd97c328 | 1344 | if ($mod->indent) { |
1ba862ec | 1345 | echo $OUTPUT->spacer(array('height'=>12, 'width'=>(20 * $mod->indent))); // should be done with CSS instead |
dd97c328 | 1346 | } |
1347 | ||
554606c7 | 1348 | $extra = ''; |
1349 | if (!empty($modinfo->cms[$modnumber]->extra)) { | |
82bd6a5e | 1350 | $extra = $modinfo->cms[$modnumber]->extra; |
554606c7 | 1351 | } |
dd97c328 | 1352 | |
1353 | if ($mod->modname == "label") { | |
e8e50986 | 1354 | if ($accessiblebutdim || !$mod->uservisible) { |
85f55ba2 | 1355 | echo '<div class="dimmed_text"><span class="accesshide">'. |
4a087123 | 1356 | get_string('hiddenfromstudents').'</span>'; |
dd97c328 | 1357 | } |
1358 | echo format_text($extra, FORMAT_HTML, $labelformatoptions); | |
e8e50986 | 1359 | if ($accessiblebutdim || !$mod->uservisible) { |
9009a990 | 1360 | echo "</div>"; |
aac94fd0 | 1361 | } |
98da6021 | 1362 | if (!empty($mod->groupingid) && has_capability('moodle/course:managegroups', get_context_instance(CONTEXT_COURSE, $course->id))) { |
c4d989a1 | 1363 | if (!isset($groupings)) { |
1364 | $groupings = groups_get_all_groupings($course->id); | |
1365 | } | |
1470825e | 1366 | echo " <span class=\"groupinglabel\">(".format_string($groupings[$mod->groupingid]->name).')</span>'; |
c4d989a1 | 1367 | } |
aac94fd0 | 1368 | |
dd97c328 | 1369 | } else { // Normal activity |
1370 | $instancename = format_string($modinfo->cms[$modnumber]->name, true, $course->id); | |
c9f6251e | 1371 | |
c93dae38 | 1372 | $customicon = $modinfo->cms[$modnumber]->icon; |
1373 | if (!empty($customicon)) { | |
1374 | if (substr($customicon, 0, 4) === 'mod/') { | |
5ef44400 | 1375 | list($modname, $iconname) = explode('/', substr($customicon, 4), 2); |
b5d0cafc | 1376 | $icon = $OUTPUT->pix_url(str_replace(array('.gif', '.png'), '', $customicon), $modname); |
c93dae38 | 1377 | } else { |
b5d0cafc | 1378 | $icon = $OUTPUT->pix_url(str_replace(array('.gif', '.png'), '', $customicon)); |
c93dae38 | 1379 | } |
dd97c328 | 1380 | } else { |
b5d0cafc | 1381 | $icon = $OUTPUT->pix_url('icon', $mod->modname); |
dd97c328 | 1382 | } |
e0b033d5 | 1383 | |
aa54ed7b | 1384 | //Accessibility: for files get description via icon, this is very ugly hack! |
dd97c328 | 1385 | $altname = ''; |
aa54ed7b | 1386 | $altname = $mod->modfullname; |
1387 | if (!empty($customicon)) { | |
1388 | $archetype = plugin_supports('mod', $mod->modname, FEATURE_MOD_ARCHETYPE, MOD_ARCHETYPE_OTHER); | |
1389 | if ($archetype == MOD_ARCHETYPE_RESOURCE) { | |
1390 | $possaltname = str_replace(array('.gif', '.png'), '', $customicon).'.gif'; | |
6285f8a8 | 1391 | |
dd97c328 | 1392 | $mimetype = mimeinfo_from_icon('type', $possaltname); |
1393 | $altname = get_mimetype_description($mimetype); | |
6285f8a8 | 1394 | } |
dd97c328 | 1395 | } |
1396 | // Avoid unnecessary duplication. | |
aa54ed7b | 1397 | if (false !== stripos($instancename, $altname)) { |
dd97c328 | 1398 | $altname = ''; |
1399 | } | |
1400 | // File type after name, for alphabetic lists (screen reader). | |
1401 | if ($altname) { | |
1402 | $altname = get_accesshide(' '.$altname); | |
1403 | } | |
6285f8a8 | 1404 | |
82bd6a5e | 1405 | // We may be displaying this just in order to show information |
1406 | // about visibility, without the actual link | |
52dbbcf6 | 1407 | if ($mod->uservisible) { |
82bd6a5e | 1408 | // Display normal module link |
e8e50986 | 1409 | if (!$accessiblebutdim) { |
52dbbcf6 | 1410 | $linkcss = ''; |
1411 | $accesstext =''; | |
85f55ba2 | 1412 | } else { |
1413 | $linkcss = ' class="dimmed" '; | |
52dbbcf6 | 1414 | $accesstext = '<span class="accesshide">'. |
85f55ba2 | 1415 | get_string('hiddenfromstudents').': </span>'; |
1416 | } | |
52dbbcf6 | 1417 | |
85f55ba2 | 1418 | echo '<a '.$linkcss.' '.$extra. |
2f48819b | 1419 | ' href="'.$CFG->wwwroot.'/mod/'.$mod->modname.'/view.php?id='.$mod->id.'">'. |
85f55ba2 | 1420 | '<img src="'.$icon.'" class="activityicon" alt="" /> '. |
1421 | $accesstext.'<span>'.$instancename.$altname.'</span></a>'; | |
82bd6a5e | 1422 | |
98da6021 | 1423 | if (!empty($mod->groupingid) && has_capability('moodle/course:managegroups', get_context_instance(CONTEXT_COURSE, $course->id))) { |
82bd6a5e | 1424 | if (!isset($groupings)) { |
1425 | $groupings = groups_get_all_groupings($course->id); | |
1426 | } | |
1427 | echo " <span class=\"groupinglabel\">(".format_string($groupings[$mod->groupingid]->name).')</span>'; | |
acf000b0 | 1428 | } |
82bd6a5e | 1429 | } else { |
1430 | // Display greyed-out text of link | |
85f55ba2 | 1431 | echo '<span class="dimmed_text" '.$extra.' ><span class="accesshide">'. |
1432 | get_string('notavailableyet','condition').': </span>'. | |
1433 | '<img src="'.$icon.'" class="activityicon" alt="" /> <span>'. | |
1434 | $instancename.$altname.'</span></span>'; | |
c9f6251e | 1435 | } |
dd97c328 | 1436 | } |
1437 | if ($usetracking && $mod->modname == 'forum') { | |
90f4745c | 1438 | if ($unread = forum_tp_count_forum_unread_posts($mod, $course)) { |
1439 | echo '<span class="unread"> <a href="'.$CFG->wwwroot.'/mod/forum/view.php?id='.$mod->id.'">'; | |
1440 | if ($unread == 1) { | |
1441 | echo $strunreadpostsone; | |
1442 | } else { | |
1443 | print_string('unreadpostsnumber', 'forum', $unread); | |
54669989 | 1444 | } |
90f4745c | 1445 | echo '</a></span>'; |
f37da850 | 1446 | } |
dd97c328 | 1447 | } |
f37da850 | 1448 | |
dd97c328 | 1449 | if ($isediting) { |
1450 | // TODO: we must define this as mod property! | |
1451 | if ($groupbuttons and $mod->modname != 'label' and $mod->modname != 'resource' and $mod->modname != 'glossary') { | |
1452 | if (! $mod->groupmodelink = $groupbuttonslink) { | |
1453 | $mod->groupmode = $course->groupmode; | |
3d575e6f | 1454 | } |
dd97c328 | 1455 | |
1456 | } else { | |
1457 | $mod->groupmode = false; | |
c9f6251e | 1458 | } |
dd97c328 | 1459 | echo ' '; |
1460 | echo make_editing_buttons($mod, $absolute, true, $mod->indent, $section->section); | |
94361e02 | 1461 | } |
4e781c7b | 1462 | |
1463 | // Completion | |
3982f0f8 | 1464 | $completion = $hidecompletion |
4e781c7b | 1465 | ? COMPLETION_TRACKING_NONE |
1466 | : $completioninfo->is_enabled($mod); | |
2f48819b | 1467 | if ($completion!=COMPLETION_TRACKING_NONE && isloggedin() && |
82bd6a5e | 1468 | !isguestuser() && $mod->uservisible) { |
3982f0f8 | 1469 | $completiondata = $completioninfo->get_data($mod,true); |
1470 | $completionicon = ''; | |
1471 | if ($isediting) { | |
1472 | switch ($completion) { | |
ca255392 | 1473 | case COMPLETION_TRACKING_MANUAL : |
3982f0f8 | 1474 | $completionicon = 'manual-enabled'; break; |
ca255392 | 1475 | case COMPLETION_TRACKING_AUTOMATIC : |
3982f0f8 | 1476 | $completionicon = 'auto-enabled'; break; |
4e781c7b | 1477 | default: // wtf |
1478 | } | |
3982f0f8 | 1479 | } else if ($completion==COMPLETION_TRACKING_MANUAL) { |
4e781c7b | 1480 | switch($completiondata->completionstate) { |
1481 | case COMPLETION_INCOMPLETE: | |
3982f0f8 | 1482 | $completionicon = 'manual-n'; break; |
4e781c7b | 1483 | case COMPLETION_COMPLETE: |
3982f0f8 | 1484 | $completionicon = 'manual-y'; break; |
4e781c7b | 1485 | } |
1486 | } else { // Automatic | |
1487 | switch($completiondata->completionstate) { | |
1488 | case COMPLETION_INCOMPLETE: | |
3982f0f8 | 1489 | $completionicon = 'auto-n'; break; |
4e781c7b | 1490 | case COMPLETION_COMPLETE: |
3982f0f8 | 1491 | $completionicon = 'auto-y'; break; |
4e781c7b | 1492 | case COMPLETION_COMPLETE_PASS: |
3982f0f8 | 1493 | $completionicon = 'auto-pass'; break; |
4e781c7b | 1494 | case COMPLETION_COMPLETE_FAIL: |
3982f0f8 | 1495 | $completionicon = 'auto-fail'; break; |
4e781c7b | 1496 | } |
1497 | } | |
3982f0f8 | 1498 | if ($completionicon) { |
b5d0cafc | 1499 | $imgsrc = $OUTPUT->pix_url('i/completion-'.$completionicon); |
76c0123b PS |
1500 | $imgalt = s(get_string('completion-alt-'.$completionicon, 'completion')); |
1501 | if ($completion == COMPLETION_TRACKING_MANUAL && !$isediting) { | |
1502 | $imgtitle = s(get_string('completion-title-'.$completionicon, 'completion')); | |
3982f0f8 | 1503 | $newstate = |
4e781c7b | 1504 | $completiondata->completionstate==COMPLETION_COMPLETE |
ca255392 | 1505 | ? COMPLETION_INCOMPLETE |
1506 | : COMPLETION_COMPLETE; | |
a343b13f | 1507 | // In manual mode the icon is a toggle form... |
1508 | ||
1509 | // If this completion state is used by the | |
1510 | // conditional activities system, we need to turn | |
1511 | // off the JS. | |
2f48819b | 1512 | if (!empty($CFG->enableavailability) && |
76c0123b | 1513 | condition_info::completion_value_used_as_condition($course, $mod)) { |
a343b13f | 1514 | $extraclass = ' preventjs'; |
1515 | } else { | |
1516 | $extraclass = ''; | |
1517 | } | |
4e781c7b | 1518 | echo " |
76c0123b | 1519 | <form class='togglecompletion$extraclass' method='post' action='togglecompletion.php'><div> |
4e781c7b | 1520 | <input type='hidden' name='id' value='{$mod->id}' /> |
8c194133 | 1521 | <input type='hidden' name='sesskey' value='".sesskey()."' /> |
4e781c7b | 1522 | <input type='hidden' name='completionstate' value='$newstate' /> |
1523 | <input type='image' src='$imgsrc' alt='$imgalt' title='$imgtitle' /> | |
1524 | </div></form>"; | |
1525 | } else { | |
1526 | // In auto mode, or when editing, the icon is just an image | |
f17a0360 | 1527 | echo "<span class='autocompletion'>"; |
f17a0360 | 1528 | echo "<img src='$imgsrc' alt='$imgalt' title='$imgalt' /></span>"; |
4e781c7b | 1529 | } |
1530 | } | |
1531 | } | |
1532 | ||
2f48819b | 1533 | // Show availability information (for someone who isn't allowed to |
82bd6a5e | 1534 | // see the activity itself, or for staff) |
3982f0f8 | 1535 | if (!$mod->uservisible) { |
82bd6a5e | 1536 | echo '<div class="availabilityinfo">'.$mod->availableinfo.'</div>'; |
e8e50986 | 1537 | } else if ($canviewhidden && !empty($CFG->enableavailability)) { |
82bd6a5e | 1538 | $ci = new condition_info($mod); |
3982f0f8 | 1539 | $fullinfo = $ci->get_full_information(); |
82bd6a5e | 1540 | if($fullinfo) { |
2f48819b | 1541 | echo '<div class="availabilityinfo">'.get_string($mod->showavailability |
82bd6a5e | 1542 | ? 'userrestriction_visible' |
1543 | : 'userrestriction_hidden','condition', | |
1544 | $fullinfo).'</div>'; | |
1545 | } | |
1546 | } | |
1547 | ||
dd97c328 | 1548 | echo "</li>\n"; |
94361e02 | 1549 | } |
dd97c328 | 1550 | |
f2d660dc | 1551 | } elseif ($ismoving) { |
1552 | echo "<ul class=\"section\">\n"; | |
264867fd | 1553 | } |
dd97c328 | 1554 | |
7977cffd | 1555 | if ($ismoving) { |
64fdc686 | 1556 | echo '<li><a title="'.$strmovefull.'"'. |
d4a1fcaf | 1557 | ' href="'.$CFG->wwwroot.'/course/mod.php?movetosection='.$section->id.'&sesskey='.sesskey().'">'. |
b5d0cafc | 1558 | '<img class="movetarget" src="'.$OUTPUT->pix_url('movehere') . '" '. |
c6a55371 | 1559 | ' alt="'.$strmovehere.'" /></a></li> |
1c919752 | 1560 | '; |
7977cffd | 1561 | } |
c6a55371 | 1562 | if (!empty($section->sequence) || $ismoving) { |
1563 | echo "</ul><!--class='section'-->\n\n"; | |
1564 | } | |
a7ad3ea6 | 1565 | } |
1566 | ||
89bfeee0 | 1567 | /** |
1568 | * Prints the menus to add activities and resources. | |
1569 | */ | |
cb57e6f4 | 1570 | function print_section_add_menus($course, $section, $modnames, $vertical=false, $return=false) { |
64e12bb7 | 1571 | global $CFG, $OUTPUT; |
e0161bff | 1572 | |
217a8ee9 | 1573 | // check to see if user can add menus |
1574 | if (!has_capability('moodle/course:manageactivities', get_context_instance(CONTEXT_COURSE, $course->id))) { | |
e2cd3ed0 | 1575 | return false; |
217a8ee9 | 1576 | } |
1577 | ||
31dadc6f PS |
1578 | $urlbase = "/course/mod.php?id=$course->id§ion=$section&sesskey=".sesskey().'&add='; |
1579 | ||
017ab27c DP |
1580 | $resources = array(); |
1581 | $activities = array(); | |
6da4b261 | 1582 | |
017ab27c DP |
1583 | foreach($modnames as $modname=>$modnamestr) { |
1584 | if (!course_allowed_module($course, $modname)) { | |
1585 | continue; | |
1586 | } | |
6da4b261 | 1587 | |
017ab27c DP |
1588 | $libfile = "$CFG->dirroot/mod/$modname/lib.php"; |
1589 | if (!file_exists($libfile)) { | |
1590 | continue; | |
1591 | } | |
1592 | include_once($libfile); | |
1593 | $gettypesfunc = $modname.'_get_types'; | |
1594 | if (function_exists($gettypesfunc)) { | |
1595 | // NOTE: this is legacy stuff, module subtypes are very strongly discouraged!! | |
1596 | if ($types = $gettypesfunc()) { | |
1597 | $menu = array(); | |
1598 | $atype = null; | |
1599 | $groupname = null; | |
1600 | foreach($types as $type) { | |
31dadc6f | 1601 | if ($type->typestr === '--') { |
017ab27c | 1602 | continue; |
65bcf17b | 1603 | } |
017ab27c DP |
1604 | if (strpos($type->typestr, '--') === 0) { |
1605 | $groupname = str_replace('--', '', $type->typestr); | |
1606 | continue; | |
89bfeee0 | 1607 | } |
017ab27c DP |
1608 | $type->type = str_replace('&', '&', $type->type); |
1609 | if ($type->modclass == MOD_CLASS_RESOURCE) { | |
1610 | $atype = MOD_CLASS_RESOURCE; | |
1611 | } | |
1612 | $menu[$urlbase.$type->type] = $type->typestr; | |
89bfeee0 | 1613 | } |
017ab27c DP |
1614 | if (!is_null($groupname)) { |
1615 | if ($atype == MOD_CLASS_RESOURCE) { | |
1616 | $resources[] = array($groupname=>$menu); | |
1617 | } else { | |
1618 | $activities[] = array($groupname=>$menu); | |
1619 | } | |
aa54ed7b | 1620 | } else { |
017ab27c DP |
1621 | if ($atype == MOD_CLASS_RESOURCE) { |
1622 | $resources = array_merge($resources, $menu); | |
1623 | } else { | |
1624 | $activities = array_merge($activities, $menu); | |
1625 | } | |
aa54ed7b | 1626 | } |
89bfeee0 | 1627 | } |
017ab27c DP |
1628 | } else { |
1629 | $archetype = plugin_supports('mod', $modname, FEATURE_MOD_ARCHETYPE, MOD_ARCHETYPE_OTHER); | |
1630 | if ($archetype == MOD_ARCHETYPE_RESOURCE) { | |
1631 | $resources[$urlbase.$modname] = $modnamestr; | |
1632 | } else { | |
1633 | // all other archetypes are considered activity | |
1634 | $activities[$urlbase.$modname] = $modnamestr; | |
1635 | } | |
0705ff84 | 1636 | } |
e0161bff | 1637 | } |
1638 | ||
89bfeee0 | 1639 | $straddactivity = get_string('addactivity'); |
1640 | $straddresource = get_string('addresource'); | |
1641 | ||
4f24b3e3 | 1642 | $output = '<div class="section_add_menus">'; |
1643 | ||
1644 | if (!$vertical) { | |
1645 | $output .= '<div class="horizontal">'; | |
1646 | } | |
82fcab32 | 1647 | |
89bfeee0 | 1648 | if (!empty($resources)) { |
31dadc6f | 1649 | $select = new url_select($resources, '', array(''=>$straddresource), "ressection$section"); |
d2265f13 | 1650 | $select->set_help_icon('resources'); |
31dadc6f | 1651 | $output .= $OUTPUT->render($select); |
0705ff84 | 1652 | } |
cb57e6f4 | 1653 | |
89bfeee0 | 1654 | if (!empty($activities)) { |
31dadc6f | 1655 | $select = new url_select($activities, '', array(''=>$straddactivity), "section$section"); |
d2265f13 | 1656 | $select->set_help_icon('activities'); |
31dadc6f | 1657 | $output .= $OUTPUT->render($select); |
0705ff84 | 1658 | } |
1659 | ||
4f24b3e3 | 1660 | if (!$vertical) { |
d33d0cda | 1661 | $output .= '</div>'; |
1662 | } | |
1663 | ||
cb57e6f4 | 1664 | $output .= '</div>'; |
1665 | ||
1666 | if ($return) { | |
1667 | return $output; | |
1668 | } else { | |
1669 | echo $output; | |
1670 | } | |
e0161bff | 1671 | } |
1672 | ||
8ed5dd63 | 1673 | /** |
1674 | * Return the course category context for the category with id $categoryid, except | |
1675 | * that if $categoryid is 0, return the system context. | |
1676 | * | |
1677 | * @param integer $categoryid a category id or 0. | |
1678 | * @return object the corresponding context | |
1679 | */ | |
1680 | function get_category_or_system_context($categoryid) { | |
1681 | if ($categoryid) { | |
1682 | return get_context_instance(CONTEXT_COURSECAT, $categoryid); | |
1683 | } else { | |
1684 | return get_context_instance(CONTEXT_SYSTEM); | |
1685 | } | |
1686 | } | |
1687 | ||
f36cbf1d | 1688 | /** |
1689 | * Rebuilds the cached list of course activities stored in the database | |
1690 | * @param int $courseid - id of course to rebuil, empty means all | |
1691 | * @param boolean $clearonly - only clear the modinfo fields, gets rebuild automatically on the fly | |
1692 | */ | |
1693 | function rebuild_course_cache($courseid=0, $clearonly=false) { | |
e6db3026 | 1694 | global $COURSE, $DB, $OUTPUT; |
f36cbf1d | 1695 | |
1696 | if ($clearonly) { | |
1c69b885 | 1697 | if (empty($courseid)) { |
1698 | $courseselect = array(); | |
1699 | } else { | |
1700 | $courseselect = array('id'=>$courseid); | |
1701 | } | |
1702 | $DB->set_field('course', 'modinfo', null, $courseselect); | |
f36cbf1d | 1703 | // update cached global COURSE too ;-) |
f80ee891 | 1704 | if ($courseid == $COURSE->id or empty($courseid)) { |
238c0dd9 | 1705 | $COURSE->modinfo = null; |
f36cbf1d | 1706 | } |
1707 | // reset the fast modinfo cache | |
1708 | $reset = 'reset'; | |
1709 | get_fast_modinfo($reset); | |
1710 | return; | |
1711 | } | |
5867bfb5 | 1712 | |
1713 | if ($courseid) { | |
cb6fec1f | 1714 | $select = array('id'=>$courseid); |
5867bfb5 | 1715 | } else { |
cb6fec1f | 1716 | $select = array(); |
6cf890e3 | 1717 | @set_time_limit(0); // this could take a while! MDL-10954 |
5867bfb5 | 1718 | } |
1719 | ||
cb6fec1f | 1720 | if ($rs = $DB->get_recordset("course", $select,'','id,fullname')) { |
1721 | foreach ($rs as $course) { | |
5867bfb5 | 1722 | $modinfo = serialize(get_array_of_activities($course->id)); |
cb6fec1f | 1723 | if (!$DB->set_field("course", "modinfo", $modinfo, array("id"=>$course->id))) { |
e6db3026 | 1724 | echo $OUTPUT->notification("Could not cache module information for course '" . format_string($course->fullname) . "'!"); |
5867bfb5 | 1725 | } |
dd97c328 | 1726 | // update cached global COURSE too ;-) |
1727 | if ($course->id == $COURSE->id) { | |
238c0dd9 | 1728 | $COURSE->modinfo = $modinfo; |
dd97c328 | 1729 | } |
5867bfb5 | 1730 | } |
cb6fec1f | 1731 | $rs->close(); |
5867bfb5 | 1732 | } |
dd97c328 | 1733 | // reset the fast modinfo cache |
65a00c97 | 1734 | $reset = 'reset'; |
1735 | get_fast_modinfo($reset); | |
5867bfb5 | 1736 | } |
1737 | ||
cb6fec1f | 1738 | /** |
8ed5dd63 | 1739 | * Gets the child categories of a given coures category. Uses a static cache |
1740 | * to make repeat calls efficient. | |
1741 | * | |
1742 | * @param unknown_type $parentid the id of a course category. | |
1743 | * @return array all the child course categories. | |
cb6fec1f | 1744 | */ |
8ed5dd63 | 1745 | function get_child_categories($parentid) { |
9bb19e58 | 1746 | static $allcategories = null; |
1747 | ||
1748 | // only fill in this variable the first time | |
1749 | if (null == $allcategories) { | |
1750 | $allcategories = array(); | |
1751 | ||
1752 | $categories = get_categories(); | |
1753 | foreach ($categories as $category) { | |
1754 | if (empty($allcategories[$category->parent])) { | |
1755 | $allcategories[$category->parent] = array(); | |
1756 | } | |
1757 | $allcategories[$category->parent][] = $category; | |
1758 | } | |
1759 | } | |
1760 | ||
8ed5dd63 | 1761 | if (empty($allcategories[$parentid])) { |
9bb19e58 | 1762 | return array(); |
1763 | } else { | |
8ed5dd63 | 1764 | return $allcategories[$parentid]; |
9bb19e58 | 1765 | } |
1766 | } | |
1767 | ||
cb6fec1f | 1768 | /** |
8ed5dd63 | 1769 | * This function recursively travels the categories, building up a nice list |
1770 | * for display. It also makes an array that list all the parents for each | |
1771 | * category. | |
1772 | * | |
1773 | * For example, if you have a tree of categories like: | |
1774 | * Miscellaneous (id = 1) | |
1775 | * Subcategory (id = 2) | |
1776 | * Sub-subcategory (id = 4) | |
1777 | * Other category (id = 3) | |
1778 | * Then after calling this function you will have | |
1779 | * $list = array(1 => 'Miscellaneous', 2 => 'Miscellaneous / Subcategory', | |
1780 | * 4 => 'Miscellaneous / Subcategory / Sub-subcategory', | |
1781 | * 3 => 'Other category'); | |
1782 | * $parents = array(2 => array(1), 4 => array(1, 2)); | |
1783 | * | |
1784 | * If you specify $requiredcapability, then only categories where the current | |
1785 | * user has that capability will be added to $list, although all categories | |
1786 | * will still be added to $parents, and if you only have $requiredcapability | |
1787 | * in a child category, not the parent, then the child catgegory will still be | |
1788 | * included. | |
1789 | * | |
1790 | * If you specify the option $excluded, then that category, and all its children, | |
1791 | * are omitted from the tree. This is useful when you are doing something like | |
1792 | * moving categories, where you do not want to allow people to move a category | |
1793 | * to be the child of itself. | |
1794 | * | |
1795 | * @param array $list For output, accumulates an array categoryid => full category path name | |
1796 | * @param array $parents For output, accumulates an array categoryid => list of parent category ids. | |
8a1b1c32 | 1797 | * @param string/array $requiredcapability if given, only categories where the current |
1798 | * user has this capability will be added to $list. Can also be an array of capabilities, | |
1799 | * in which case they are all required. | |
8ed5dd63 | 1800 | * @param integer $excludeid Omit this category and its children from the lists built. |
1801 | * @param object $category Build the tree starting at this category - otherwise starts at the top level. | |
1802 | * @param string $path For internal use, as part of recursive calls. | |
cb6fec1f | 1803 | */ |
8ed5dd63 | 1804 | function make_categories_list(&$list, &$parents, $requiredcapability = '', |
1805 | $excludeid = 0, $category = NULL, $path = "") { | |
1806 | ||
9d866ae0 | 1807 | // initialize the arrays if needed |
1808 | if (!is_array($list)) { | |
264867fd | 1809 | $list = array(); |
9d866ae0 | 1810 | } |
1811 | if (!is_array($parents)) { | |
264867fd | 1812 | $parents = array(); |
9d866ae0 | 1813 | } |
1814 | ||
8ed5dd63 | 1815 | if (empty($category)) { |
1816 | // Start at the top level. | |
1817 | $category = new stdClass; | |
1818 | $category->id = 0; | |
1819 | } else { | |
1820 | // This is the excluded category, don't include it. | |
1821 | if ($excludeid > 0 && $excludeid == $category->id) { | |
1822 | return; | |
1823 | } | |
1824 | ||
1825 | // Update $path. | |
c2cb4545 | 1826 | if ($path) { |
6ba65fa0 | 1827 | $path = $path.' / '.format_string($category->name); |
c2cb4545 | 1828 | } else { |
6ba65fa0 | 1829 | $path = format_string($category->name); |
c2cb4545 | 1830 | } |
8ed5dd63 | 1831 | |
1832 | // Add this category to $list, if the permissions check out. | |
3ce50127 | 1833 | if (empty($requiredcapability)) { |
8ed5dd63 | 1834 | $list[$category->id] = $path; |
3ce50127 | 1835 | |
1836 | } else { | |
1837 | ensure_context_subobj_present($category, CONTEXT_COURSECAT); | |
1838 | $requiredcapability = (array)$requiredcapability; | |
1839 | if (has_all_capabilities($requiredcapability, $category->context)) { | |
1840 | $list[$category->id] = $path; | |
1841 | } | |
8ed5dd63 | 1842 | } |
c2cb4545 | 1843 | } |
1844 | ||
8ed5dd63 | 1845 | // Add all the children recursively, while updating the parents array. |
1846 | if ($categories = get_child_categories($category->id)) { | |
c2cb4545 | 1847 | foreach ($categories as $cat) { |
1848 | if (!empty($category->id)) { | |
3bd4de22 | 1849 | if (isset($parents[$category->id])) { |
2832badf | 1850 | $parents[$cat->id] = $parents[$category->id]; |
1851 | } | |
c2cb4545 | 1852 | $parents[$cat->id][] = $category->id; |
1853 | } | |
8ed5dd63 | 1854 | make_categories_list($list, $parents, $requiredcapability, $excludeid, $cat, $path); |
c2cb4545 | 1855 | } |
1856 | } | |
1857 | } | |
1858 | ||
1859 | ||
cb6fec1f | 1860 | /** |
1861 | * Recursive function to print out all the categories in a nice format | |
1862 | * with or without courses included | |
1863 | */ | |
8ed5dd63 | 1864 | function print_whole_category_list($category=NULL, $displaylist=NULL, $parentslist=NULL, $depth=-1, $showcourses = true) { |
9ff5310a | 1865 | global $CFG; |
e05bcf2f | 1866 | |
beeee4d2 | 1867 | // maxcategorydepth == 0 meant no limit |
1868 | if (!empty($CFG->maxcategorydepth) && $depth >= $CFG->maxcategorydepth) { | |
e05bcf2f | 1869 | return; |
9ff5310a | 1870 | } |
c2cb4545 | 1871 | |
1872 | if (!$displaylist) { | |
e92fe848 | 1873 | make_categories_list($displaylist, $parentslist); |
c2cb4545 | 1874 | } |
1875 | ||
1876 | if ($category) { | |
8ed5dd63 | 1877 | if ($category->visible or has_capability('moodle/category:viewhiddencategories', get_context_instance(CONTEXT_SYSTEM))) { |
1878 | print_category_info($category, $depth, $showcourses); | |
c2cb4545 | 1879 | } else { |
1880 | return; // Don't bother printing children of invisible categories | |
1881 | } | |
89adb174 | 1882 | |
c2cb4545 | 1883 | } else { |
c2cb4545 | 1884 | $category->id = "0"; |
1885 | } | |
1886 | ||
9bb19e58 | 1887 | if ($categories = get_child_categories($category->id)) { // Print all the children recursively |
c2cb4545 | 1888 | $countcats = count($categories); |
1889 | $count = 0; | |
1890 | $first = true; | |
1891 | $last = false; | |
1892 | foreach ($categories as $cat) { | |
1893 | $count++; | |
1894 | if ($count == $countcats) { | |
1895 | $last = true; | |
1896 | } | |
1897 | $up = $first ? false : true; | |
1898 | $down = $last ? false : true; | |
1899 | $first = false; | |
1900 | ||
8ed5dd63 | 1901 | print_whole_category_list($cat, $displaylist, $parentslist, $depth + 1, $showcourses); |
c2cb4545 | 1902 | } |
1903 | } | |
c2cb4545 | 1904 | } |
1905 | ||
cb6fec1f | 1906 | /** |
af90698b | 1907 | * This function will return $options array for html_writer::select(), with whitespace to denote nesting. |
cb6fec1f | 1908 | */ |
0705ff84 | 1909 | function make_categories_options() { |
1910 | make_categories_list($cats,$parents); | |
1911 | foreach ($cats as $key => $value) { | |
1912 | if (array_key_exists($key,$parents)) { | |
1913 | if ($indent = count($parents[$key])) { | |
1914 | for ($i = 0; $i < $indent; $i++) { | |
1915 | $cats[$key] = ' '.$cats[$key]; | |
1916 | } | |
1917 | } | |
1918 | } | |
1919 | } | |
1920 | return $cats; | |
1921 | } | |
c2cb4545 | 1922 | |
cb6fec1f | 1923 | /** |
1924 | * Prints the category info in indented fashion | |
1925 | * This function is only used by print_whole_category_list() above | |
1926 | */ | |
8ed5dd63 | 1927 | function print_category_info($category, $depth, $showcourses = false) { |
6b608f8f | 1928 | global $CFG, $DB, $OUTPUT; |
b48f834c | 1929 | static $strallowguests, $strrequireskey, $strsummary; |
c2cb4545 | 1930 | |
b48f834c | 1931 | if (empty($strsummary)) { |
e05bcf2f | 1932 | $strallowguests = get_string('allowguests'); |
1933 | $strrequireskey = get_string('requireskey'); | |
1934 | $strsummary = get_string('summary'); | |
b48f834c | 1935 | } |
ba2e5d73 | 1936 | |
e05bcf2f | 1937 | $catlinkcss = $category->visible ? '' : ' class="dimmed" '; |
d5f26b07 | 1938 | |
dc247e52 | 1939 | static $coursecount = null; |
1940 | if (null === $coursecount) { | |
1941 | // only need to check this once | |
1942 | $coursecount = $DB->count_records('course') <= FRONTPAGECOURSELIMIT; | |
1943 | } | |
1944 | ||
8ed5dd63 | 1945 | if ($showcourses and $coursecount) { |
b5d0cafc | 1946 | $catimage = '<img src="'.$OUTPUT->pix_url('i/course') . '" alt="" />'; |
b48f834c | 1947 | } else { |
7b0b5c14 | 1948 | $catimage = " "; |
8ef9cb56 | 1949 | } |
b48f834c | 1950 | |
fcf9577a | 1951 | echo "\n\n".'<table class="categorylist">'; |
d2b6ba70 | 1952 | |
7ffcbfe1 | 1953 | $courses = get_courses($category->id, 'c.sortorder ASC', 'c.id,c.sortorder,c.visible,c.fullname,c.shortname,c.password,c.summary,c.guest,c.cost,c.currency'); |
8ed5dd63 | 1954 | if ($showcourses and $coursecount) { |
b48f834c | 1955 | |
978abb42 | 1956 | echo '<tr>'; |
b48f834c | 1957 | |
1958 | if ($depth) { | |
1959 | $indent = $depth*30; | |
1960 | $rows = count($courses) + 1; | |
a682f0c2 | 1961 | echo '<td class="category indentation" rowspan="'.$rows.'" valign="top">'; |
1ba862ec PS |
1962 | |
1963 | echo $OUTPUT->spacer(array('height'=>10, 'width'=>$indent, 'br'=>true)); // should be done with CSS instead | |
e05bcf2f | 1964 | echo '</td>'; |
b48f834c | 1965 | } |
89adb174 | 1966 | |
9deaeaa1 | 1967 | echo '<td valign="top" class="category image">'.$catimage.'</td>'; |
fcf9577a | 1968 | echo '<td valign="top" class="category name">'; |
6ba65fa0 | 1969 | echo '<a '.$catlinkcss.' href="'.$CFG->wwwroot.'/course/category.php?id='.$category->id.'">'. format_string($category->name).'</a>'; |
e05bcf2f | 1970 | echo '</td>'; |
290130b3 | 1971 | echo '<td class="category info"> </td>'; |
e05bcf2f | 1972 | echo '</tr>'; |
b48f834c | 1973 | |
beeee4d2 | 1974 | // does the depth exceed maxcategorydepth |
1975 | // maxcategorydepth == 0 or unset meant no limit | |
1976 | ||
1977 | $limit = !(isset($CFG->maxcategorydepth) && ($depth >= $CFG->maxcategorydepth-1)); | |
1978 | ||
1979 | if ($courses && ($limit || $CFG->maxcategorydepth == 0)) { | |
c2cb4545 | 1980 | foreach ($courses as $course) { |
e05bcf2f | 1981 | $linkcss = $course->visible ? '' : ' class="dimmed" '; |
fcf9577a | 1982 | echo '<tr><td valign="top"> '; |
1983 | echo '</td><td valign="top" class="course name">'; | |
6ba65fa0 | 1984 | echo '<a '.$linkcss.' href="'.$CFG->wwwroot.'/course/view.php?id='.$course->id.'">'. format_string($course->fullname).'</a>'; |
fcf9577a | 1985 | echo '</td><td align="right" valign="top" class="course info">'; |
c2cb4545 | 1986 | if ($course->guest ) { |
e05bcf2f | 1987 | echo '<a title="'.$strallowguests.'" href="'.$CFG->wwwroot.'/course/view.php?id='.$course->id.'">'; |
b5d0cafc | 1988 | echo '<img alt="'.$strallowguests.'" src="'.$OUTPUT->pix_url('i/guest') . '" /></a>'; |
ebe8ddc1 | 1989 | } else { |
b5d0cafc | 1990 | echo '<img alt="" style="width:18px;height:16px;" src="'.$OUTPUT->pix_url('spacer') . '" />'; |
0c656181 | 1991 | } |
c2cb4545 | 1992 | if ($course->password) { |
e05bcf2f | 1993 | echo '<a title="'.$strrequireskey.'" href="'.$CFG->wwwroot.'/course/view.php?id='.$course->id.'">'; |
b5d0cafc | 1994 | echo '<img alt="'.$strrequireskey.'" src="'.$OUTPUT->pix_url('i/key') . '" /></a>'; |
ebe8ddc1 | 1995 | } else { |
b5d0cafc | 1996 | echo '<img alt="" style="width:18px;height:16px;" src="'.$OUTPUT->pix_url('spacer') . '" />'; |
b48f834c | 1997 | } |
1998 | if ($course->summary) { | |
75015e5f PS |
1999 | $link = new moodle_url('/course/info.php?id='.$course->id); |
2000 | echo $OUTPUT->action_link($link, '<img alt="'.$strsummary.'" src="'.$OUTPUT->pix_url('i/info') . '" />', | |
2001 | new popup_action('click', $link, 'courseinfo', array('height' => 400, 'width' => 500)), | |
2002 | array('title'=>$strsummary)); | |
ebe8ddc1 | 2003 | } else { |
b5d0cafc | 2004 | echo '<img alt="" style="width:18px;height:16px;" src="'.$OUTPUT->pix_url('spacer') . '" />'; |
0c656181 | 2005 | } |
e05bcf2f | 2006 | echo '</td></tr>'; |
0c656181 | 2007 | } |
ba2e5d73 | 2008 | } |
d2b6ba70 | 2009 | } else { |
b48f834c | 2010 | |
e0140f24 | 2011 | echo '<tr>'; |
2012 | ||
b48f834c | 2013 | if ($depth) { |
2014 | $indent = $depth*20; | |
a682f0c2 | 2015 | echo '<td class="category indentation" valign="top">'; |
1ba862ec | 2016 | echo $OUTPUT->spacer(array('height'=>10, 'width'=>$indent, 'br'=>true)); // should be done with CSS instead |
e05bcf2f | 2017 | echo '</td>'; |
d2b6ba70 | 2018 | } |
89adb174 | 2019 | |
fcf9577a | 2020 | echo '<td valign="top" class="category name">'; |
6ba65fa0 | 2021 | echo '<a '.$catlinkcss.' href="'.$CFG->wwwroot.'/course/category.php?id='.$category->id.'">'. format_string($category->name).'</a>'; |
e05bcf2f | 2022 | echo '</td>'; |
290130b3 | 2023 | echo '<td valign="top" class="category number">'; |
7ffcbfe1 | 2024 | if (count($courses)) { |
2025 | echo count($courses); | |
e05bcf2f | 2026 | } |
2027 | echo '</td></tr>'; | |
c2cb4545 | 2028 | } |
e05bcf2f | 2029 | echo '</table>'; |
c2cb4545 | 2030 | } |
2031 | ||
77eddcd5 | 2032 | /** |
2033 | * Print the buttons relating to course requests. | |
2034 | * | |
2035 | * @param object $systemcontext the system context. | |
2036 | */ | |
2037 | function print_course_request_buttons($systemcontext) { | |
b4531207 | 2038 | global $CFG, $DB, $OUTPUT; |
77eddcd5 | 2039 | if (empty($CFG->enablecourserequests)) { |
2040 | return; | |
2041 | } | |
4f0c2d00 | 2042 | if (!has_capability('moodle/course:create', $systemcontext) && has_capability('moodle/course:request', $systemcontext)) { |
77eddcd5 | 2043 | /// Print a button to request a new course |
5c2ed7e2 | 2044 | echo $OUTPUT->single_button('request.php', get_string('requestcourse'), 'get'); |
77eddcd5 | 2045 | } |
2046 | /// Print a button to manage pending requests | |
2047 | if (has_capability('moodle/site:approvecourse', $systemcontext)) { | |
5c2ed7e2 PS |
2048 | $disabled = !$DB->record_exists('course_request', array()); |
2049 | echo $OUTPUT->single_button('pending.php', get_string('coursespending'), 'get', array('disabled'=>$disabled)); | |
77eddcd5 | 2050 | } |
2051 | } | |
2052 | ||
5048e034 | 2053 | /** |
2054 | * Does the user have permission to edit things in this category? | |
2055 | * | |
2056 | * @param integer $categoryid The id of the category we are showing, or 0 for system context. | |
2057 | * @return boolean has_any_capability(array(...), ...); in the appropriate context. | |
2058 | */ | |
2059 | function can_edit_in_category($categoryid = 0) { | |
2060 | $context = get_category_or_system_context($categoryid); | |
2061 | return has_any_capability(array('moodle/category:manage', 'moodle/course:create'), $context); | |
2062 | } | |
2063 | ||
8ed5dd63 | 2064 | /** |
2065 | * Prints the turn editing on/off button on course/index.php or course/category.php. | |
2066 | * | |
2067 | * @param integer $categoryid The id of the category we are showing, or 0 for system context. | |
2068 | * @return string HTML of the editing button, or empty string, if this user is not allowed | |
2069 | * to see it. | |
2070 | */ | |
2071 | function update_category_button($categoryid = 0) { | |
b4531207 | 2072 | global $CFG, $PAGE, $OUTPUT; |
8ed5dd63 | 2073 | |
2074 | // Check permissions. | |
5048e034 | 2075 | if (!can_edit_in_category($categoryid)) { |
8ed5dd63 | 2076 | return ''; |
2077 | } | |
2078 | ||
2079 | // Work out the appropriate action. | |
830dd6e9 | 2080 | if ($PAGE->user_is_editing()) { |
8ed5dd63 | 2081 | $label = get_string('turneditingoff'); |
2082 | $edit = 'off'; | |
2083 | } else { | |
2084 | $label = get_string('turneditingon'); | |
2085 | $edit = 'on'; | |
2086 | } | |
c2cb4545 | 2087 | |
8ed5dd63 | 2088 | // Generate the button HTML. |
2089 | $options = array('categoryedit' => $edit, 'sesskey' => sesskey()); | |
2090 | if ($categoryid) { | |
2091 | $options['id'] = $categoryid; | |
2092 | $page = 'category.php'; | |
2093 | } else { | |
2094 | $page = 'index.php'; | |
2095 | } | |
a6855934 | 2096 | return $OUTPUT->single_button(new moodle_url('/course/' . $page, $options), $label, 'get'); |
8ed5dd63 | 2097 | } |
e0b033d5 | 2098 | |
cb6fec1f | 2099 | /** |
2100 | * Category is 0 (for all courses) or an object | |
2101 | */ | |
6c54240a | 2102 | function print_courses($category) { |
2f48819b | 2103 | global $CFG, $OUTPUT; |
c2cb4545 | 2104 | |
4dde1463 | 2105 | if (!is_object($category) && $category==0) { |
9bb19e58 | 2106 | $categories = get_child_categories(0); // Parent = 0 ie top-level categories only |
4dde1463 | 2107 | if (is_array($categories) && count($categories) == 1) { |
90c2ca2e | 2108 | $category = array_shift($categories); |
238c0dd9 | 2109 | $courses = get_courses_wmanagers($category->id, |
2110 | 'c.sortorder ASC', | |
8bdc9cac | 2111 | array('password','summary','summaryformat','currency')); |
90c2ca2e | 2112 | } else { |
238c0dd9 | 2113 | $courses = get_courses_wmanagers('all', |
2114 | 'c.sortorder ASC', | |
8bdc9cac | 2115 | array('password','summary','summaryformat','currency')); |
90c2ca2e | 2116 | } |
2117 | unset($categories); | |
607809b3 | 2118 | } else { |
238c0dd9 | 2119 | $courses = get_courses_wmanagers($category->id, |
2120 | 'c.sortorder ASC', | |
8bdc9cac | 2121 | array('password','summary','summaryformat','currency')); |
c2cb4545 | 2122 | } |
2123 | ||
49cd4d79 | 2124 | if ($courses) { |
8fee6c60 | 2125 | echo '<ul class="unlist">'; |
c2cb4545 | 2126 | foreach ($courses as $course) { |
4f0c2d00 PS |
2127 | $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id); |
2128 | if ($course->visible == 1 || has_capability('moodle/course:viewhiddencourses', $coursecontext)) { | |
8fee6c60 | 2129 | echo '<li>'; |
4dde1463 | 2130 | print_course($course); |
8fee6c60 | 2131 | echo "</li>\n"; |
4dde1463 | 2132 | } |
c2cb4545 | 2133 | } |
8fee6c60 | 2134 | echo "</ul>\n"; |
c2cb4545 | 2135 | } else { |
7c5286cd | 2136 | echo $OUTPUT->heading(get_string("nocoursesyet")); |
8e480396 | 2137 | $context = get_context_instance(CONTEXT_SYSTEM); |
0468976c | 2138 | if (has_capability('moodle/course:create', $context)) { |
255d1033 | 2139 | $options = array(); |
4868e95f DM |
2140 | if (!empty($category->id)) { |
2141 | $options['category'] = $category->id; | |
2142 | } else { | |
2143 | $options['category'] = $CFG->defaultrequestcategory; | |
2144 | } | |
6b7425d2 | 2145 | echo '<div class="addcoursebutton">'; |
a6855934 | 2146 | echo $OUTPUT->single_button(new moodle_url('/course/edit.php', $options), get_string("addnewcourse")); |
255d1033 | 2147 | echo '</div>'; |
2148 | } | |
c2cb4545 | 2149 | } |
c2cb4545 | 2150 | } |
2151 | ||
04c53106 | 2152 | /** |
2153 | * Print a description of a course, suitable for browsing in a list. | |
2154 | * | |
2155 | * @param object $course the course object. | |
2156 | * @param string $highlightterms (optional) some search terms that should be highlighted in the display. | |
2157 | */ | |
2158 | function print_course($course, $highlightterms = '') { | |
666e8458 | 2159 | global $CFG, $USER, $DB, $OUTPUT; |
c2cb4545 | 2160 | |
4f0c2d00 | 2161 | $context = get_context_instance(CONTEXT_COURSE, $course->id); |
146bbb8f | 2162 | |
8bdc9cac SH |
2163 | // Rewrite file URLs so that they are correct |
2164 | $course->summary = file_rewrite_pluginfile_urls($course->summary, 'pluginfile.php', $context->id, 'course_summary', $course->id); | |
2165 | ||
88768091 | 2166 | $linkcss = $course->visible ? '' : ' class="dimmed" '; |
22288704 | 2167 | |
7cd266e9 | 2168 | echo '<div class="coursebox clearfix">'; |
afba7be1 | 2169 | echo '<div class="info">'; |
90723839 | 2170 | echo '<h3 class="name"><a title="'.get_string('entercourse').'"'. |
0a127169 | 2171 | $linkcss.' href="'.$CFG->wwwroot.'/course/view.php?id='.$course->id.'">'. |
90723839 | 2172 | highlight($highlightterms, format_string($course->fullname)).'</a></h3>'; |
238c0dd9 | 2173 | |
d42c64ba | 2174 | /// first find all roles that are supposed to be displayed |
238c0dd9 | 2175 | |
6b4d8c4d | 2176 | if (!empty($CFG->coursemanager)) { |
2177 | $managerroles = split(',', $CFG->coursemanager); | |
4dde1463 | 2178 | $namesarray = array(); |
2179 | if (isset($course->managers)) { | |
2180 | if (count($course->managers)) { | |
2181 | $rusers = $course->managers; | |
2182 | $canviewfullnames = has_capability('moodle/site:viewfullnames', $context); | |
238c0dd9 | 2183 | |
b682cee9 | 2184 | /// Rename some of the role names if needed |
2185 | if (isset($context)) { | |
cb6fec1f | 2186 | $aliasnames = $DB->get_records('role_names', array('contextid'=>$context->id), '', 'roleid,contextid,name'); |
b682cee9 | 2187 | } |
2188 | ||
9d5a4b23 | 2189 | // keep a note of users displayed to eliminate duplicates |
2190 | $usersshown = array(); | |
4dde1463 | 2191 | foreach ($rusers as $ra) { |
9d5a4b23 | 2192 | |
2193 | // if we've already displayed user don't again | |
2194 | if (in_array($ra->user->id,$usersshown)) { | |
2195 | continue; | |
2196 | } | |
2197 | $usersshown[] = $ra->user->id; | |
2198 | ||
4f0c2d00 | 2199 | $fullname = fullname($ra->user, $canviewfullnames); |
b682cee9 | 2200 | |
4f0c2d00 PS |
2201 | if (isset($aliasnames[$ra->roleid])) { |
2202 | $ra->rolename = $aliasnames[$ra->roleid]->name; | |
4dde1463 | 2203 | } |
4f0c2d00 PS |
2204 | |
2205 | $namesarray[] = format_string($ra->rolename) | |
2206 | . ': <a href="'.$CFG->wwwroot.'/user/view.php?id='.$ra->user->id.'&course='.SITEID.'">' | |
2207 | . $fullname . '</a>'; | |
4dde1463 | 2208 | } |
2209 | } | |
2210 | } else { | |
238c0dd9 | 2211 | $rusers = get_role_users($managerroles, $context, |
4f0c2d00 | 2212 | true, '', 'r.sortorder ASC, u.lastname ASC'); |
4dde1463 | 2213 | if (is_array($rusers) && count($rusers)) { |
2214 | $canviewfullnames = has_capability('moodle/site:viewfullnames', $context); | |
165d25cc | 2215 | |
2216 | /// Rename some of the role names if needed | |
2217 | if (isset($context)) { | |
2218 | $aliasnames = $DB->get_records('role_names', array('contextid'=>$context->id), '', 'roleid,contextid,name'); | |
2219 | } | |
2220 | ||
4dde1463 | 2221 | foreach ($rusers as $teacher) { |
238c0dd9 | 2222 | $fullname = fullname($teacher, $canviewfullnames); |
165d25cc | 2223 | |
2224 | /// Apply role names | |
2225 | if (isset($aliasnames[$teacher->roleid])) { | |
2226 | $teacher->rolename = $aliasnames[$teacher->roleid]->name; | |
2227 | } | |
2228 | ||
238c0dd9 | 2229 | $namesarray[] = format_string($teacher->rolename) |
4dde1463 | 2230 | . ': <a href="'.$CFG->wwwroot.'/user/view.php?id='.$teacher->id.'&course='.SITEID.'">' |
238c0dd9 | 2231 | . $fullname . '</a>'; |
4dde1463 | 2232 | } |
431cad0d | 2233 | } |
c2cb4545 | 2234 | } |
431cad0d | 2235 | |
d42c64ba | 2236 | if (!empty($namesarray)) { |
88768091 | 2237 | echo "<ul class=\"teachers\">\n<li>"; |
2238 | echo implode('</li><li>', $namesarray); | |
2239 | echo "</li></ul>"; | |
2240 | } | |
c2cb4545 | 2241 | } |
238c0dd9 | 2242 | |
88768091 | 2243 | require_once("$CFG->dirroot/enrol/enrol.class.php"); |
2244 | $enrol = enrolment_factory::factory($course->enrol); | |
146bbb8f | 2245 | echo $enrol->get_access_icons($course); |
c2cb4545 | 2246 | |
afba7be1 | 2247 | echo '</div><div class="summary">'; |
9f39c190 | 2248 | $options = NULL; |
2249 | $options->noclean = true; | |
34b5847a | 2250 | $options->para = false; |
8bdc9cac SH |
2251 | if (!isset($course->summaryformat)) { |
2252 | $course->summaryformat = FORMAT_MOODLE; | |
2253 | } | |
2254 | echo highlight($highlightterms, format_text($course->summary, $course->summaryformat, $options, $course->id)); | |
afba7be1 | 2255 | echo '</div>'; |
2256 | echo '</div>'; | |
c2cb4545 | 2257 | } |
2258 | ||
cb6fec1f | 2259 | /** |
2260 | * Prints custom user information on the home page. | |
2261 | * Over time this can include all sorts of information | |
2262 | */ | |
c2cb4545 | 2263 | function print_my_moodle() { |
e6db3026 | 2264 | global $USER, $CFG, $DB, $OUTPUT; |
c2cb4545 | 2265 | |
4f0c2d00 | 2266 | if (!isloggedin() or isguestuser()) { |
ba6018a9 | 2267 | print_error('nopermissions', '', '', 'See My Moodle'); |
c2cb4545 | 2268 | } |
2269 | ||
5b9e50ca | 2270 | $courses = get_my_courses($USER->id, 'visible DESC,sortorder ASC', array('summary')); |
0a127169 | 2271 | $rhosts = array(); |
2272 | $rcourses = array(); | |
2273 | if (!empty($CFG->mnet_dispatcher_mode) && $CFG->mnet_dispatcher_mode==='strict') { | |
2274 | $rcourses = get_my_remotecourses($USER->id); | |
2275 | $rhosts = get_my_remotehosts(); | |
2276 | } | |
2277 | ||
2278 | if (!empty($courses) || !empty($rcourses) || !empty($rhosts)) { | |
2279 | ||
2280 | if (!empty($courses)) { | |
2281 | echo '<ul class="unlist">'; | |
2282 | foreach ($courses as $course) { | |
2283 | if ($course->id == SITEID) { | |
2284 | continue; | |
2285 | } | |
2286 | echo '<li>'; | |
2287 | print_course($course); | |
2288 | echo "</li>\n"; | |
86dd62a7 | 2289 | } |
0a127169 | 2290 | echo "</ul>\n"; |
86dd62a7 | 2291 | } |
2292 | ||
0a127169 | 2293 | // MNET |
2294 | if (!empty($rcourses)) { | |
2295 | // at the IDP, we know of all the remote courses | |
2296 | foreach ($rcourses as $course) { | |
2297 | print_remote_course($course, "100%"); | |
2298 | } | |
2299 | } elseif (!empty($rhosts)) { | |
2300 | // non-IDP, we know of all the remote servers, but not courses | |
2301 | foreach ($rhosts as $host) { | |
2302 | print_remote_host($host, "100%"); | |
2303 | } | |
2304 | } | |
86dd62a7 | 2305 | unset($course); |
0a127169 | 2306 | unset($host); |
38a10939 | 2307 | |
cb6fec1f | 2308 | if ($DB->count_records("course") > (count($courses) + 1) ) { // Some courses not being displayed |
7f989948 | 2309 | echo "<table width=\"100%\"><tr><td align=\"center\">"; |
2310 | print_course_search("", false, "short"); | |
2311 | echo "</td><td align=\"center\">"; | |
5c2ed7e2 | 2312 | echo $OUTPUT->single_button("$CFG->wwwroot/course/index.php", get_string("fulllistofcourses"), "get"); |
7f989948 | 2313 | echo "</td></tr></table>\n"; |
2314 | } | |
86dd62a7 | 2315 | |
26330001 | 2316 | } else { |
cb6fec1f | 2317 | if ($DB->count_records("course_categories") > 1) { |
e6db3026 | 2318 | echo $OUTPUT->box_start("categorybox"); |
26330001 | 2319 | print_whole_category_list(); |
e6db3026 | 2320 | echo $OUTPUT->box_end(); |
26330001 | 2321 | } else { |
35d0244a | 2322 | print_courses(0); |
26330001 | 2323 | } |
607809b3 | 2324 | } |
2b8cef80 | 2325 | } |
2326 | ||
11b0c469 | 2327 | |
a8b56716 | 2328 | function print_course_search($value="", $return=false, $format="plain") { |
38a10939 | 2329 | global $CFG; |
1e0fb105 | 2330 | static $count = 0; |
2331 | ||
2332 | $count++; | |
2333 | ||
2334 | $id = 'coursesearch'; | |
2335 | ||
2336 | if ($count > 1) { | |
2337 | $id .= $count; | |
2338 | } | |
38a10939 | 2339 | |
2340 | $strsearchcourses= get_string("searchcourses"); | |
2341 | ||
1c919752 | 2342 | if ($format == 'plain') { |
1e0fb105 | 2343 | $output = '<form id="'.$id.'" action="'.$CFG->wwwroot.'/course/search.php" method="get">'; |
fcf9577a | 2344 | $output .= '<fieldset class="coursesearchbox invisiblefieldset">'; |
e42f4d92 | 2345 | $output .= '<label for="coursesearchbox">'.$strsearchcourses.': </label>'; |
cb6fec1f | 2346 | $output .= '<input type="text" id="coursesearchbox" size="30" name="search" value="'.s($value).'" />'; |
e42f4d92 | 2347 | $output .= '<input type="submit" value="'.get_string('go').'" />'; |
fcf9577a | 2348 | $output .= '</fieldset></form>'; |
1c919752 | 2349 | } else if ($format == 'short') { |
1e0fb105 | 2350 | $output = '<form id="'.$id.'" action="'.$CFG->wwwroot.'/course/search.php" method="get">'; |
fcf9577a | 2351 | $output .= '<fieldset class="coursesearchbox invisiblefieldset">'; |
b1f97418 | 2352 | $output .= '<label for="shortsearchbox">'.$strsearchcourses.': </label>'; |
cb6fec1f | 2353 | $output .= '<input type="text" id="shortsearchbox" size="12" name="search" alt="'.s($strsearchcourses).'" value="'.s($value).'" />'; |
e42f4d92 | 2354 | $output .= '<input type="submit" value="'.get_string('go').'" />'; |
fcf9577a | 2355 | $output .= '</fieldset></form>'; |
1c919752 | 2356 | } else if ($format == 'navbar') { |
fcf9577a | 2357 | $output = '<form id="coursesearchnavbar" action="'.$CFG->wwwroot.'/course/search.php" method="get">'; |
2358 | $output .= '<fieldset class="coursesearchbox invisiblefieldset">'; | |
b1f97418 | 2359 | $output .= '<label for="navsearchbox">'.$strsearchcourses.': </label>'; |
cb6fec1f | 2360 | $output .= '<input type="text" id="navsearchbox" size="20" name="search" alt="'.s($strsearchcourses).'" value="'.s($value).'" />'; |
e42f4d92 | 2361 | $output .= '<input type="submit" value="'.get_string('go').'" />'; |
fcf9577a | 2362 | $output .= '</fieldset></form>'; |
a8b56716 | 2363 | } |
2364 | ||
2365 | if ($return) { | |
2366 | return $output; | |
2367 | } | |
2368 | echo $output; | |
38a10939 | 2369 | } |
11b0c469 | 2370 | |
86dd62a7 | 2371 | function print_remote_course($course, $width="100%") { |
86dd62a7 | 2372 | global $CFG, $USER; |
2373 | ||
2374 | $linkcss = ''; | |
2375 | ||
2376 | $url = "{$CFG->wwwroot}/auth/mnet/jump.php?hostid={$course->hostid}&wantsurl=/course/view.php?id={$course->remoteid}"; | |
2377 | ||
7cd266e9 | 2378 | echo '<div class="coursebox remotecoursebox clearfix">'; |
86dd62a7 | 2379 | echo '<div class="info">'; |
2380 | echo '<div class="name"><a title="'.get_string('entercourse').'"'. | |
2381 | $linkcss.' href="'.$url.'">' | |
6ba65fa0 | 2382 | . format_string($course->fullname) .'</a><br />' |
2383 | . format_string($course->hostname) . ' : ' | |
238c0dd9 | 2384 | . format_string($course->cat_name) . ' : ' |
2385 | . format_string($course->shortname). '</div>'; | |
86dd62a7 | 2386 | echo '</div><div class="summary">'; |
2387 | $options = NULL; | |
2388 | $options->noclean = true; | |
2389 | $options->para = false; | |
2390 | echo format_text($course->summary, FORMAT_MOODLE, $options); | |
2391 | echo '</div>'; | |
2392 | echo '</div>'; | |
86dd62a7 | 2393 | } |
2394 | ||
643b67b8 | 2395 | function print_remote_host($host, $width="100%") { |
6b608f8f | 2396 | global $OUTPUT; |
643b67b8 | 2397 | |
2398 | $linkcss = ''; | |
2399 | ||
7cd266e9 | 2400 | echo '<div class="coursebox clearfix">'; |
643b67b8 | 2401 | echo '<div class="info">'; |
2402 | echo '<div class="name">'; | |
b5d0cafc | 2403 | echo '<img src="'.$OUTPUT->pix_url('i/mnethost') . '" class="icon" alt="'.get_string('course').'" />'; |
643b67b8 | 2404 | echo '<a title="'.s($host['name']).'" href="'.s($host['url']).'">' |
2405 | . s($host['name']).'</a> - '; | |
1fd80ad3 | 2406 | echo $host['count'] . ' ' . get_string('courses'); |
643b67b8 | 2407 | echo '</div>'; |
2408 | echo '</div>'; | |
caa90d56 | 2409 | echo '</div>'; |
643b67b8 | 2410 | } |
2411 | ||
86dd62a7 | 2412 | |
11b0c469 | 2413 | /// MODULE FUNCTIONS ///////////////////////////////////////////////////////////////// |
2414 | ||
2415 | function add_course_module($mod) { | |
cb6fec1f | 2416 | global $DB; |
11b0c469 | 2417 | |
e5dfd0f3 | 2418 | $mod->added = time(); |
53f4ad2c | 2419 | unset($mod->id); |
11b0c469 | 2420 | |
cb6fec1f | 2421 | return $DB->insert_record("course_modules", $mod); |
11b0c469 | 2422 | } |
2423 | ||
97928ddf | 2424 | /** |
2425 | * Returns course section - creates new if does not exist yet. | |
2426 | * @param int $relative section number | |
2427 | * @param int $courseid | |
2428 | * @return object $course_section object | |
2429 | */ | |
2430 | function get_course_section($section, $courseid) { | |
cb6fec1f | 2431 | global $DB; |
2432 | ||
2433 | if ($cw = $DB->get_record("course_sections", array("section"=>$section, "course"=>$courseid))) { | |
97928ddf | 2434 | return $cw; |
2435 | } | |
2436 | $cw = new object(); | |
cb6fec1f | 2437 | $cw->course = $courseid; |
2438 | $cw->section = $section; | |
2439 | $cw->summary = ""; | |
97928ddf | 2440 | $cw->sequence = ""; |
cb6fec1f | 2441 | $id = $DB->insert_record("course_sections", $cw); |
dc5af91a | 2442 | return $DB->get_record("course_sections", array("id"=>$id)); |
97928ddf | 2443 | } |
ece966f0 | 2444 | /** |
2445 | * Given a full mod object with section and course already defined, adds this module to that section. | |
2446 | * | |
2447 | * @param object $mod | |
2448 | * @param int $beforemod An existing ID which we will insert the new module before | |
2449 | * @return int The course_sections ID where the mod is inserted | |
2450 | */ | |
7977cffd | 2451 | function add_mod_to_section($mod, $beforemod=NULL) { |
cb6fec1f | 2452 | global $DB; |
11b0c469 | 2453 | |
cb6fec1f | 2454 | if ($section = $DB->get_record("course_sections", array("course"=>$mod->course, "section"=>$mod->section))) { |
7977cffd | 2455 | |
2456 | $section->sequence = trim($section->sequence); | |
2457 | ||
2458 | if (empty($section->sequence)) { | |
11b0c469 | 2459 | $newsequence = "$mod->coursemodule"; |
7977cffd | 2460 | |
2461 | } else if ($beforemod) { | |
2462 | $modarray = explode(",", $section->sequence); | |
2463 | ||
d857e8b6 | 2464 | if ($key = array_keys($modarray, $beforemod->id)) { |
7977cffd | 2465 | $insertarray = array($mod->id, $beforemod->id); |
2466 | array_splice($modarray, $key[0], 1, $insertarray); | |
2467 | $newsequence = implode(",", $modarray); | |
2468 | ||
2469 | } else { // Just tack it on the end anyway | |
2470 | $newsequence = "$section->sequence,$mod->coursemodule"; | |
2471 | } | |
2472 | ||
2473 | } else { | |
2474 | $newsequence = "$section->sequence,$mod->coursemodule"; | |
11b0c469 | 2475 | } |
89adb174 | 2476 | |
cb6fec1f | 2477 | if ($DB->set_field("course_sections", "sequence", $newsequence, array("id"=>$section->id))) { |
e5dfd0f3 | 2478 | return $section->id; // Return course_sections ID that was used. |
11b0c469 | 2479 | } else { |
e5dfd0f3 | 2480 | return 0; |
11b0c469 | 2481 | } |
89adb174 | 2482 | |
11b0c469 | 2483 | } else { // Insert a new record |
cb6fec1f | 2484 | $section->course = $mod->course; |
2485 | $section->section = $mod->section; | |
2486 | $section->summary = ""; | |
e5dfd0f3 | 2487 | $section->sequence = $mod->coursemodule; |
cb6fec1f | 2488 | return $DB->insert_record("course_sections", $section); |
11b0c469 | 2489 | } |
2490 | } | |
2491 | ||
48e535bc | 2492 | function set_coursemodule_groupmode($id, $groupmode) { |
cb6fec1f | 2493 | global $DB; |
a5d424df | 2494 | return $DB->set_field("course_modules", "groupmode", $groupmode, array("id"=>$id)); |
3d575e6f | 2495 | } |
2496 | ||
177d4abf | 2497 | function set_coursemodule_idnumber($id, $idnumber) { |
cb6fec1f | 2498 | global $DB; |
238c0dd9 | 2499 | return $DB->set_field("course_modules", "idnumber", $idnumber, array("id"=>$id)); |
177d4abf | 2500 | } |
4e781c7b | 2501 | |
02f66c42 | 2502 | /** |
2503 | * $prevstateoverrides = true will set the visibility of the course module | |
2504 | * to what is defined in visibleold. This enables us to remember the current | |
2505 | * visibility when making a whole section hidden, so that when we toggle | |
2506 | * that section back to visible, we are able to return the visibility of | |
2507 | * the course module back to what it was originally. | |
2508 | */ | |
2509 | function set_coursemodule_visible($id, $visible, $prevstateoverrides=false) { | |
cb6fec1f | 2510 | global $DB; |
2511 | if (!$cm = $DB->get_record('course_modules', array('id'=>$id))) { | |
978abb42 | 2512 | return false; |
2513 | } | |
cb6fec1f | 2514 | if (!$modulename = $DB->get_field('modules', 'name', array('id'=>$cm->module))) { |
978abb42 | 2515 | return false; |
2516 | } | |
cb6fec1f | 2517 | if ($events = $DB->get_records('event', array('instance'=>$cm->instance, 'modulename'=>$modulename))) { |
dcd338ff | 2518 | foreach($events as $event) { |
48e535bc | 2519 | if ($visible) { |
2520 | show_event($event); | |
2521 | } else { | |
2522 | hide_event($event); | |
2523 | } | |
dcd338ff | 2524 | } |
2525 | } | |
02f66c42 | 2526 | if ($prevstateoverrides) { |
2527 | if ($visible == '0') { | |
2528 | // Remember the current visible state so we can toggle this back. | |
cb6fec1f | 2529 | $DB->set_field('course_modules', 'visibleold', $cm->visible, array('id'=>$id)); |
02f66c42 | 2530 | } else { |
2531 | // Get the previous saved visible states. | |
cb6fec1f | 2532 | return $DB->set_field('course_modules', 'visible', $cm->visibleold, array('id'=>$id)); |
02f66c42 | 2533 | } |
2534 | } | |
cb6fec1f | 2535 | return $DB->set_field("course_modules", "visible", $visible, array("id"=>$id)); |
1acfbce5 | 2536 | } |
2537 | ||
cb6fec1f | 2538 | /** |
290130b3 | 2539 | * Delete a course module and any associated data at the course level (events) |
264867fd | 2540 | * Until 1.5 this function simply marked a deleted flag ... now it |
290130b3 | 2541 | * deletes it completely. |
2542 | * | |
2543 | */ | |
48e535bc | 2544 | function delete_course_module($id) { |
cb6fec1f | 2545 | global $CFG, $DB; |
f615fbab | 2546 | require_once($CFG->libdir.'/gradelib.php'); |
cae83708 | 2547 | require_once($CFG->dirroot.'/blog/lib.php'); |
f615fbab | 2548 | |
cb6fec1f | 2549 | if (!$cm = $DB->get_record('course_modules', array('id'=>$id))) { |
290130b3 | 2550 | return true; |
2551 | } | |
cb6fec1f | 2552 | $modulename = $DB->get_field('modules', 'name', array('id'=>$cm->module)); |
f615fbab | 2553 | //delete events from calendar |
cb6fec1f | 2554 | if ($events = $DB->get_records('event', array('instance'=>$cm->instance, 'modulename'=>$modulename))) { |
dcd338ff | 2555 | foreach($events as $event) { |
0ea03696 | 2556 | delete_event($event->id); |
dcd338ff | 2557 | } |
2558 | } | |
f615fbab | 2559 | //delete grade items, outcome items and grades attached to modules |
2560 | if ($grade_items = grade_item::fetch_all(array('itemtype'=>'mod', 'itemmodule'=>$modulename, | |
2561 | 'iteminstance'=>$cm->instance, 'courseid'=>$cm->course))) { | |
2562 | foreach ($grade_items as $grade_item) { | |
2563 | $grade_item->delete('moddelete'); | |
2564 | } | |
f615fbab | 2565 | } |
06b3a6b2 | 2566 | |
2567 | delete_context(CONTEXT_MODULE, $cm->id); | |
bf66a674 | 2568 | return $DB->delete_records('course_modules', array('id'=>$cm->id)); |
11b0c469 | 2569 | } |
2570 | ||
2571 | function delete_mod_from_section($mod, $section) { | |
cb6fec1f | 2572 | global $DB; |
11b0c469 | 2573 | |
cb6fec1f | 2574 | if ($section = $DB->get_record("course_sections", array("id"=>$section)) ) { |
11b0c469 | 2575 | |
e5dfd0f3 | 2576 | $modarray = explode(",", $section->sequence); |
11b0c469 | 2577 | |
2578 | if ($key = array_keys ($modarray, $mod)) { | |
2579 | array_splice($modarray, $key[0], 1); | |
2580 | $newsequence = implode(",", $modarray); | |
cb6fec1f | 2581 | return $DB->set_field("course_sections", "sequence", $newsequence, array("id"=>$section->id)); |
11b0c469 | 2582 | } else { |
2583 | return false; | |
2584 | } | |
89adb174 | 2585 | |
11b0c469 | 2586 | } |
7977cffd | 2587 | return false; |
11b0c469 | 2588 | } |
2589 | ||
3440ec12 | 2590 | /** |
2591 | * Moves a section up or down by 1. CANNOT BE USED DIRECTLY BY AJAX! | |
2592 | * | |
2593 | * @param object $course | |
2594 | * @param int $section | |
2595 | * @param int $move (-1 or 1) | |
2596 | */ | |
12905134 | 2597 | function move_section($course, $section, $move) { |
2598 | /// Moves a whole course section up and down within the course | |
cb6fec1f | 2599 | global $USER, $DB; |
12905134 | 2600 | |
2601 | if (!$move) { | |
2602 | return true; | |
2603 | } | |
2604 | ||
2605 | $sectiondest = $section + $move; | |
2606 | ||
2607 | if ($sectiondest > $course->numsections or $sectiondest < 1) { | |
2608 | return false; | |
2609 | } | |
2610 | ||
cb6fec1f | 2611 | if (!$sectionrecord = $DB->get_record("course_sections", array("course"=>$course->id, "section"=>$section))) { |
12905134 | 2612 | return false; |
2613 | } | |
2614 | ||
cb6fec1f | 2615 | if (!$sectiondestrecord = $DB->get_record("course_sections", array("course"=>$course->id, "section"=>$sectiondest))) { |
12905134 | 2616 | return false; |
2617 | } | |
2618 | ||
cb6fec1f | 2619 | if (!$DB->set_field("course_sections", "section", $sectiondest, array("id"=>$sectionrecord->id))) { |
12905134 | 2620 | return false; |
2621 | } | |
cb6fec1f | 2622 | if (!$DB->set_field("course_sections", "section", $section, array("id"=>$sectiondestrecord->id))) { |
12905134 | 2623 | return false; |
2624 | } | |
798b70a1 | 2625 | // if the focus is on the section that is being moved, then move the focus along |
2626 | if (isset($USER->display[$course->id]) and ($USER->display[$course->id] == $section)) { | |
2627 | course_set_display($course->id, $sectiondest); | |
2628 | } | |
5390cbb7 | 2629 | |
a987106d | 2630 | // Check for duplicates and fix order if needed. |
5390cbb7 | 2631 | // There is a very rare case that some sections in the same course have the same section id. |
cb6fec1f | 2632 | $sections = $DB->get_records('course_sections', array('course'=>$course->id), 'section ASC'); |
a987106d | 2633 | $n = 0; |
2634 | foreach ($sections as $section) { | |
2635 | if ($section->section != $n) { | |
cb6fec1f | 2636 | if (!$DB->set_field('course_sections', 'section', $n, array('id'=>$section->id))) { |
5390cbb7 | 2637 | return false; |
2638 | } | |
5390cbb7 | 2639 | } |
a987106d | 2640 | $n++; |
5390cbb7 | 2641 | } |
12905134 | 2642 | return true; |
2643 | } | |
2644 | ||
3440ec12 | 2645 | /** |
2646 | * Moves a section within a course, from a position to another. | |
2647 | * Be very careful: $section and $destination refer to section number, | |
2648 | * not id!. | |
2649 | * | |
2650 | * @param object $course | |
2651 | * @param int $section Section number (not id!!!) | |
2652 | * @param int $destination | |
2653 | * @return boolean Result | |
2654 | */ | |
2655 | function move_section_to($course, $section, $destination) { | |
2656 | /// Moves a whole course section up and down within the course | |
2657 | global $USER, $DB; | |
2658 | ||
ca255392 | 2659 | if (!$destination && $destination != 0) { |
3440ec12 | 2660 | return true; |
2661 | } | |
2662 | ||
ca255392 | 2663 | if ($destination > $course->numsections) { |
3440ec12 | 2664 | return false; |
2665 | } | |
2666 | ||
2667 | // Get all sections for this course and re-order them (2 of them should now share the same section number) | |
2668 | if (!$sections = $DB->get_records_menu('course_sections', array('course' => $course->id), | |
2669 | 'section ASC, id ASC', 'id, section')) { | |
2670 | return false; | |
2671 | } | |
2672 | ||
2673 | $sections = reorder_sections($sections, $section, $destination); | |
2674 | ||
2675 | // Update all sections | |
2676 | foreach ($sections as $id => $position) { | |
2677 | $DB->set_field('course_sections', 'section', $position, array('id' => $id)); | |
2678 | } | |
2679 | ||
2680 | // if the focus is on the section that is being moved, then move the focus along | |
2681 | if (isset($USER->display[$course->id]) and ($USER->display[$course->id] == $section)) { | |
2682 | course_set_display($course->id, $destination); | |
2683 | } | |
2684 | return true; | |
2685 | } | |
2686 | ||
2687 | /** | |
2688 | * Reordering algorithm for course sections. Given an array of section->section indexed by section->id, | |
2689 | * an original position number and a target position number, rebuilds the array so that the | |
2690 | * move is made without any duplication of section positions. | |
2691 | * Note: The target_position is the position AFTER WHICH the moved section will be inserted. If you want to | |
2692 | * insert a section before the first one, you must give 0 as the target (section 0 can never be moved). | |
2693 | * | |
2694 | * @param array $sections | |
2695 | * @param int $origin_position | |
2696 | * @param int $target_position | |
2697 | * @return array | |
2698 | */ | |
2699 | function reorder_sections($sections, $origin_position, $target_position) { | |
2700 | if (!is_array($sections)) { | |
2701 | return false; | |
2702 | } | |
2703 | ||
2704 | // We can't move section position 0 | |
2705 | if ($origin_position < 1) { | |
2706 | echo "We can't move section position 0"; | |
2707 | return false; | |
2708 | } | |
2709 | ||
2710 | // Locate origin section in sections array | |
2711 | if (!$origin_key = array_search($origin_position, $sections)) { | |
2712 | echo "searched position not in sections array"; | |
2713 | return false; // searched position not in sections array | |
2714 | } | |
2715 | ||
2716 | // Extract origin section | |
2717 | $origin_section = $sections[$origin_key]; | |
2718 | unset($sections[$origin_key]); | |
2719 | ||
2720 | // Find offset of target position (stupid PHP's array_splice requires offset instead of key index!) | |
2721 | $found = false; | |
2722 | $append_array = array(); | |
2723 | foreach ($sections as $id => $position) { | |
2724 | if ($found) { | |
2725 | $append_array[$id] = $position; | |
2726 | unset($sections[$id]); | |
2727 | } | |
2728 | if ($position == $target_position) { | |
2729 | $found = true; | |
2730 | } | |
2731 | } | |
2732 | ||
2733 | // Append moved section | |
2734 | $sections[$origin_key] = $origin_section; | |
2735 | ||
2736 | // Append rest of array (if applicable) | |
2737 | if (!empty($append_array)) { | |
2738 | foreach ($append_array as $id => $position) { | |
2739 | $sections[$id] = $position; | |
2740 | } | |
2741 | } | |
2742 | ||
2743 | // Renumber positions | |
2744 | $position = 0; | |
2745 | foreach ($sections as $id => $p) { | |
2746 | $sections[$id] = $position; | |
2747 | $position++; | |
2748 | } | |
2749 | ||
2750 | return $sections; | |
2751 | ||
2752 | } | |
2753 | ||
cb6fec1f | 2754 | /** |
2755 | * Move the module object $mod to the specified $section | |
2756 | * If $beforemod exists then that is the module | |
2757 | * before which $modid should be inserted | |
2758 | * All parameters are objects | |
2759 | */ | |
7977cffd | 2760 | function moveto_module($mod, $section, $beforemod=NULL) { |
e6db3026 | 2761 | global $DB, $OUTPUT; |
7977cffd | 2762 | |
2763 | /// Remove original module from original section | |
7977cffd | 2764 | if (! delete_mod_from_section($mod->id, $mod->section)) { |
e6db3026 | 2765 | echo $OUTPUT->notification("Could not delete module from existing section"); |
7977cffd | 2766 | } |
2767 | ||
2768 | /// Update module itself if necessary | |
2769 | ||
2770 | if ($mod->section != $section->id) { | |
89adb174 | 2771 | $mod->section = $section->id; |
bb4b6010 | 2772 | $DB->update_record("course_modules", $mod); |
48e535bc | 2773 | // if moving to a hidden section then hide module |
2774 | if (!$section->visible) { | |
2775 | set_coursemodule_visible($mod->id, 0); | |
2776 | } | |
7977cffd | 2777 | } |
2778 | ||
2779 | /// Add the module into the new section | |
2780 | ||
2781 | $mod->course = $section->course; | |
2782 | $mod->section = $section->section; // need relative reference | |
2783 | $mod->coursemodule = $mod->id; | |
2784 | ||
2785 | if (! add_mod_to_section($mod, $beforemod)) { | |
2786 | return false; | |
2787 | } | |
2788 | ||
2789 | return true; | |
7977cffd | 2790 | } |
2791 | ||
24e1eae4 | 2792 | function make_editing_buttons($mod, $absolute=false, $moveselect=true, $indent=-1, $section=-1) { |
6b608f8f | 2793 | global $CFG, $USER, $DB, $OUTPUT; |
94361e02 | 2794 | |
3d575e6f | 2795 | static $str; |
37a88449 | 2796 | static $sesskey; |
3d575e6f | 2797 | |
217a8ee9 | 2798 | $modcontext = get_context_instance(CONTEXT_MODULE, $mod->id); |
2799 | // no permission to edit | |
2800 | if (!has_capability('moodle/course:manageactivities', $modcontext)) { | |
e2cd3ed0 | 2801 | return false; |
217a8ee9 | 2802 | } |
2803 | ||
3d575e6f | 2804 | if (!isset($str)) { |
9534a8cb | 2805 | $str->assign = get_string("assignroles", 'role'); |
90ebdf65 | 2806 | $str->delete = get_string("delete"); |
2807 | $str->move = get_string("move"); | |
2808 | $str->moveup = get_string("moveup"); | |
2809 | $str->movedown = get_string("movedown"); | |
2810 | $str->moveright = get_string("moveright"); | |
2811 | $str->moveleft = get_string("moveleft"); | |
2812 | $str->update = get_string("update"); | |
2813 | $str->duplicate = get_string("duplicate"); | |
2814 | $str->hide = get_string("hide"); | |
2815 | $str->show = get_string("show"); | |
3d575e6f | 2816 | $str->clicktochange = get_string("clicktochange"); |
32d03b7b | 2817 | $str->forcedmode = get_string("forcedmode"); |
3d575e6f | 2818 | $str->groupsnone = get_string("groupsnone"); |
2819 | $str->groupsseparate = get_string("groupsseparate"); | |
2820 | $str->groupsvisible = get_string("groupsvisible"); | |
37a88449 | 2821 | $sesskey = sesskey(); |
1acfbce5 | 2822 | } |
94361e02 | 2823 | |
24e1eae4 | 2824 | if ($section >= 0) { |
75f087b6 | 2825 | $section = '&sr='.$section; // Section return |
24e1eae4 | 2826 | } else { |
2827 | $section = ''; | |
2828 | } | |
2829 | ||
94361e02 | 2830 | if ($absolute) { |
37a88449 | 2831 | $path = $CFG->wwwroot.'/course'; |
dc0dc7d5 | 2832 | } else { |
37a88449 | 2833 | $path = '.'; |
dc0dc7d5 | 2834 | } |
217a8ee9 | 2835 | if (has_capability('moodle/course:activityvisibility', $modcontext)) { |
2836 | if ($mod->visible) { | |
2837 | $hideshow = '<a class="editing_hide" title="'.$str->hide.'" href="'.$path.'/mod.php?hide='.$mod->id. | |
2838 | '&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2839 | ' src="'.$OUTPUT->pix_url('t/hide') . '" class="iconsmall" '. |
217a8ee9 | 2840 | ' alt="'.$str->hide.'" /></a>'."\n"; |
2841 | } else { | |
2842 | $hideshow = '<a class="editing_show" title="'.$str->show.'" href="'.$path.'/mod.php?show='.$mod->id. | |
2843 | '&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2844 | ' src="'.$OUTPUT->pix_url('t/show') . '" class="iconsmall" '. |
217a8ee9 | 2845 | ' alt="'.$str->show.'" /></a>'."\n"; |
2846 | } | |
530db4cd | 2847 | } else { |
2848 | $hideshow = ''; | |
7977cffd | 2849 | } |
530db4cd | 2850 | |
3d575e6f | 2851 | if ($mod->groupmode !== false) { |
2852 | if ($mod->groupmode == SEPARATEGROUPS) { | |
32d03b7b | 2853 | $grouptitle = $str->groupsseparate; |
cddbd5d5 | 2854 | $groupclass = 'editing_groupsseparate'; |
b5d0cafc | 2855 | $groupimage = $OUTPUT->pix_url('t/groups') . ''; |
37a88449 | 2856 | $grouplink = $path.'/mod.php?id='.$mod->id.'&groupmode=0&sesskey='.$sesskey; |
3d575e6f | 2857 | } else if ($mod->groupmode == VISIBLEGROUPS) { |
32d03b7b | 2858 | $grouptitle = $str->groupsvisible; |
cddbd5d5 | 2859 | $groupclass = 'editing_groupsvisible'; |
b5d0cafc | 2860 | $groupimage = $OUTPUT->pix_url('t/groupv') . ''; |
37a88449 | 2861 | $grouplink = $path.'/mod.php?id='.$mod->id.'&groupmode=1&sesskey='.$sesskey; |
32d03b7b | 2862 | } else { |
2863 | $grouptitle = $str->groupsnone; | |
90ebdf65 | 2864 | $groupclass = 'editing_groupsnone'; |
b5d0cafc | 2865 | $groupimage = $OUTPUT->pix_url('t/groupn') . ''; |
37a88449 | 2866 | $grouplink = $path.'/mod.php?id='.$mod->id.'&groupmode=2&sesskey='.$sesskey; |
32d03b7b | 2867 | } |
2868 | if ($mod->groupmodelink) { | |
90ebdf65 | 2869 | $groupmode = '<a class="'.$groupclass.'" title="'.$grouptitle.' ('.$str->clicktochange.')" href="'.$grouplink.'">'. |
0d905d9f | 2870 | '<img src="'.$groupimage.'" class="iconsmall" '. |
2871 | 'alt="'.$grouptitle.'" /></a>'; | |
3d575e6f | 2872 | } else { |
37a88449 | 2873 | $groupmode = '<img title="'.$grouptitle.' ('.$str->forcedmode.')" '. |
0d905d9f | 2874 | ' src="'.$groupimage.'" class="iconsmall" '. |
2875 | 'alt="'.$grouptitle.'" />'; | |
3d575e6f | 2876 | } |
2877 | } else { | |
2878 | $groupmode = ""; | |
2879 | } | |
e2cd3ed0 | 2880 | |
217a8ee9 | 2881 | if (has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $mod->course))) { |
2882 | if ($moveselect) { | |
2883 | $move = '<a class="editing_move" title="'.$str->move.'" href="'.$path.'/mod.php?copy='.$mod->id. | |
2884 | '&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2885 | ' src="'.$OUTPUT->pix_url('t/move') . '" class="iconsmall" '. |
217a8ee9 | 2886 | ' alt="'.$str->move.'" /></a>'."\n"; |
2887 | } else { | |
2888 | $move = '<a class="editing_moveup" title="'.$str->moveup.'" href="'.$path.'/mod.php?id='.$mod->id. | |
2889 | '&move=-1&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2890 | ' src="'.$OUTPUT->pix_url('t/up') . '" class="iconsmall" '. |
217a8ee9 | 2891 | ' alt="'.$str->moveup.'" /></a>'."\n". |
2892 | '<a class="editing_movedown" title="'.$str->movedown.'" href="'.$path.'/mod.php?id='.$mod->id. | |
2893 | '&move=1&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2894 | ' src="'.$OUTPUT->pix_url('t/down') . '" class="iconsmall" '. |
217a8ee9 | 2895 | ' alt="'.$str->movedown.'" /></a>'."\n"; |
2896 | } | |
7b44777e | 2897 | } else { |
238c0dd9 | 2898 | $move = ''; |
7977cffd | 2899 | } |
2900 | ||
932be046 | 2901 | $leftright = ''; |
217a8ee9 | 2902 | if (has_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $mod->course))) { |
932be046 | 2903 | |
78946b9b PS |
2904 | if (right_to_left()) { // Exchange arrows on RTL |
2905 | $rightarrow = 't/left'; | |
2906 | $leftarrow = 't/right'; | |
2907 | } else { | |
2908 | $rightarrow = 't/right'; | |
2909 | $leftarrow = 't/left'; | |
932be046 | 2910 | } |
238c0dd9 | 2911 | |
217a8ee9 | 2912 | if ($indent > 0) { |
2913 | $leftright .= '<a class="editing_moveleft" title="'.$str->moveleft.'" href="'.$path.'/mod.php?id='.$mod->id. | |
2914 | '&indent=-1&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2915 | ' src="'.$OUTPUT->pix_url($leftarrow).'" class="iconsmall" '. |
217a8ee9 | 2916 | ' alt="'.$str->moveleft.'" /></a>'."\n"; |
2917 | } | |
2918 | if ($indent >= 0) { | |
2919 | $leftright .= '<a class="editing_moveright" title="'.$str->moveright.'" href="'.$path.'/mod.php?id='.$mod->id. | |
2920 | '&indent=1&sesskey='.$sesskey.$section.'"><img'. | |
b5d0cafc | 2921 | ' src="'.$OUTPUT->pix_url($rightarrow).'" class="iconsmall" '. |
217a8ee9 | 2922 | ' alt="'.$str->moveright.'" /></a>'."\n"; |
2923 | } | |
37a88449 | 2924 | } |
9534a8cb | 2925 | if (has_capability('moodle/course:managegroups', $modcontext)){ |
2926 | $context = get_context_instance(CONTEXT_MODULE, $mod->id); | |
d1aa1e48 | 2927 | $assign = '<a class="editing_assign" title="'.$str->assign.'" href="'.$CFG->wwwroot.'/'.$CFG->admin.'/roles/assign.php?contextid='. |
b5d0cafc | 2928 | $context->id.'"><img src="'.$OUTPUT->pix_url('i/roles') . '" alt="'.$str->assign.'" class="iconsmall"/></a>'; |
8634e001 | 2929 | } else { |
2930 | $assign = ''; | |
9534a8cb | 2931 | } |
8634e001 | 2932 | |
90ebdf65 | 2933 | return '<span class="commands">'."\n".$leftright.$move. |
2934 | '<a class="editing_update" title="'.$str->update.'" href="'.$path.'/mod.php?update='.$mod->id. | |
37a88449 | 2935 | '&sesskey='.$sesskey.$section.'"><img'. |
b5d0cafc | 2936 | ' src="'.$OUTPUT->pix_url('t/edit') . '" class="iconsmall" '. |
90ebdf65 | 2937 | ' alt="'.$str->update.'" /></a>'."\n". |
2938 | '<a class="editing_delete" title="'.$str->delete.'" href="'.$path.'/mod.php?delete='.$mod->id. | |
37a88449 | 2939 | '&sesskey='.$sesskey.$section.'"><img'. |
b5d0cafc | 2940 | ' src="'.$OUTPUT->pix_url('t/delete') . '" class="iconsmall" '. |
9534a8cb | 2941 | ' alt="'.$str->delete.'" /></a>'."\n".$hideshow.$groupmode."\n".$assign.'</span>'; |
90845098 | 2942 | } |
2943 | ||
b61efafb | 2944 | /** |
264867fd | 2945 | * given a course object with shortname & fullname, this function will |
b61efafb | 2946 | * truncate the the number of chars allowed and add ... if it was too long |
2947 | */ | |
2948 | function course_format_name ($course,$max=100) { | |
264867fd | 2949 | |
6ba65fa0 | 2950 | $str = $course->shortname.': '. $course->fullname; |
b61efafb | 2951 | if (strlen($str) <= $max) { |
2952 | return $str; | |
2953 | } | |
2954 | else { | |
2955 | return substr($str,0,$max-3).'...'; | |
2956 | } | |
2957 | } | |
2958 | ||
2959 | /** | |
2960 | * This function will return true if the given course is a child course at all | |
2961 | */ | |
2962 | function course_in_meta ($course) { | |
cb6fec1f | 2963 | global $DB; |
2964 | return $DB->record_exists("course_meta", array("child_course"=>$course->id)); | |
b61efafb | 2965 | } |
2966 | ||
48e535bc | 2967 | |
cb6fec1f | 2968 | function update_restricted_mods($course, $mods) { |
2969 | global $DB; | |
ddb0a19f | 2970 | |
2971 | /// Delete all the current restricted list | |
cb6fec1f | 2972 | $DB->delete_records('course_allowed_modules', array('course'=>$course->id)); |
ddb0a19f | 2973 | |
0705ff84 | 2974 | if (empty($course->restrictmodules)) { |
ddb0a19f | 2975 | return; // We're done |
0705ff84 | 2976 | } |
ddb0a19f | 2977 | |
2978 | /// Insert the new list of restricted mods | |
2979 | foreach ($mods as $mod) { | |
2980 | if ($mod == 0) { | |
2981 | continue; // this is the 'allow none' option | |
0705ff84 | 2982 | } |
ddb0a19f | 2983 | $am = new object(); |
2984 | $am->course = $course->id; | |
2985 | $am->module = $mod; | |
cb6fec1f | 2986 | $DB->insert_record('course_allowed_modules',$am); |
0705ff84 | 2987 | } |
2988 | } | |
2989 | ||
2990 | /** | |
2991 | * This function will take an int (module id) or a string (module name) | |
2992 | * and return true or false, whether it's allowed in the given course (object) | |
264867fd | 2993 | * $mod is not allowed to be an object, as the field for the module id is inconsistent |
0705ff84 | 2994 | * depending on where in the code it's called from (sometimes $mod->id, sometimes $mod->module) |
2995 | */ | |
2996 | ||
2997 | function course_allowed_module($course,$mod) { | |
cb6fec1f | 2998 | global $DB; |
238c0dd9 | 2999 | |
0705ff84 | 3000 | if (empty($course->restrictmodules)) { |
3001 | return true; | |
3002 | } | |
264867fd | 3003 | |
ddb0a19f | 3004 | // Admins and admin-like people who can edit everything can also add anything. |
3005 | // This is a bit wierd, really. I debated taking it out but it's enshrined in help for the setting. | |
8e480396 | 3006 | if (has_capability('moodle/course:update', get_context_instance(CONTEXT_SYSTEM))) { |
0705ff84 | 3007 | return true; |
3008 | } | |
ddb0a19f | 3009 | |
0705ff84 | 3010 | if (is_numeric($mod)) { |
3011 | $modid = $mod; | |
3012 | } else if (is_string($mod)) { | |
cb6fec1f | 3013 | $modid = $DB->get_field('modules', 'id', array('name'=>$mod)); |
0705ff84 | 3014 | } |
3015 | if (empty($modid)) { | |
3016 | return false; | |
3017 | } | |
238c0dd9 | 3018 | |
cb6fec1f | 3019 | return $DB->record_exists('course_allowed_modules', array('course'=>$course->id, 'module'=>$modid)); |
0705ff84 | 3020 | } |
3021 | ||
e2b347e9 | 3022 | /** |
3023 | * Recursively delete category including all subcategories and courses. | |
a3a1708f | 3024 | * @param object $category |
3025 | * @param boolean $showfeedback display some notices | |
3026 | * @return array return deleted courses | |
e2b347e9 | 3027 | */ |
3028 | function category_delete_full($category, $showfeedback=true) { | |
cb6fec1f | 3029 | global $CFG, $DB; |
e2b347e9 | 3030 | require_once($CFG->libdir.'/gradelib.php'); |
3031 | require_once($CFG->libdir.'/questionlib.php'); | |
e60ff536 | 3032 | require_once($CFG->dirroot.'/cohort/lib.php'); |
e2b347e9 | 3033 | |
cb6fec1f | 3034 | if ($children = $DB->get_records('course_categories', array('parent'=>$category->id), 'sortorder ASC')) { |
e2b347e9 | 3035 | foreach ($children as $childcat) { |
a3a1708f | 3036 | category_delete_full($childcat, $showfeedback); |
e2b347e9 | 3037 | } |
3038 | } | |
3039 | ||
a3a1708f | 3040 | $deletedcourses = array(); |
cb6fec1f | 3041 | if ($courses = $DB->get_records('course', array('category'=>$category->id), 'sortorder ASC')) { |
e2b347e9 | 3042 | foreach ($courses as $course) { |
2942a5cd | 3043 | if (!delete_course($course, false)) { |
a3a1708f | 3044 | throw new moodle_exception('cannotdeletecategorycourse','','',$course->shortname); |
e2b347e9 | 3045 | } |
a3a1708f | 3046 | $deletedcourses[] = $course; |
e2b347e9 | 3047 | } |
3048 | } | |
3049 | ||
e60ff536 PS |
3050 | // move or delete cohorts in this context |
3051 | cohort_delete_category($category); | |
3052 | ||
e2b347e9 | 3053 | // now delete anything that may depend on course category context |
3054 | grade_course_category_delete($category->id, 0, $showfeedback); | |
3055 | if (!question_delete_course_category($category, 0, $showfeedback)) { | |
a3a1708f | 3056 | throw new moodle_exception('cannotdeletecategoryquestions','','',$category->name); |
e2b347e9 | 3057 | } |
3058 | ||
3059 | // finally delete the category and it's context | |
cb6fec1f | 3060 | $DB->delete_records('course_categories', array('id'=>$category->id)); |
e2b347e9 | 3061 | delete_context(CONTEXT_COURSECAT, $category->id); |
3062 | ||
2942a5cd | 3063 | events_trigger('course_category_deleted', $category); |
e2b347e9 | 3064 | |
2f48819b | 3065 | return $deletedcourses; |
e2b347e9 | 3066 | } |
3067 | ||
3068 | /** | |
3069 | * Delete category, but move contents to another category. | |
3070 | * @param object $ccategory | |
3071 | * @param int $newparentid category id | |
3072 | * @return bool status | |
3073 | */ | |
3074 | function category_delete_move($category, $newparentid, $showfeedback=true) { | |
e6db3026 | 3075 | global $CFG, $DB, $OUTPUT; |
e2b347e9 | 3076 | require_once($CFG->libdir.'/gradelib.php'); |
3077 | require_once($CFG->libdir.'/questionlib.php'); | |
e60ff536 | 3078 | require_once($CFG->dirroot.'/cohort/lib.php'); |
e2b347e9 | 3079 | |
cb6fec1f | 3080 | if (!$newparentcat = $DB->get_record('course_categories', array('id'=>$newparentid))) { |
e2b347e9 | 3081 | return false; |
3082 | } | |
3083 | ||
cb6fec1f | 3084 | if ($children = $DB->get_records('course_categories', array('parent'=>$category->id), 'sortorder ASC')) { |
e2b347e9 | 3085 | foreach ($children as $childcat) { |
90ee78e2 | 3086 | move_category($childcat, $newparentcat); |
e2b347e9 | 3087 | } |
3088 | } | |
3089 | ||
cb6fec1f | 3090 | if ($courses = $DB->get_records('course', array('category'=>$category->id), 'sortorder ASC', 'id')) { |
e2b347e9 | 3091 | if (!move_courses(array_keys($courses), $newparentid)) { |
e6db3026 | 3092 | echo $OUTPUT->notification("Error moving courses"); |
e2b347e9 | 3093 | return false; |
3094 | } | |
e6db3026 | 3095 | echo $OUTPUT->notification(get_string('coursesmovedout', '', format_string($category->name)), 'notifysuccess'); |
e2b347e9 | 3096 | } |
3097 | ||
e60ff536 PS |
3098 | // move or delete cohorts in this context |
3099 | cohort_delete_category($category); | |
3100 | ||
e2b347e9 | 3101 |