Module:Inventory icon: Difference between revisions
Jump to navigation
Jump to search
m (1 revision imported: Imported from minecraft.wiki) |
No edit summary |
||
Line 11: | Line 11: | ||
local title = args.title | local title = args.title | ||
local filePrefix,fileName = s:match("(.+):(.+)") | |||
if file:match( '%.gif$' ) or file:match( '%.png$' ) then | if file:match( '%.gif$' ) or file:match( '%.png$' ) then | ||
file = 'Invicon ' .. | file = filePrefix .. 'Invicon ' .. fileName | ||
else | else | ||
file = 'Invicon ' .. | file = filePrefix 'Invicon ' .. fileName .. '.png' | ||
end | end | ||
return '[[File:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. '|class=pixel-image]]' | return '[[File:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. '|class=pixel-image]]' |
Revision as of 07:12, 31 October 2023
This is the documentation page. It will be transcluded into the main module page. See Template:Documentation for more information
This code has been modified from its original version to provide better support for Inventory icons with custom namespaces.
Usage
Used by {{Inventory icon}}
.
fr:Module:Icône inventaire it:Modulo:Inventory icon
local p = {}
p.icon = function( f )
local args = f
if f == mw.getCurrentFrame() then
args = f:getParent().args
end
local file = args[1]
local link = args.link
local title = args.title
local filePrefix,fileName = s:match("(.+):(.+)")
if file:match( '%.gif$' ) or file:match( '%.png$' ) then
file = filePrefix .. 'Invicon ' .. fileName
else
file = filePrefix 'Invicon ' .. fileName .. '.png'
end
return '[[File:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. '|class=pixel-image]]'
end
return p