View source for Module:Infobox
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
function p.infobox( f )
local args = require( 'Module:ProcessArgs' ).merge( true )
local titleObject = mw.title.getCurrentTitle()
local title = args.title or titleObject.baseText
local imageArea = args.imagearea
if not imageArea and imageArea ~= 'none' then
local images = {}
local defaultImageSize = args.defaultimagesize or '160px'
args.image1 = args.image1 or args.image or 'title'
args.image1size = args.image1size or args.imagesize
local imgCount = {}
for k, v in pairs( args ) do
if type( k ) == 'string' then
local image, num = k:match( '^(image)(%d+)$' )
if v:lower() ~= 'none' then
if image then
table.insert( imgCount, tonumber( num ) )
end
end
end
end
000
1:0
Template used on this page:
Return to Module:Infobox.