helialprofile.png
Welcome to IOPWiki, Commander. You can contribute to this wiki without an account. Learn how to contribute and join our Discord server.

Editing Module:Message box

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 10: Line 10:
 
-- Get a language object for formatDate and ucfirst.
 
-- Get a language object for formatDate and ucfirst.
 
local lang = mw.language.getContentLanguage()
 
local lang = mw.language.getContentLanguage()
 +
 +
-- Define constants
 +
local CONFIG_MODULE = 'Module:Message box/configuration'
  
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
Line 155: Line 158:
 
-- Add attributes, classes and styles.
 
-- Add attributes, classes and styles.
 
self.id = args.id
 
self.id = args.id
self:addClass(
+
if yesno(args.plainlinks) ~= false then
cfg.usePlainlinksParam and yesno(args.plainlinks or true) and 'plainlinks'
+
self:addClass('plainlinks')
)
+
end
 
for _, class in ipairs(cfg.classes or {}) do
 
for _, class in ipairs(cfg.classes or {}) do
 
self:addClass(class)
 
self:addClass(class)
Line 278: Line 281:
 
end
 
end
 
self.info = args.info
 
self.info = args.info
 +
if yesno(args.removalnotice) then
 +
self.removalNotice = cfg.removalNotice
 +
end
 
end
 
end
  
Line 493: Line 499:
 
:addClass('mbox-text-span')
 
:addClass('mbox-text-span')
 
:wikitext(self.issue or nil)
 
:wikitext(self.issue or nil)
if not self.isSmall then
+
if (self.talk or self.fix) and not self.isSmall then
 
textCellSpan:tag('span')
 
textCellSpan:tag('span')
 
:addClass('hide-when-compact')
 
:addClass('hide-when-compact')
Line 500: Line 506:
 
end
 
end
 
textCellSpan:wikitext(self.date and (' ' .. self.date) or nil)
 
textCellSpan:wikitext(self.date and (' ' .. self.date) or nil)
if not self.isSmall then
+
if self.info and not self.isSmall then
 
textCellSpan
 
textCellSpan
 
:tag('span')
 
:tag('span')
 
:addClass('hide-when-compact')
 
:addClass('hide-when-compact')
 
:wikitext(self.info and (' ' .. self.info) or nil)
 
: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
 
end
 
else
 
else
Line 565: Line 577:
  
 
function p.main(boxType, args, cfgTables)
 
function p.main(boxType, args, cfgTables)
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData('Module:Message box/configuration'))
+
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE))
 
box:setParameters()
 
box:setParameters()
 
box:setCategories()
 
box:setCategories()

Please note that all contributions to IOP Wiki are considered to be released under the the Creative Commons Attribution-ShareAlike License (see IOP Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)

Template used on this page: