Module:Infobox Profession: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
(Created page with "local p = {} 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_conte...") |
No edit summary |
||
Line 13: | Line 13: | ||
local params = { |
local params = { |
||
{name = 'name', func = parse.has_content, smw_property = 'Name'}, |
{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 = 'image', func = parse.image, smw_property = 'Image', smw_func = parse.image_smw, empty = '[[Special:Upload|Please upload an image!]]', category_incomplete = 'Needs image'}, |
||
{name = 'release', func = parse.has_content}, |
{name = 'release', func = parse.has_content}, |
||
{name = 'premium', func = parse. |
{name = 'premium', func = parse.yes_no, smw_property = 'Premium', smw_func = parse.yes_no, category_incomplete = 'Needs premium status'}, |
||
} |
} |
||
Revision as of 01:16, 29 March 2024
Module documentation
This documentation is transcluded from Module:Infobox Profession/doc. [edit] [history] [purge]
This module does not have any documentation. Please consider adding documentation at Module:Infobox Profession/doc. [edit]
Module:Infobox Profession's function main is invoked by Template:Infobox Profession.
Module:Infobox Profession requires Module:Infobox.
Module:Infobox Profession requires Module:Param Parse.
local p = {}
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, empty = '[[Special:Upload|Please upload an image!]]', category_incomplete = 'Needs image'},
{name = 'release', func = parse.has_content},
{name = 'premium', func = parse.yes_no, smw_property = 'Premium', smw_func = parse.yes_no, category_incomplete = 'Needs premium status'},
}
local infobox = Infobox.new(config, params, args)
infobox
:add_row{
{tag='th', content=Infobox.param('name'), class='infobox-header', colspan='20'},
}
:add_row{
{tag='td', content=Infobox.param('image'), class='infobox-image', colspan='20'},
}
:add_row{
{tag='th', content='Release', colspan="6"},
{tag='td', content=Infobox.param('release'), colspan="14"},
}
:add_row{
{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
{tag='td', content=Infobox.param('premium'), colspan="14"},
}
:pad(20)
return infobox
end
return p