MDL-82740 core: Check for monologo icons in theme overrides

This commit is contained in:
Jun Pataleta 2024-08-24 00:57:34 +08:00
parent 62c4f8a76c
commit ad913b65ee
No known key found for this signature in database
GPG Key ID: F83510526D99E2C7

View File

@ -1566,10 +1566,15 @@ $cache = ' . var_export($cache, true) . ';
* @return bool True if the plugin has a monologo icon
*/
public static function has_monologo_icon(string $plugintype, string $pluginname): bool {
global $PAGE;
$plugindir = self::get_plugin_directory($plugintype, $pluginname);
if ($plugindir === null) {
return false;
}
return file_exists("$plugindir/pix/monologo.svg") || file_exists("$plugindir/pix/monologo.png");
$theme = \theme_config::load($PAGE->theme->name);
$component = self::normalize_componentname("{$plugintype}_{$pluginname}");
$hassvgmonologo = $theme->resolve_image_location('monologo', $component, true) !== null;
$haspngmonologo = $theme->resolve_image_location('monologo', $component) !== null;
return $haspngmonologo || $hassvgmonologo;
}
}