Module:Sandbox/User:BlackHawk/Infobox Profession: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
(Created page with "local Infobox = require('Module:Infobox') local parse = require('Module:Param Parse') function p.main(frame) local args = frame:getParent().args local config = { infobox_name = 'Scenery', } local params = { {name = 'name', func = parse.has_content, smw_property = 'Name'}, {name = 'image', func = parse.image, smw_property = 'Image', smw_func = parse.image_smw, category_incomplete = 'Needs image'}, {name = 'release', func = parse.has_content}, {name = 'p...")
 
No edit summary
Line 6: Line 6:
local config = {
local config = {
infobox_name = 'Scenery',
infobox_name = 'Profession',
}
}

Revision as of 17:32, 26 March 2024

Documentation for this module may be created at Module:Sandbox/User:BlackHawk/Infobox Profession/doc

local Infobox = require('Module:Infobox')
local parse = require('Module:Param Parse')

function p.main(frame)
	local args = frame:getParent().args
	
	local config = {
		infobox_name = 'Profession',
	}
	
	local params = {
		{name = 'name', func = parse.has_content, smw_property = 'Name'},
		{name = 'image', func = parse.image, smw_property = 'Image', smw_func = parse.image_smw, category_incomplete = 'Needs image'},
		{name = 'release', func = parse.has_content},
		{name = 'premium', func = parse.has_content, smw_property = 'Premium', smw_func = parse.premium_smw, category_incomplete = 'Needs premium status'},
	}
	
	local infobox = Infobox.new(config, params, args)
	infobox
		:add_row{
			{tag='th', content=Infobox.param('name'), class='infobox.subheader', colspan='2'},
		}
		:add_row{
			{tag='td', content=Infobox.param('image'), colspan='2'},
		}
		:pad(2)
		:add_row{
			{tag='td', content='Release'},
			{tag='td', content=Infobox.param('release')},
		}
		:add_row{
			{tag='td', content='[[Premium Pass|Premium]]'},
			{tag='td', content=Infobox.param('premium')},
		}
	
	return infobox
end