跳转到内容

模組:InfoboxImageVariant

本页使用了标题或全文手工转换
被永久保护的模块
维基百科,自由的百科全书

这是本页的一个历史版本,由Where was I last night?留言 | 贡献2017年4月3日 (一) 12:41 建立内容为“require('Module:No globals') local getArgs = require('Module:Arguments').getArgs local p = {} local infoboxImage = require('Module:InfoboxImage').I…”的新页面)编辑。这可能和当前版本存在着巨大的差异。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)

require('Module:No globals')
local getArgs = require('Module:Arguments').getArgs
local p = {}

local infoboxImage = require('Module:InfoboxImage').InfoboxImage()
local lc = require('Module:WikitextLC').selective()

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	-- Main module code goes here.
	local variety = {'', '-hans', '-hant', '-cn', '-hk', '-mo', '-sg', '-tw'}
	local varietyHans = {'-hans', '-cn', '-sg'}
	local varietyHant = {'-hant', '-hk', '-mo', '-tw'}
	local hansIndicator, hantIndicator = false, false
	
	for i, v in ipairs(varietyHans) do
		if args['image' .. v] then
			hansIndicator = true
			break
		end
	end

	for i, v in ipairs(varietyHans) do
		if args['image' .. v] then
			hansIndicator = true
			break
		end
	end

	if hansIndicator and hansIndicator then
		local content = {}
		for i, v in ipairs(variety) do
			local parameter = 'image' .. v
			local value = args[patameter]
			if value then
				content[parameter] = infoboxImage{args = {image = value, sizedefault = 'frameless', upright = '1.15'}}
			end
		end
		return lc(content)
	end
	
	return infoboxImage{args = {image = args.image, sizedefault = 'frameless', upright = '1.15'}}
	
end

return p