Changes

Jump to navigation Jump to search

Module:Effective protection level

200 bytes removed, 19:38, 19 April 2014
let one function work for other modules and for wikitext
-- Returns the permission required to perform a given action on a given title.
-- If no title is specified, the title of the page being displayed is used.
function p.main(frame, action, pagename, frame) if not frame then = frame = or mw.getCurrentFrame() endaction = action or frame.args.action or frame.args[1] pagename = pagename or frame.args.pagename or frame.args[2]
local title
if type(pagename) == 'table' then
end
end
end
 
-- Make the protection function usable from wikitext rather than just other lua modules
function p.p(frame)
local args = frame.args
local pargs = frame:getParent().args
return p.main(args.action or args[1] or pargs.action or pargs[1], args.title or args[2] or pargs.title or pargs[2], frame)
end
return p
Anonymous user

Navigation menu