Changes

Jump to navigation Jump to search
335 bytes added ,  07:03, 3 October 2016
allow all templates to disable the plainlinks class
-- 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
self:addClass( cfg.usePlainlinksParam and if yesno(args.plainlinks or true) and ~= false then self:addClass('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('Module:Message box/configuration'CONFIG_MODULE))
box:setParameters()
box:setCategories()
Anonymous user

Navigation menu