Open main menu

Changes

335 bytes removed ,  09:54, 20 October 2016
m
1 revision imported: Re-importing 'Category:Licensing templates' from MediaWiki.org
-- Get a language object for formatDate and ucfirst.
local lang = mw.language.getContentLanguage()
 
-- Define constants
local CONFIG_MODULE = 'Module:Message box/configuration'
--------------------------------------------------------------------------------
-- Add attributes, classes and styles.
self.id = args.id
if self:addClass( cfg.usePlainlinksParam and yesno(args.plainlinksor true) ~= false then self:addClass(and 'plainlinks') end)
for _, class in ipairs(cfg.classes or {}) do
self:addClass(class)
end
self.info = args.info
if yesno(args.removalnotice) then
self.removalNotice = cfg.removalNotice
end
end
:addClass('mbox-text-span')
:wikitext(self.issue or nil)
if (self.talk or self.fix) and not self.isSmall then
textCellSpan:tag('span')
:addClass('hide-when-compact')
end
textCellSpan:wikitext(self.date and (' ' .. self.date) or nil)
if self.info and not self.isSmall then
textCellSpan
:tag('span')
:addClass('hide-when-compact')
:wikitext(self.info and (' ' .. self.info) or nil)
end
if self.removalNotice then
textCellSpan:tag('small')
:addClass('hide-when-compact')
:tag('i')
:wikitext(string.format(" (%s)", self.removalNotice))
end
else
function p.main(boxType, args, cfgTables)
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE'Module:Message box/configuration'))
box:setParameters()
box:setCategories()
4,558

edits