MDL-37338 Calendar: User will not see calendar subscription, which he/she can't edit
Signed-off-by: Rajesh Taneja <[email protected]>
This commit is contained in:
committed by
Eloy Lafuente (stronk7)
parent
4ea25c227c
commit
a608b0e670
@@ -115,6 +115,14 @@ $PAGE->set_button(calendar_preferences_button($course));
|
||||
$renderer = $PAGE->get_renderer('core_calendar');
|
||||
|
||||
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.
|
||||
echo $renderer->subscription_details($courseid, $subscriptions, $importresults);
|
||||
// Display the add subscription form.
|
||||
|
||||
Reference in New Issue
Block a user