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:
Rajesh Taneja
2013-03-04 01:49:02 +01:00
committed by Eloy Lafuente (stronk7)
parent 121e604851
commit 9fd0cb9cb1
+8
View File
@@ -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.