View source for Module:WikiProjectBanner/shared
MyWikiBiz, Author Your Legacy — Friday May 16, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
-------------------------------------------------------------------------------
-- Shared functions for Module:WikiProjectBanner --
-------------------------------------------------------------------------------
-- Lazily initialise modules that we don't always need.
local mPortal, yesno
local p = {}
function p.maybeLoadData(page)
local success, data = pcall(mw.loadData, page)
if success then
return data
end
end
function p.maybeRequire(page)
local success, module = pcall(require, page)
if success then
return module
end
000
1:0
Template used on this page:
Return to Module:WikiProjectBanner/shared.