Module:Protection banner: Difference between revisions
Jump to navigation
Jump to search
m 1 revision imported |
imported>SilverLocust fix for mobile and search issue, see talk page |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
-- Initialise necessary modules. | -- Initialise necessary modules. | ||
require(' | require('strict') | ||
local makeFileLink = require('Module:File link')._main | local makeFileLink = require('Module:File link')._main | ||
local effectiveProtectionLevel = require('Module:Effective protection level')._main | local effectiveProtectionLevel = require('Module:Effective protection level')._main | ||
Line 865: | Line 865: | ||
if yesno(args.category) ~= false then | if yesno(args.category) ~= false then | ||
ret[#ret + 1] = protectionObj:makeCategoryLinks() | ret[#ret + 1] = protectionObj:makeCategoryLinks() | ||
end | |||
-- For arbitration enforcement, flagging [[WP:PIA]] pages to enable [[Special:AbuseFilter/1339]] to flag edits to them | |||
if protectionObj.level == "extendedconfirmed" then | |||
if require("Module:TableTools").inArray(protectionObj.title.talkPageTitle.categories, "Wikipedia pages subject to the extended confirmed restriction related to the Arab-Israeli conflict") then | |||
ret[#ret + 1] = "<p class='PIA-flag' style='display:none; visibility:hidden;' title='This page is subject to the extended confirmed restriction related to the Arab-Israeli conflict.'></p>" | |||
end | |||
end | end | ||