Module:Effective protection level

From The Largs to Largs Grand Tour
Revision as of 21:46, 17 January 2026 by Peter (talk | contribs) (Replaced content with "-- 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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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