Skip to content
GitLab
Menu
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
ffc227c9
Commit
ffc227c9
authored
Mar 18, 2022
by
Andrew Nicols
Browse files
MDL-74235 output: Fall back to icon and support monologo
parent
ad6dc71c
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/outputlib.php
View file @
ffc227c9
...
...
@@ -2103,24 +2103,43 @@ class theme_config {
}
else
{
if
(
strpos
(
$component
,
'_'
)
===
false
)
{
$component
=
'
mod_
'
.
$component
;
$component
=
"
mod_
{
$component
}
"
;
}
list
(
$type
,
$plugin
)
=
explode
(
'_'
,
$component
,
2
);
if
(
$imagefile
=
$this
->
image_exists
(
"
$this->dir
/pix_plugins/
$type
/
$plugin
/
$image
"
,
$svg
))
{
return
$imagefile
;
// In Moodle 4.0 we introduced a new image format.
// Support that image format here.
$candidates
=
[
$image
];
if
(
$type
===
'mod'
)
{
if
(
$image
===
'icon'
)
{
debugging
(
"The 'icon' image for activity modules has been replaced with a new 'monologo'. "
.
"Please update your calling code to fetch the new icon where possible. "
.
"Called for component
{
$component
}
."
,
DEBUG_DEVELOPER
);
}
$candidates
=
[
'monologo'
,
'icon'
];
}
foreach
(
array_reverse
(
$this
->
parent_configs
)
as
$parent_config
)
{
// base first, the immediate parent last
if
(
$imagefile
=
$this
->
image_exists
(
"
$parent_config->dir
/pix_plugins/
$type
/
$plugin
/
$image
"
,
$svg
))
{
foreach
(
$candidates
as
$image
)
{
if
(
$imagefile
=
$this
->
image_exists
(
"
$this->dir
/pix_plugins/
$type
/
$plugin
/
$image
"
,
$svg
))
{
return
$imagefile
;
}
// Base first, the immediate parent last.
foreach
(
array_reverse
(
$this
->
parent_configs
)
as
$parentconfig
)
{
if
(
$imagefile
=
$this
->
image_exists
(
"
$parentconfig->dir
/pix_plugins/
$type
/
$plugin
/
$image
"
,
$svg
))
{
return
$imagefile
;
}
}
if
(
$imagefile
=
$this
->
image_exists
(
"
$CFG->dataroot
/pix_plugins/
$type
/
$plugin
/
$image
"
,
$svg
))
{
return
$imagefile
;
}
$dir
=
core_component
::
get_plugin_directory
(
$type
,
$plugin
);
if
(
$imagefile
=
$this
->
image_exists
(
"
$dir
/pix/
$image
"
,
$svg
))
{
return
$imagefile
;
}
}
if
(
$imagefile
=
$this
->
image_exists
(
"
$CFG->dataroot
/pix_plugins/
$type
/
$plugin
/
$image
"
,
$svg
))
{
return
$imagefile
;
}
$dir
=
core_component
::
get_plugin_directory
(
$type
,
$plugin
);
if
(
$imagefile
=
$this
->
image_exists
(
"
$dir
/pix/
$image
"
,
$svg
))
{
return
$imagefile
;
}
return
null
;
}
...
...
mod/upgrade.txt
View file @
ffc227c9
...
...
@@ -7,6 +7,8 @@ information provided here is intended especially for developers.
the settings_navigation class in order to obtain the correct moodle_page information associated to the given settings
navigation. After the recent changes to the navigation in single activity courses, using the global $PAGE may result
in returning inaccurate data in this course format, therefore it is advisable to use $settingsnavigation->get_page().
* A new style of icons has been created for activities. When creating an icon in the new style it should be named
'monologo' and can site alongside the legacy icon if desired. Only the new logo types will be used.
=== 3.9 ===
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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