local p =
local function standardicon(modulename) -- Take modulename as input, returns corresponding icon filename -- Returns default icon if no icon is defined -- Grow the library! Add default icons as needed by adding this line below: -- ['MODULENAME'] = 'FILE NAME.ext', local index = for t, fn in pairs(index) do if t
local function editlinktest(modulename) local no_edit_links = -- no edit link for these standard modules for _, l in pairs(no_edit_links) do if l
function p.build(frame) local title = local intro = local image = local color = '#6af' -- default value local displaymode = 'normal' -- default value local modules = local id for key, value in pairs(frame:getParent.args) do -- iterate through arguments, pick out values if key
'intro' then intro = value elseif key
'color' then color = value elseif key
-- Rendering table of contents and body local toc_args = -- passed into Image Array module local body = "" -- Load a Table of Contents entry, transclude module, for each named module local counter = 0 local moduletitle local moduletitle_encoded for _, module in pairs(modules) do counter = counter + 1 toc_args['image' .. counter] = standardicon(module) toc_args['alt' .. counter] = module if displaymode
"Metrics" or module
"About us" or module
"Research" or module
"Related WikiProjects" then -- Load the appropriate subpage of moduletitle = 'Related WikiProjects' .. '/' .. title moduletitle_encoded = string.gsub('Wikipedia:' .. moduletitle, ' ', '_') body = body .. "\n" .. frame:expandTemplate body = body .. "\n" .. frame:expandTemplate else if displaymode
"womeninred" and module ~= "Metrics" and module ~= "Showcase" and module ~= "About us" and module ~= "Press" and module ~= "Research" and module ~= "External links") then moduletitle = title .. '/' .. module moduletitle_encoded = string.gsub('Wikipedia:' .. moduletitle, ' ', '_') body = body .. "\n" .. frame:expandTemplate if mw.title.makeTitle('Wikipedia', moduletitle).exists
" else -- Is module in question a Standard Module? If so, load the template with corresponding editintro if mw.title.makeTitle('Template', 'WPX module/' .. module).exists
" .. require('Module:Image array')._imagearray(toc_args) .. "
"
-- Adding header local header = "\n
" -- top container if displaymode
" -- intro else header = header .. "
" -- intro end -- Adding project icon header = header .. "
" header = header .. image .. "
" -- Adding project title header = header .. "
" -- header header = header .. "
" if displaymode
" header = header .. intro .. "
" -- Adding announcement section if mw.title.makeTitle('Wikipedia', title .. "/" .. "Announcements").exists
" -- Adding member box header = header .. "
" header = header .. frame:expandTemplate header = header .. "
" -- Closing off header header = header .. "
"
-- Assembling parts local contents if displaymode
function p.invoke(frame) return p.build(frame:newChild)end
return p