Merge branch 'MDL-75909-311' of https://github.com/andrewnicols/moodle into MOODLE_31...
[moodle.git] / admin / tasklogs.php
blob9d100c0b1f802beb2872ce0880c58ab274f76f00
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Task log.
20 * @package admin
21 * @copyright 2018 Andrew Nicols <andrew@nicols.co.uk>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once(__DIR__ . '/../config.php');
26 require_once("{$CFG->libdir}/adminlib.php");
27 require_once("{$CFG->libdir}/tablelib.php");
28 require_once("{$CFG->libdir}/filelib.php");
30 $filter = optional_param('filter', '', PARAM_RAW);
31 $result = optional_param('result', null, PARAM_INT);
33 $pageurl = new \moodle_url('/admin/tasklogs.php');
34 $pageurl->param('filter', $filter);
35 $pageurl->param('result', $result);
37 $PAGE->set_url($pageurl);
38 $PAGE->set_context(context_system::instance());
39 $PAGE->set_pagelayout('admin');
40 $strheading = get_string('tasklogs', 'tool_task');
41 $PAGE->set_title($strheading);
42 $PAGE->set_heading($strheading);
44 admin_externalpage_setup('tasklogs');
46 $logid = optional_param('logid', null, PARAM_INT);
47 $download = optional_param('download', false, PARAM_BOOL);
49 if (null !== $logid) {
50 // Raise memory limit in case the log is large.
51 raise_memory_limit(MEMORY_HUGE);
52 $log = $DB->get_record('task_log', ['id' => $logid], '*', MUST_EXIST);
54 if ($download) {
55 $filename = str_replace('\\', '_', $log->classname) . "-{$log->id}.log";
56 header("Content-Disposition: attachment; filename=\"{$filename}\"");
59 readstring_accel($log->output, 'text/plain');
60 exit;
63 $renderer = $PAGE->get_renderer('tool_task');
65 echo $OUTPUT->header();
67 // Output the search form.
68 echo $OUTPUT->render_from_template('core_admin/tasklogs', (object) [
69 'action' => $pageurl->out(),
70 'filter' => htmlentities($filter),
71 'resultfilteroptions' => [
72 (object) [
73 'value' => -1,
74 'title' => get_string('all'),
75 'selected' => (-1 === $result),
77 (object) [
78 'value' => 0,
79 'title' => get_string('success'),
80 'selected' => (0 === $result),
82 (object) [
83 'value' => 1,
84 'title' => get_string('task_result:failed', 'admin'),
85 'selected' => (1 === $result),
88 ]);
90 // Output any matching logs.
91 $table = new \core_admin\task_log_table($filter, $result);
92 $table->baseurl = $pageurl;
93 $table->out(100, false);
95 echo $OUTPUT->footer();