0
edits
Arjunaraoc (చర్చ | రచనలు) చి (en:Module:Message_box నుండి ఒక కూర్పు: తెలుగు లోకి) |
(add a removalnotice parameter to ambox, don't display blank spans, and make the config module page a constant so it's easier to see) |
||
-- Get a language object for formatDate and ucfirst.
local lang = mw.language.getContentLanguage()
-- Define constants
local CONFIG_MODULE = 'Module:Message box/configuration'
--------------------------------------------------------------------------------
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('div')
:addClass('hide-when-compact')
:tag('ul')
:tag('li')
:tag('small')
:wikitext(self.removalNotice)
end
else
function p.main(boxType, args, cfgTables)
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(
box:setParameters()
box:setCategories()
|
edits