Module:InfoboxCustom: Difference between revisions

From Elwiki
(Created page with "require('Module:CommonFunctions') require('Module:InfoboxProto'); local getArgs = require('Module:Arguments').getArgs local p = {} -- Main process function p.main(frame)...")
 
No edit summary
Line 8: Line 8:
     local args = getArgs(frame);
     local args = getArgs(frame);
     local infobox = require('Module:InfoboxProto').main(frame, args.title);
     local infobox = require('Module:InfoboxProto').main(frame, args.title);
     infobox:addClass('infobox-custom');
    local divclass = args.divclass;
    if divclass == nil then
        divclass = 'custom'
    end
     infobox:addClass('infobox-' .. divclass);


     local i = 1;
     local i = 1;

Revision as of 15:05, 17 May 2022

Documentation for this module may be created at Module:InfoboxCustom/doc

require('Module:CommonFunctions')
require('Module:InfoboxProto');
local getArgs = require('Module:Arguments').getArgs
local p = {}

-- Main process
function p.main(frame)
    local args = getArgs(frame);
    local infobox = require('Module:InfoboxProto').main(frame, args.title);
    local divclass = args.divclass;
    if divclass == nil then
        divclass = 'custom'
    end
    infobox:addClass('infobox-' .. divclass);

    local i = 1;
    for k, v in spairs(args) do
        if string.match(k, 'data[0-9]+') ~= nil then
            addField('data' .. i, args['label' .. i])
            i = i + 1
        end
    end
    
    return tostring(infobox);

end

return p