Changes
fix bug for data being shared between multiple message boxes called from the same module; allow boxes to be hidden; use Module:Arguments to fetch the arguments
-- Require necessary modules.
local getArgs = require('Module:Arguments').getArgs
local htmlBuilder = require('Module:HtmlBuilder')
local categoryHandler = require('Module:Category handler').main
local trim = mw.text.trim
local function getTitleObject(page, ...)
table.sort(nums)
return nums
end
--------------------------------------------------------------------------------
-- Box class definition
--------------------------------------------------------------------------------
local box = {}
box.__index = box
function box.new()
local obj = {}
setmetatable(obj, box)
return obj
end
if self.isSmall then
self:addClass(cfg.smallClass or 'mbox-small')
end
if yesno(args.hidden) then
self:addClass('infobox editsection')
end
self:addClass(self.typeClass)
local function main(boxType, args)
local outputBox = box.new() outputBox:setTitle(args) local cfg = boxoutputBox:getConfig(boxType) args = boxoutputBox:removeBlankArgs(cfg, args) boxoutputBox:setBoxParameters(cfg, args) return boxoutputBox:export()
end
local function makeWrapper(boxType)
return function (frame)
return main(boxType, args)
end