Jump to content

Module:Citation mode

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Hike395 (talk | contribs) at 17:07, 25 December 2024 (ignore parent args (for now), to unbork Template:cite simbad). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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['Mode'] and mode
end

function p.main(frame)
	local getArgs = require('Module:Arguments').getArgs
    local args = getArgs(frame, {frameOnly = true})
	return p._main(args[1]) or ""
end

return p