moodle_local_treestudyplan/doc.php

54 lines
1.6 KiB
PHP
Raw Normal View History

2023-06-30 22:47:08 +02:00
<?php
2023-08-24 23:02:41 +02:00
// This file is part of the Studyplan plugin for Moodle
//
// 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 <https://www.gnu.org/licenses/>.
/**
*
* @package local_treestudyplan
* @copyright 2023 P.M. Kuipers
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
2023-06-30 22:47:08 +02:00
require_once("../../config.php");
require_once($CFG->libdir.'/weblib.php');
$systemcontext = context_system::instance();
2023-08-24 23:02:41 +02:00
$PAGE->set_url("/local/treestudyplan/doc.php", array());
2023-07-02 22:58:54 +02:00
$PAGE->requires->css(new moodle_url($CFG->wwwroot.'/local/treestudyplan/css/devstyles.css'));
2023-06-30 22:47:08 +02:00
$PAGE->set_pagelayout('base');
$PAGE->set_context($systemcontext);
require_login();
$pi = $_SERVER['PATH_INFO'];
$file = $CFG->dirroot."/local/treestudyplan/doc".$pi;
2023-08-24 23:02:41 +02:00
// Fallback to index.
if (!file_exists($file)) {
2023-06-30 22:47:08 +02:00
$file = $CFG->dirroot."/local/treestudyplan/doc/index.htm";
}
$mime = mime_content_type($file);
2023-08-24 23:02:41 +02:00
$text_types = ["text/html", "text/plain"];
2023-06-30 22:47:08 +02:00
2023-08-24 23:02:41 +02:00
if ( in_array($mime, $text_types)) {
2023-06-30 22:47:08 +02:00
print $OUTPUT->header();
print file_get_contents($file);
print $OUTPUT->footer();
}
else {
header("Content-type: {$mime}");
print file_get_contents($file);
}