Module:DependencyList: Difference between revisions
mNo edit summary |
Tag: Undo |
||
| Line 247: | Line 247: | ||
---@param addCategories boolean | ---@param addCategories boolean | ||
---@return string | ---@return string | ||
local function messageBoxUnused( pageName, addCategories ) | |||
local html = mw.html.create( 'table' ):addClass( 'messagebox obsolete plainlinks' ) | |||
html:tag( 'td' ) | |||
:attr( 'width', '40xp' ) | |||
:wikitext( '[[File:Carter.png|center|30px|link=]]' ) | |||
:done() | |||
:tag( 'td' ) | |||
:wikitext( "'''This module is unused.'''" ) | |||
:tag( 'div' ) | |||
:css{ ['font-size']='0.85em', ['line-height']='1.45em' } | |||
:wikitext( string.format( 'This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add <code>{{[[Template:Documentation|Documentation]]}}</code>/<code>{{[[Template:No documentation|No documentation]]}}</code> to the calling template\'s or parent\'s module documentation.', pageName ) ) | |||
:wikitext( addCategories and '[[Category:Unused modules]]' or '' ) | |||
:done() | |||
:done() | |||
return tostring( html ) | |||
end | |||
local function collapseList( list, id, listType ) | local function collapseList( list, id, listType ) | ||