Module:Infobox
Implements {{Infobox}}
Usage
de:Modul:Infobox es:Módulo:Infobox fr:Module:Infobox it:Modulo:Infobox ja:モジュール:Infobox ko:모듈:Infobox lzh:模組:Infobox nl:Module:Infobox pl:Moduł:Infobox pt:Módulo:Infobox ru:Модуль:Карточка th:มอดูล:Infobox uk:Модуль:Картка zh:Module:Infobox
local p = {}
function p.box( f )
local args = require( 'Module:ProcessArgs' ).merge( true )
local title = args.title or mw.title.getCurrentTitle().baseText
local imageArea = args.imagearea
if not imageArea or imageArea ~= 'none' then
local images = {}
local invImages = {}
local defaultImageSize = args.defaultimagesize or '150px'
local firstImage = args.image or args.image1 or title .. '.png'
if firstImage ~= 'none' then
local firstImageSize = args.imagesize or args.image1size or defaultImageSize
local imageName = mw.title.new( 'File:' .. firstImage )
if imageName and imageName.exists then
table.insert( images, '[[File:' .. firstImage .. '|' .. firstImageSize .. ']]' )
else
table.insert( images, '[[File:No image.svg|' .. firstImageSize .. '|link=File:' .. firstImage .. '|Upload this image]]' )
end
end
local imgCount = {}
local invImgCount = {}
local grid
for k, v in pairs( args ) do
local image, num = k:match( '^(image)(%d+)$' )
local invImage, invNum = k:match( '^(invimage)(%d*)$' )
if image then
table.insert( imgCount, tonumber( num ) )
elseif invImage then
table.insert( invImgCount, tonumber( invNum ) or 1 )
end
end
table.sort( imgCount )
for k, v in ipairs( imgCount ) do
if v ~= 1 then
local image = args['image' .. v]
local size = args['image' .. v .. 'size'] or defaultImageSize
if image:match( ';' ) then
local animate = require( 'Module:Animate' ).animate
image = animate{ image, size }
else
image = '[[File:' .. image .. '|' .. size .. ']]'
end
table.insert( images, '<div style="padding-top:1em">' .. image .. '</div>' )
end
end
images = table.concat( images, '\n' )
if #invImgCount > 0 then
table.sort( invImgCount )
local grid = require( 'Module:Grid' ).cell
for k, v in ipairs( invImgCount ) do
local image = args['invimage' .. v] or args['invimage']
table.insert( invImages, grid{ image, link = 'none' } )
end
invImages = '<div style="padding-top:1em">' .. table.concat( invImages, '' ) .. '</div>'
else
invImages = ''
end
if images ~= '' or invImages ~= '' then
imageArea = images .. '\n' .. invImages
end
end
if imageArea then
imageArea = '<div class="infobox-imagearea">' .. imageArea .. '</div>'
end
local footer = args.footer
if footer then
footer = '| class="infobox-footer" colspan="2" | ' .. footer
end
local html = {
'<div class="notaninfobox">',
'<div class="infobox-title mcwiki-header">' .. title .. '</div>',
imageArea or '',
'{| class="infobox-rows" cellspacing="1" cellpadding="4"',
'|-',
args.rows or '',
footer or '',
'|}',
'</div>'
}
return table.concat( html, '\n' )
end
return p