2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
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);
36 $PAGE->set_url($pageurl);
37 $PAGE->set_context(context_system
::instance());
38 $PAGE->set_pagelayout('admin');
39 $strheading = get_string('tasklogs', 'tool_task');
40 $PAGE->set_title($strheading);
41 $PAGE->set_heading($strheading);
43 admin_externalpage_setup('tasklogs');
45 $logid = optional_param('logid', null, PARAM_INT
);
46 $download = optional_param('download', false, PARAM_BOOL
);
48 if (null !== $logid) {
49 $log = $DB->get_record('task_log', ['id' => $logid], '*', MUST_EXIST
);
52 $filename = str_replace('\\', '_', $log->classname
) . "-{$log->id}.log";
53 header("Content-Disposition: attachment; filename=\"{$filename}\"");
56 readstring_accel($log->output
, 'text/plain');
60 $renderer = $PAGE->get_renderer('tool_task');
62 echo $OUTPUT->header();
63 echo $OUTPUT->render_from_template('core_admin/tasklogs', (object) [
64 'action' => $pageurl->out(),
66 'resultfilteroptions' => [
69 'title' => get_string('all'),
70 'selected' => (-1 === $result),
74 'title' => get_string('success'),
75 'selected' => (0 === $result),
79 'title' => get_string('task_result:failed', 'admin'),
80 'selected' => (1 === $result),
85 $table = new \core_admin\task_log_table
($filter, $result);
86 $table->baseurl
= $pageurl;
87 $table->out(100, false);
89 echo $OUTPUT->footer();