Support PNG and SVG icon sets for point level icons #1739

This commit is contained in:
Kijin Sung 2021-07-01 14:58:33 +09:00
parent f1c839042c
commit f2ff393592
5 changed files with 29 additions and 4 deletions

View file

@ -54,7 +54,8 @@ function pointLevelIconTrans($matches, $addon_info)
$text = $matches[5];
// Get a path where level icon is
$level_icon = sprintf('%smodules/point/icons/%s/%d.gif', Context::getRequestUri(), $config->level_icon, $level);
$level_icon_type = $config->level_icon_type ?? 'gif';
$level_icon = sprintf('%smodules/point/icons/%s/%d.%s', Context::getRequestUri(), $config->level_icon, $level, $level_icon_type);
// Get per to go to the next level if not a top level
$per = NULL;