Module:Inventory icon: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
file = filePrefix 'Invicon ' .. fileName .. '.png' | file = filePrefix 'Invicon ' .. fileName .. '.png' | ||
end | end | ||
-- if file:match( '%.gif$' ) or file:match( '%.png$' ) then | |||
-- file = 'Invicon ' .. file | |||
-- else | |||
-- file = 'Invicon ' .. file .. '.png' | |||
-- 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]]' | ||
end | end | ||
return p | return p |
Revision as of 07:13, 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
-- if file:match( '%.gif$' ) or file:match( '%.png$' ) then
-- file = 'Invicon ' .. file
-- else
-- file = 'Invicon ' .. file .. '.png'
-- end
return '[[File:' .. file .. '|32x32px|link=' .. ( link or '' ) .. '|' .. ( title or '' ) .. '|class=pixel-image]]'
end
return p