MDL-37338 Calendar: User will not see calendar subscription, which he/she can't edit

Signed-off-by: Rajesh Taneja <rajesh@moodle.com>
This commit is contained in:
Rajesh Taneja 2013-01-14 14:29:08 +08:00 committed by Eloy Lafuente (stronk7)
parent 4ea25c227c
commit a608b0e670

View file

@ -115,6 +115,14 @@ $PAGE->set_button(calendar_preferences_button($course));
$renderer = $PAGE->get_renderer('core_calendar'); $renderer = $PAGE->get_renderer('core_calendar');
echo $OUTPUT->header(); echo $OUTPUT->header();
// Filter subscriptions which user can't edit.
foreach($subscriptions as $subscription) {
if (!calendar_can_edit_subscription($subscription)) {
unset($subscriptions[$subscription->id]);
}
}
// Display a table of subscriptions. // Display a table of subscriptions.
echo $renderer->subscription_details($courseid, $subscriptions, $importresults); echo $renderer->subscription_details($courseid, $subscriptions, $importresults);
// Display the add subscription form. // Display the add subscription form.