mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 10:26:40 +02:00
62 lines
1.9 KiB
PHP
62 lines
1.9 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/>.
|
|
|
|
/**
|
|
* Displays help on a new page.
|
|
*
|
|
* @copyright 2014 Mark Nelson <markn@moodle.com>
|
|
* @package tool_monitor
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
define('NO_MOODLE_COOKIES', true);
|
|
|
|
require_once('../../../config.php');
|
|
|
|
$type = required_param('type', PARAM_ALPHA);
|
|
$id = required_param('id', PARAM_INT);
|
|
$lang = optional_param('lang', 'en', PARAM_LANG);
|
|
|
|
// We don't actually modify the session here as we have NO_MOODLE_COOKIES set.
|
|
$SESSION->lang = $lang;
|
|
|
|
$PAGE->set_url('/admin/tool/monitor/help.php');
|
|
$PAGE->set_pagelayout('popup');
|
|
|
|
if ($type == 'rule') {
|
|
$item = \tool_monitor\rule_manager::get_rule($id);
|
|
} else { // Must be a subscription.
|
|
$item = \tool_monitor\subscription_manager::get_subscription($id);
|
|
}
|
|
|
|
if ($item->courseid) {
|
|
$PAGE->set_context(context_course::instance($item->courseid));
|
|
} else { // Must be system context.
|
|
$PAGE->set_context(context_system::instance());
|
|
}
|
|
|
|
// Get the help string data.
|
|
$data = tool_monitor\output\helpicon\renderable::get_help_string_parameters($type, $id);
|
|
|
|
echo $OUTPUT->header();
|
|
if (!empty($data->heading)) {
|
|
echo $OUTPUT->heading($data->heading, 1, 'helpheading');
|
|
}
|
|
echo $data->text;
|
|
if (isset($data->completedoclink)) {
|
|
echo $data->completedoclink;
|
|
}
|
|
echo $OUTPUT->footer();
|