MDL-65069 mod_forum: moodle_url to ensure we call the correct post.php
[moodle.git] / admin / tasklogs.php
blob6684a7ebc4bf187e6add831f9037978aa6222572
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);
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 require_login();
45 require_capability('moodle/site:config', context_system::instance());
46 admin_externalpage_setup('tasklogs');
48 $logid = optional_param('logid', null, PARAM_INT);
49 $download = optional_param('download', false, PARAM_BOOL);
51 if (null !== $logid) {
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', false);
60 exit;
63 $renderer = $PAGE->get_renderer('tool_task');
65 echo $OUTPUT->header();
66 echo $OUTPUT->render_from_template('core_admin/tasklogs', (object) [
67 'action' => $pageurl->out(),
68 'filter' => $filter,
69 'resultfilteroptions' => [
70 (object) [
71 'value' => -1,
72 'title' => get_string('all'),
73 'selected' => (-1 === $result),
75 (object) [
76 'value' => 0,
77 'title' => get_string('success'),
78 'selected' => (0 === $result),
80 (object) [
81 'value' => 1,
82 'title' => get_string('task_result:failed', 'admin'),
83 'selected' => (1 === $result),
86 ]);
88 $table = new \core_admin\task_log_table($filter, $result);
89 $table->baseurl = $pageurl;
90 $table->out(100, false);
92 echo $OUTPUT->footer();