Module:Title blacklist

From Nova Online Wiki
Revision as of 11:03, 26 September 2024 by Maevings (talk | contribs) (Created page with "--helper module for title blacklist local p = {} p.main = function(frame) local args = frame.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 return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Documentation for this module may be created at Module:Title blacklist/doc

--helper module for title blacklist

local p = {}
p.main = function(frame)
	local args = frame.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

return p