Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moodle
moodle
Commits
7b3fdc47
Commit
7b3fdc47
authored
Aug 12, 2020
by
Andrew Nicols
Committed by
Jenkins
Sep 03, 2020
Browse files
MDL-68974 calendar: Use page context for block check
parent
e0b4a480
Changes
1
Show whitespace changes
Inline
Side-by-side
calendar/lib.php
View file @
7b3fdc47
...
...
@@ -1268,9 +1268,12 @@ class calendar_information {
* @param string|null $view preference view options (eg: day, month, upcoming)
*/
public
function
add_sidecalendar_blocks
(
core_calendar_renderer
$renderer
,
$showfilters
=
false
,
$view
=
null
)
{
if
(
!
has_capability
(
'moodle/block:view'
,
$this
->
context
)
)
{
global
$PAGE
;
if
(
!
has_capability
(
'moodle/block:view'
,
$PAGE
->
context
)
)
{
return
;
}
if
(
$showfilters
)
{
$filters
=
new
block_contents
();
$filters
->
content
=
$renderer
->
event_filter
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment