mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
102 lines
3.3 KiB
PHP
102 lines
3.3 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Moodle 404 Error page
|
|
*
|
|
* This is for 404 error pages served by the webserver and then passed
|
|
* to Moodle to be rendered using the site theme.
|
|
*
|
|
* ErrorDocument 404 /error/index.php
|
|
*
|
|
* @package core
|
|
* @copyright 2020 Brendan Heywood <brendan@catalyst-au.net>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
// @codingStandardsIgnoreStart
|
|
require('../config.php');
|
|
// @codingStandardsIgnoreEnd
|
|
|
|
$context = context_system::instance();
|
|
$title = get_string('pagenotexisttitle', 'error');
|
|
$PAGE->set_url('/error/index.php');
|
|
$PAGE->set_context($context);
|
|
$PAGE->set_title($title);
|
|
$PAGE->set_heading($title);
|
|
$PAGE->navbar->add($title);
|
|
|
|
$canmessage = has_capability('moodle/site:senderrormessage', $context);
|
|
|
|
$supportuser = core_user::get_support_user();
|
|
|
|
// We can only message support if both the user has the capability
|
|
// and the support user is a real user.
|
|
if ($canmessage) {
|
|
$canmessage = core_user::is_real_user($supportuser->id);
|
|
}
|
|
|
|
$mform = new \core\form\error_feedback($CFG->wwwroot . '/error/index.php');
|
|
|
|
if ($data = $mform->get_data()) {
|
|
|
|
if (!$canmessage) {
|
|
redirect($CFG->wwwroot);
|
|
}
|
|
|
|
// Send the message and redirect.
|
|
$message = new \core\message\message();
|
|
$message->courseid = SITEID;
|
|
$message->component = 'moodle';
|
|
$message->name = 'errors';
|
|
$message->userfrom = $USER;
|
|
$message->userto = core_user::get_support_user();
|
|
$message->subject = 'Error: '. $data->referer .' -> '. $data->requested;
|
|
$message->fullmessage = $data->text;
|
|
$message->fullmessageformat = FORMAT_PLAIN;
|
|
$message->fullmessagehtml = '';
|
|
$message->smallmessage = '';
|
|
$message->contexturl = $data->requested;
|
|
message_send($message);
|
|
|
|
redirect($CFG->wwwroot, get_string('sendmessagesent', 'error', $data->requested), 5);
|
|
exit;
|
|
}
|
|
|
|
echo $OUTPUT->header();
|
|
echo $OUTPUT->notification(get_string('pagenotexist', 'error', s($ME)), 'error');
|
|
|
|
if (!empty($CFG->supportpage)) {
|
|
echo \html_writer::tag('h4', get_string('supportpage', 'admin'));
|
|
$link = \html_writer::link($CFG->supportpage, $CFG->supportpage);
|
|
echo \html_writer::tag('p', $link);
|
|
}
|
|
if (!empty($CFG->supportemail)) {
|
|
echo \html_writer::tag('h4', get_string('supportemail', 'admin'));
|
|
$link = \html_writer::link('mailto:' . $CFG->supportemail, $CFG->supportemail);
|
|
echo \html_writer::tag('p', $link);
|
|
}
|
|
|
|
if ($canmessage) {
|
|
echo \html_writer::tag('h4', get_string('sendmessage', 'error'));
|
|
$mform->display();
|
|
} else {
|
|
echo $OUTPUT->continue_button($CFG->wwwroot);
|
|
}
|
|
|
|
echo $OUTPUT->footer();
|
|
|