mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00

you want to completely reload the capabilities for the current user. Basically it will deal nicely with the default site-wide permissions depending on the current user. More background in the comments on MDL-6963 Merged from stable
36 lines
971 B
PHP
36 lines
971 B
PHP
<?php // $Id$
|
|
|
|
require("../../config.php");
|
|
require_once("$CFG->dirroot/enrol/paypal/enrol.php");
|
|
|
|
$id = required_param('id', PARAM_INT);
|
|
|
|
if (!$course = get_record("course", "id", $id)) {
|
|
redirect($CFG->wwwroot);
|
|
}
|
|
|
|
if (! $context = get_context_instance(CONTEXT_COURSE, $course->id)) {
|
|
redirect($CFG->wwwroot);
|
|
}
|
|
|
|
require_login();
|
|
|
|
/// Refreshing enrolment data in the USER session
|
|
load_all_capabilities();
|
|
|
|
if ($SESSION->wantsurl) {
|
|
$destination = $SESSION->wantsurl;
|
|
unset($SESSION->wantsurl);
|
|
} else {
|
|
$destination = "$CFG->wwwroot/course/view.php?id=$course->id";
|
|
}
|
|
|
|
if (has_capability('moodle/course:view', $context)) {
|
|
redirect($destination, get_string('paymentthanks', '', $course->fullname));
|
|
|
|
} else { /// Somehow they aren't enrolled yet! :-(
|
|
print_header();
|
|
notice(get_string('paymentsorry', '', $course), $destination);
|
|
}
|
|
|
|
?>
|