Module:Effective protection level

From The Largs to Largs Grand Tour
Jump to navigation Jump to search

Documentation for this module may be created at Module:Effective protection level/doc

-- Stub module for non-Wikimedia installations
-- Provides minimal compatibility for templates expecting protection logic

local p = {}

function p.getProtectionLevel()
	return 'sysop'
end

function p.isProtected()
	return false
end

function p.isSemiProtected()
	return false
end

function p.isFullyProtected()
	return false
end

return p