mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Support PNG and SVG icon sets for point level icons #1739
This commit is contained in:
parent
f1c839042c
commit
f2ff393592
5 changed files with 29 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue