Module:Citation mode: Difference between revisions

From Phuketer
imported>Pppery
m Changed protection settings for "Module:Citation mode": High-risk template or module ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
 
Shared ABC wiki compatibility: guard Wikibase/CS1 calls on local wiki
 
Line 12: Line 12:
-- this prevents putting articles into "overriden mode" tracking category
-- this prevents putting articles into "overriden mode" tracking category
function p._main(mode)
function p._main(mode)
return not cfg.global_cs1_config_t['Mode'] and mode
return not (cfg.global_cs1_config_t and cfg.global_cs1_config_t['Mode']) and mode
end
end



Latest revision as of 16:41, 15 June 2026

Documentation for this module may be created at Module:Citation mode/doc

require ('strict')

local p = {}

-- determine whether we're being called from a sandbox
local isSandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true)
local sandbox = isSandbox and '/sandbox' or ''

local cfg = mw.loadData ('Module:Citation/CS1/Configuration' .. sandbox)

-- if cs1 config is set, return false, otherwise use supplied mode
-- this prevents putting articles into "overriden mode" tracking category
function p._main(mode)
	return not (cfg.global_cs1_config_t and cfg.global_cs1_config_t['Mode']) and mode
end

function p.main(frame)
    return p._main(frame.args[1]) or ""
end

return p