Module:Title blacklist/sandbox: Difference between revisions
Appearance
No edit summary |
Humanipedia (talk | contribs) m 1 revision imported |
(No difference)
|
Latest revision as of 01:51, 6 February 2025
Documentation for this module may be created at Module:Title blacklist/sandbox/doc
--helper module for title blacklist
local p = {}
p._main = function(args)
local action = args['action']
local pagename = args['pagename']
local blacklistentry = mw.ext.TitleBlacklist.test(action, pagename)
if blacklistentry then
if blacklistentry.params.autoconfirmed then
return args['autoconfirmed'] or "autoconfirmed"
else
return args['templateeditor'] or "templateeditor"
end
else return '' end
end
p.main = function(frame)
local args = frame.args
return p._main(args)
end
return p